:root {
  --ink: #0A4D6C;
  --ink-deep: #062B3D;
  --ink-soft: #0E5F84;
  --brand: #027AFF;
  --brand-dark: #0061D6;
  --accent: #2BD5A8;
  --accent-dark: #1FB991;
  --sand: #FAFCFC;
  --foam: #E5F4F9;
  --foam-deep: #CDE7F0;
  --mint-soft: #E1F8F0;
  --text: #1F2937;
  --muted: #6B7280;
  --line: #E5E7EB;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(10, 77, 108, .06);
  --shadow-md: 0 8px 24px rgba(10, 77, 108, .08);
  --shadow-lg: 0 24px 60px rgba(10, 77, 108, .14);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --container: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 {
  font-family: inherit;
  color: var(--ink);
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.12;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 3.8rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Top promo bar ─── */
.promo-bar {
  background: var(--ink);
  color: #DCE9EC;
  font-size: .82rem;
  letter-spacing: .02em;
}
.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 24px;
  text-align: center;
  flex-wrap: wrap;
}
.promo-bar strong { color: var(--white); font-weight: 600; }
.promo-bar .dot { opacity: .4; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, .9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo__img {
  display: block;
  height: 42px;
  width: auto;
}
.footer__brand .logo__img {
  height: 48px;
}
.drawer .logo__img { height: 36px; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--brand); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width .25s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav a.is-active { color: var(--brand); }
.nav a.is-active::after { width: 100%; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  position: relative;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.icon-btn:hover { background: var(--foam); color: var(--brand); }
.icon-btn .badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--brand);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--sand);
}
.btn-login {
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  transition: all .2s var(--ease);
}
.btn-login:hover {
  background: var(--ink);
  color: var(--white);
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(2, 122, 255, .35);
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(2, 122, 255, .42);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--ink);
}
.btn--white:hover { background: var(--brand); color: var(--white); }
.btn--small { padding: 10px 18px; font-size: .85rem; }
.btn--block { width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(2, 122, 255, .14), transparent 60%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(43, 213, 168, .14), transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--mint-soft);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(43, 213, 168, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43, 213, 168, .55); }
  70% { box-shadow: 0 0 0 12px rgba(43, 213, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 213, 168, 0); }
}
.hero h1 .accent {
  color: var(--brand);
  font-weight: 800;
}
.hero__sub {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}
.hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-item span {
  font-size: .82rem;
  color: var(--muted);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}
.trust-stars {
  color: #F5A623;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 600px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 46, 64, .45));
}
.hero__badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero__badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__badge-text strong {
  display: block;
  font-family: inherit;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}
.hero__badge-text span {
  font-size: .82rem;
  color: var(--muted);
}
.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  z-index: 2;
}
.hero__float--top {
  top: 24px;
  right: 24px;
  animation: float 6s ease-in-out infinite;
}
.hero__float--bottom {
  top: 44%;
  left: 24px;
  animation: float 7s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__float .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--foam);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__float strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: .88rem;
}
.hero__float small {
  color: var(--muted);
  font-size: .72rem;
}

/* ─── Value props ─── */
.values {
  padding: 24px 0 64px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.value {
  display: flex;
  align-items: center;
  gap: 14px;
}
.value__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--foam);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.value__icon--accent { background: var(--mint-soft); color: var(--accent-dark); }
.value__icon--deep { background: var(--foam-deep); color: var(--ink); }
.value__icon--grad { background: linear-gradient(135deg, var(--brand), var(--accent)); color: var(--white); }
.value strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
}
.value span {
  font-size: .82rem;
  color: var(--muted);
}

/* ─── Section base ─── */
.section { padding: 88px 0; }
.section--alt { background: var(--white); }
.section__head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.section__head--left {
  text-align: left;
  margin-left: 0;
}
.section__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
}
.section__lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ─── Categories ─── */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--foam);
}
.cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 46, 64, .85));
  transition: opacity .3s var(--ease);
}
.cat:hover img { transform: scale(1.08); }
.cat__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 18px 16px;
  z-index: 2;
  color: var(--white);
}
.cat__label h3 {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.005em;
}
.cat__label span {
  font-size: .78rem;
  opacity: .82;
  margin-top: 2px;
  display: block;
}
.cat__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 2;
  transform: translate(8px, -8px);
  opacity: 0;
  transition: all .3s var(--ease);
}
.cat:hover .cat__arrow {
  transform: translate(0, 0);
  opacity: 1;
}

