:root {
  --ink: #103d2a;
  --text: #253b35;
  --muted: #6f7f77;
  --line: #dce9e0;
  --white: #ffffff;
  --mint: #eefbf5;
  --mint-strong: #d9f5e8;
  --peach: #fff0e8;
  --taro: #f2ecff;
  --pink: #ffe9ee;
  --green: #19713d;
  --green-dark: #0e5c31;
  --gold: #f5c06a;
  --shadow: 0 18px 45px rgba(30, 73, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f6fff9 44%, #ffffff 100%);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.announcement {
  position: relative;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 36px;
  padding: 7px 18px;
  background: #eaf8ef;
  color: var(--green-dark);
  border-bottom: 1px solid rgba(25, 113, 61, 0.14);
  font-size: 13px;
}

.announcement strong {
  font-weight: 800;
}

.motion-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bubble,
.pearl,
.leaf,
.syrup {
  position: absolute;
  display: block;
  opacity: 0.72;
  will-change: transform;
}

.bubble {
  border: 1px solid rgba(125, 164, 143, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.12) 58%, rgba(201, 231, 219, 0.2));
  animation: float 5.4s ease-in-out infinite;
}

.bubble-one {
  width: 130px;
  height: 130px;
  top: 12%;
  left: 31%;
}

.bubble-two {
  width: 84px;
  height: 84px;
  top: 36%;
  right: 22%;
  animation-delay: -5s;
}

.bubble-three {
  width: 54px;
  height: 54px;
  bottom: 18%;
  left: 9%;
  animation-delay: -8s;
}

.pearl {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff 0 8%, #4b271d 15%, #16100d 75%);
  box-shadow: 0 12px 25px rgba(54, 28, 20, 0.16);
  animation: pearlDrift 4.2s ease-in-out infinite;
}

.pearl-one {
  top: 18%;
  right: 34%;
}

.pearl-two {
  top: 31%;
  left: 43%;
  animation-delay: -4s;
}

.pearl-three {
  bottom: 26%;
  right: 12%;
  animation-delay: -7s;
}

.pearl-four {
  top: 62%;
  left: 21%;
  animation-delay: -1.5s;
}

.pearl-five {
  top: 72%;
  right: 37%;
  animation-delay: -3s;
}

.pearl-six {
  top: 44%;
  left: 14%;
  animation-delay: -4.5s;
}

.leaf {
  width: 48px;
  height: 22px;
  border-radius: 60% 10% 60% 10%;
  background: linear-gradient(135deg, #85b847, #2e8b57);
  transform: rotate(-28deg);
  animation: leafGlide 5.8s ease-in-out infinite;
}

.leaf-one {
  top: 17%;
  left: 39%;
}

.leaf-two {
  bottom: 19%;
  right: 28%;
  animation-delay: -6s;
}

.leaf-three {
  top: 48%;
  right: 8%;
  animation-delay: -2.5s;
}

.leaf-four {
  bottom: 34%;
  left: 28%;
  animation-delay: -4s;
}

.syrup {
  width: 360px;
  height: 165px;
  border-radius: 45% 55% 48% 52%;
  filter: blur(0.5px);
  animation: syrupFlow 6.6s ease-in-out infinite;
}

.syrup-one {
  left: -130px;
  top: 26%;
  background: radial-gradient(circle at 20% 35%, rgba(255, 151, 135, 0.45), rgba(255, 151, 135, 0.03) 62%);
}

.syrup-two {
  right: -120px;
  top: 12%;
  background: radial-gradient(circle at 44% 42%, rgba(199, 172, 255, 0.45), rgba(199, 172, 255, 0.04) 68%);
  animation-delay: -5s;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 233, 224, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 800;
}

.logo-brand img {
  display: block;
  width: 210px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.hero-logo {
  width: min(360px, 80vw);
  height: auto;
  margin: 0 0 22px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
}

.brand-mark svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #243f35;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 29px 0 26px;
}

.nav-links a:hover {
  color: var(--green);
  border-color: var(--green);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.language-switch a {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.language-switch a.active,
.language-switch a:hover {
  background: var(--mint);
  color: var(--ink);
}

.icon-button,
.music-button,
.cart-pill,
.button,
.category,
.recipe-list button,
.qty button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.icon-button:hover,
.music-button:hover,
.cart-pill:hover,
.button:hover,
.category:hover,
.recipe-list button:hover,
.qty button:hover {
  transform: translateY(-1px);
  border-color: rgba(25, 113, 61, 0.38);
  box-shadow: 0 10px 24px rgba(30, 73, 54, 0.1);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
}

.music-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.music-button.playing {
  border-color: rgba(25, 113, 61, 0.42);
  background: var(--mint);
  color: var(--green-dark);
}

.icon-button svg,
.music-button svg,
.button svg,
.cart-pill svg,
.search-box svg,
.trust-band svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 14px;
  background: #f7fff9;
  font-weight: 800;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 12px;
}

.header-shop {
  min-height: 44px;
  padding: 0 18px;
}

main {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.shop-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 58px 0 24px;
}

.shop-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
}

.shop-hero p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: 44px 0 26px;
  gap: 34px;
}

.home-hero {
  min-height: calc(100vh - 118px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero h1,
.section-heading h2,
.kit-builder h2,
.recipe-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
}

.hero p {
  max-width: 560px;
  margin: 22px 0 30px;
  color: #334b42;
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 800;
}

.button.primary {
  border-color: var(--green);
  background: linear-gradient(180deg, #23824b, var(--green-dark));
  color: white;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
}

.button.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.category-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 14px;
  padding: 24px 0 38px;
}

.shop-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 18px 0 30px;
}

.category {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 104px;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.82);
}

.category.active {
  border-color: rgba(25, 113, 61, 0.46);
  background: var(--mint);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint-strong);
  color: var(--green-dark);
  font-weight: 800;
}

.category-icon.powder {
  background: var(--peach);
}

.category-icon.syrup-icon {
  background: var(--pink);
}

.category-icon.topping {
  background: var(--taro);
}

.category-icon.tea {
  background: #edf7dc;
}

.category-icon.kit {
  background: #fff4d9;
}

.shop-section,
.kit-builder,
.recipe-section,
.contact-section {
  padding: 48px 0;
}

.news-strip {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px;
  align-items: center;
  overflow: hidden;
  min-height: 54px;
  margin: 0 0 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(30, 73, 54, 0.06);
}

.news-strip strong {
  white-space: nowrap;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.news-strip em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.news-ticker {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  color: var(--green-dark);
  font-weight: 800;
}

.news-ticker span {
  display: inline-block;
  flex: 0 0 auto;
  min-width: max-content;
  padding-right: 72px;
  animation: newsFlow 24s linear infinite;
}

.home-news {
  margin: 8px 0 26px;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  margin: 0 0 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(30, 73, 54, 0.06);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

.profile-copy p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #334b42;
  font-size: 16px;
  line-height: 1.65;
}

.profile-points {
  display: grid;
  gap: 12px;
}

.profile-points div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(238, 251, 245, 0.88), rgba(255, 255, 255, 0.94));
}

.profile-points strong {
  color: var(--ink);
  font-size: 17px;
}

.profile-points span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.kit-builder h2,
.recipe-section h2,
.contact-section h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
}

.section-heading p,
.kit-copy p,
.recipe-card p,
.contact-section p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(420px, 100%);
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 314px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(30, 73, 54, 0.06);
}

.product-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 142px;
  margin-bottom: 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 35%, rgba(255, 255, 255, 0.95) 0 16%, transparent 17%),
    linear-gradient(135deg, var(--art-one), var(--art-two));
  color: rgba(16, 61, 42, 0.82);
}

.product-art.image-art {
  overflow: hidden;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 249, 239, 0.88));
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.02);
}

.product-art svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-category {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 6px;
  color: #1f3d31;
  font-size: 17px;
  line-height: 1.3;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.price {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.add-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: white;
  cursor: pointer;
}

.add-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stock-note {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: #fff7dc;
  color: #765714;
  font-size: 12px;
  font-weight: 800;
}

.stock-note.out {
  background: #fff0f2;
  color: #9a3343;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-band div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 16px;
  align-items: center;
  min-height: 120px;
  padding: 22px;
  background: rgba(246, 255, 249, 0.94);
}

.trust-band svg {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  color: var(--green);
}

.trust-band strong {
  color: var(--ink);
}

.trust-band span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.kit-builder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.kit-copy,
.kit-panel,
.recipe-card,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(30, 73, 54, 0.06);
}