/* ─── Products ─── */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--foam);
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.pbadge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}
.pbadge--fresh { background: #DCEFE2; color: #1F6A47; }
.pbadge--sale { background: var(--accent); color: var(--ink-deep); }
.pbadge--frozen { background: var(--foam); color: var(--brand-dark); }
.pwish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.pwish:hover { color: var(--brand); background: var(--white); }
.product__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}
.product__cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.product__name {
  font-family: inherit;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.3;
  margin-top: 4px;
}
.product__name-alt {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
  font-family: 'Noto Sans SC', 'Inter', sans-serif;
}
.product__foot {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product__price .amount {
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}
.product__price .from {
  font-size: .75rem;
  color: var(--muted);
}
.product__price .strike {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: line-through;
}
.add-btn {
  background: var(--ink);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
  flex-shrink: 0;
}
.add-btn:hover {
  background: var(--brand);
  transform: scale(1.08);
}
.section__more {
  text-align: center;
  margin-top: 48px;
}

/* ─── About / Story ─── */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.story__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__stat {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px;
  gap: 12px;
}
.story__stat > div {
  text-align: center;
  border-right: 1px solid var(--line);
}
.story__stat > div:last-child { border-right: 0; }
.story__stat strong {
  display: block;
  font-family: inherit;
  font-size: 1.45rem;
  color: var(--ink);
  font-weight: 700;
}
.story__stat span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.story__body p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.story__sig {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.story__sig img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.story__sig strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}
.story__sig span {
  font-size: .82rem;
  color: var(--muted);
}

/* ─── Why us ─── */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--foam);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.feature p {
  color: var(--muted);
  font-size: .95rem;
}

/* ─── How it works ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--foam-deep) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.step__num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--foam-deep);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step__icon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(calc(40px));
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--ink-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: .92rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── Testimonials ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--line);
}
.quote__mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: inherit;
  font-size: 4rem;
  line-height: 1;
  color: var(--foam-deep);
}
.quote__stars {
  color: #F5A623;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.quote p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.quote__author strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.quote__author span {
  font-size: .8rem;
  color: var(--muted);
}

/* ─── Delivery banner ─── */
.delivery {
  background: linear-gradient(135deg, var(--mint-soft) 0%, var(--foam) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.delivery__map {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--foam);
}
.delivery__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.delivery h2 { margin-bottom: 14px; }
.delivery__list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.delivery__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: .98rem;
}
.delivery__list .tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.delivery__list strong { color: var(--ink); font-weight: 600; }

/* ─── Footer ─── */
.footer {
  background: #03161F;
  color: rgba(255, 255, 255, .68);
  padding: 72px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__brand .logo { display: block; margin-bottom: 14px; }
.footer__tagline {
  font-size: .92rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__about {
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer__social a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer__links a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .68);
  transition: color .2s var(--ease);
}
.footer__links a:hover { color: var(--brand); }
.footer__contact {
  display: grid;
  gap: 16px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  line-height: 1.6;
}
.footer__contact-item .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer__contact-item strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: .82rem;
  margin-bottom: 2px;
}
.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  flex-wrap: wrap;
}
.footer__bottom-links {
  display: flex;
  gap: 22px;
}
.footer__bottom-links a:hover { color: var(--brand); }

/* ─── Mobile drawer ─── */
.drawer {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--white);
  z-index: 200;
  transform: translateX(110%);
  transition: transform .35s var(--ease);
  padding: 24px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--foam);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.drawer__nav {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}
.drawer__nav a {
  padding: 14px 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: background .2s var(--ease);
}
.drawer__nav a:hover { background: var(--foam); }
.drawer__cta {
  display: grid;
  gap: 10px;
}
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 46, 64, .35);
  backdrop-filter: blur(2px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.backdrop.open { opacity: 1; pointer-events: auto; }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Icon sizing (Font Awesome) ─── */
i.fa-solid, i.fa-regular, i.fa-brands { line-height: 1; display: inline-block; }
.icon-btn i { font-size: 17px; }
.icon-btn .badge { font-size: .65rem; }
.btn i { font-size: 13px; }
.hamburger i { font-size: 20px; }
.drawer__close i { font-size: 18px; }
.value__icon i { font-size: 22px; }
.feature__icon i { font-size: 26px; }
.step__icon i { font-size: 14px; }
.cat__arrow i { font-size: 12px; }
.pwish i { font-size: 15px; }
.add-btn i { font-size: 15px; }
.hero__badge-icon i { font-size: 22px; }
.hero__float .ico i { font-size: 14px; }
.delivery__list .tick i { font-size: 12px; }
.footer__social a i { font-size: 17px; }
.footer__contact-item .ico i { font-size: 14px; }
.quote__mark i { font-size: 48px; color: var(--foam-deep); }

/* ════════════════════════════════════════
   SHOP — Product list page
   ════════════════════════════════════════ */
.page-head {
  background: linear-gradient(180deg, var(--foam) 0%, var(--sand) 100%);
  padding: 36px 0 40px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .45; font-size: .72rem; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }
.page-head h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.page-head__sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 560px;
}