.kit-copy {
  padding: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: #29453a;
  font-weight: 700;
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(25, 113, 61, 0.36);
  border-radius: 50%;
  color: var(--green);
}

.kit-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.kit-option {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(238, 251, 245, 0.8), rgba(255, 255, 255, 0.92));
}

.kit-option img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
}

.kit-option h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
}

.kit-option p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.recipe-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.recipe-card {
  padding: 30px;
}

.recipe-list {
  display: grid;
  gap: 12px;
}

.recipe-list button {
  min-height: 68px;
  padding: 0 22px;
  text-align: left;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 70px;
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 10px;
  min-width: min(420px, 100%);
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-weight: 800;
}

.contact-list a:hover {
  border-color: rgba(25, 113, 61, 0.38);
  box-shadow: 0 10px 24px rgba(30, 73, 54, 0.1);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100vw);
  height: 100dvh;
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(30, 73, 54, 0.12);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header,
.cart-summary {
  padding: 24px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.cart-items {
  overflow: auto;
  padding: 14px 24px;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: var(--muted);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 15px;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.qty button {
  width: 30px;
  height: 30px;
  padding: 0;
  font-weight: 800;
}

.line-price {
  color: var(--ink);
  font-weight: 800;
}

.remove-line {
  border: 0;
  background: transparent;
  color: #9a3343;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.cart-summary {
  border-top: 1px solid var(--line);
}

.cart-summary div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.cart-summary small {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.free-ship {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.free-ship i {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(25, 113, 61, 0.14);
}

.free-ship i::before {
  content: "";
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background: rgba(16, 61, 42, 0.18);
  backdrop-filter: blur(3px);
}

.cart-backdrop.open {
  display: block;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  45% {
    transform: translate3d(72px, -88px, 0) scale(1.1);
  }
}

@keyframes pearlDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-66px, 84px, 0);
  }
}

@keyframes leafGlide {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-28deg);
  }
  50% {
    transform: translate3d(112px, 72px, 0) rotate(-2deg);
  }
}

@keyframes syrupFlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(132px, 92px, 0) rotate(9deg) scale(1.08);
  }
}

@keyframes newsFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .shop-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    min-height: 380px;
  }

  .category-rail,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .contact-section {
    align-items: stretch;
    flex-direction: column;
  }

  .kit-builder,
  .recipe-section,
  .trust-band,
  .profile-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main {
    width: min(100% - 28px, 1240px);
  }

  .announcement {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 8px 14px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 14px;
    gap: 8px;
  }

  .brand {
    font-size: 20px;
  }

  .logo-brand img {
    width: 138px;
    height: 50px;
  }

  .header-shop {
    display: none;
  }

  .brand-mark,
  .brand-mark svg {
    width: 34px;
    height: 34px;
  }

  .icon-button {
    display: none;
  }

  .cart-pill {
    gap: 4px;
    min-height: 42px;
    padding: 0 5px;
  }

  .cart-pill #cartTotal {
    display: none;
  }

  .cart-pill svg {
    width: 18px;
    height: 18px;
  }

  .cart-count {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
  }

  .language-switch {
    gap: 2px;
    padding: 2px;
  }

  .language-switch a {
    min-width: 24px;
    height: 26px;
    padding: 0 3px;
    font-size: 11px;
  }

  .music-button {
    width: 38px;
    min-height: 38px;
    padding: 0;
    justify-content: center;
  }

  .music-button span {
    display: none;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-logo {
    width: min(290px, 92vw);
  }

  .shop-hero {
    padding-top: 32px;
  }

  .shop-hero h1 {
    font-size: 38px;
  }

  .news-strip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-strip strong {
    font-size: 20px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .category-rail,
  .shop-controls,
  .product-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .category {
    min-height: 78px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    padding: 12px;
  }

  .product-card {
    min-height: 290px;
  }

  .kit-option {
    grid-template-columns: 56px 1fr;
  }

  .kit-option .button {
    grid-column: 1 / -1;
  }

  .kit-option img {
    width: 52px;
    height: 52px;
  }

  .kit-copy,
  .recipe-card,
  .contact-section,
  .profile-section {
    padding: 22px;
  }
}