.shop { padding: 32px 0 80px; }
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.toolbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.result-count {
  font-size: .85rem;
  color: var(--muted);
  white-space: nowrap;
}
.sort-select {
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}
.sort-select:focus-visible { outline: 2px solid var(--brand); outline-offset: 1px; }

/* clickable product card variant */
a.product { color: inherit; }
a.product:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.pagination a, .pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 6px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: all .2s var(--ease);
}
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .current {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.pagination .disabled { opacity: .4; pointer-events: none; }

/* ════════════════════════════════════════
   PDP — Product detail page
   ════════════════════════════════════════ */
.pdp { padding: 32px 0 80px; }
.pdp__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* gallery */
.gallery__main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--foam);
  border: 1px solid var(--line);
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--line);
  cursor: pointer;
  background: var(--foam);
  transition: border-color .2s var(--ease);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--foam-deep); }
.thumb.active { border-color: var(--brand); }

/* info panel */
.pdp__cat {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pdp__title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 10px 0 6px;
}
.pdp__title-alt {
  font-size: 1rem;
  color: var(--muted);
  font-family: 'Noto Sans SC', 'Inter', sans-serif;
}
.pdp__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: .88rem;
  color: var(--muted);
}
.pdp__rating .stars { color: #F5A623; letter-spacing: 1px; }
.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 20px 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.pdp__price .amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.pdp__price .strike {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.pdp__price .save {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--mint-soft);
  padding: 4px 10px;
  border-radius: 6px;
}
.pdp__desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 26px;
}
.opt-group { margin-bottom: 24px; }
.opt-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.opt-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.opt {
  padding: 11px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s var(--ease);
}
.opt:hover { border-color: var(--brand); }
.opt.active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}
.pdp__buy {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.qty {
  display: flex;
  align-items: center;
  height: 54px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.qty button {
  width: 44px;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 16px;
  transition: background .2s var(--ease);
}
.qty button:hover { background: var(--foam); color: var(--brand); }
.qty input {
  width: 48px;
  height: 100%;
  border: 0;
  text-align: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp__buy .btn { flex: 1; min-width: 160px; height: 54px; justify-content: center; }
.pdp__wa {
  margin-bottom: 26px;
}
.pdp__highlights {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}
.pdp__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text);
}
.pdp__highlights .hl-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--foam);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 15px;
}
.pdp__highlights strong { color: var(--ink); font-weight: 600; }

/* description block */
.pdp__detail {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.detail-prose h2 { font-size: 1.5rem; margin-bottom: 16px; }
.detail-prose p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 24px;
}
.spec-card h3 {
  font-size: 1rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt { color: var(--muted); }
.spec-row dd { color: var(--ink); font-weight: 600; margin: 0; text-align: right; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero { padding: 56px 0 80px; }
  .hero__inner { gap: 48px; }
  .hero__float { display: none; }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .delivery { padding: 40px; grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pdp__main { gap: 36px; }
  .pdp__detail { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav, .btn-login, .header__actions .icon-btn[data-search],
  .header__actions .icon-btn[data-wa] { display: none; }
  .hamburger { display: grid; }
  .promo-bar__inner { padding: 8px 16px; font-size: .76rem; }
  .hero { padding: 40px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__visual { aspect-ratio: 4 / 4; max-height: 460px; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 14px;
  }
  .value { flex-direction: column; text-align: center; gap: 8px; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
  .cats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat__label { padding: 14px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story__media { aspect-ratio: 4 / 4; max-height: 460px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .step__icon { transform: translateX(48px); }
  .delivery { padding: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer__bottom { justify-content: center; text-align: center; flex-direction: column; gap: 12px; }
  .toolbar { flex-direction: column; align-items: flex-start; }
  .toolbar__right { width: 100%; justify-content: space-between; }
  .pdp__main { grid-template-columns: 1fr; }
  .pdp__buy .btn { min-width: 0; }
}

@media (max-width: 480px) {
  .products { grid-template-columns: 1fr; }
}
