@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* base surfaces — deep premium dark */
  --black: #050505;
  --cream: #0b0b0b;       /* page background */
  --cream-dark: #141414;  /* alt section background */
  --surface: #1a1a1a;     /* card surface */
  --line: #262422;        /* hairline borders */

  /* text */
  --ink: #f4efe9;         /* primary text — off white */
  --ink-soft: #a79d92;    /* secondary text — warm grey */

  /* accents */
  --rose: #dba3ac;
  --rose-dark: #c98a93;
  --rose-pale: rgba(219, 163, 172, 0.14);
  --gold: #cba268;

  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: .01em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Topbar & Nav ---------- */
.topbar {
  background: var(--black);
  color: var(--gold);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.navbar {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--ink);
}
.logo span { color: var(--rose); }

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nav-links a { padding: 6px 0; border-bottom: 1px solid transparent; transition: .25s var(--ease); color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { border-color: var(--rose); color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: .25s var(--ease);
}
.cart-btn:hover { border-color: var(--rose); background: var(--rose-pale); }
.cart-count {
  background: var(--rose);
  color: #1a1310;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  padding: 0 5px;
}

.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: .3s var(--ease);
}
.btn-primary { background: var(--ink); color: var(--black); }
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(219,163,172,.25); }
.btn-outline { border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--rose); background: var(--rose-pale); }
.btn-rose { background: var(--rose); color: #1a1310; }
.btn-rose:hover { background: var(--gold); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(219,163,172,.10), transparent 60%),
    var(--cream);
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; position: relative; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: normal; color: var(--rose); }
.hero p.lead { font-size: 17px; color: var(--ink-soft); max-width: 460px; margin: 24px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual-wrap { position: relative; }
.hero-visual {
  aspect-ratio: 4/5;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 15%, rgba(255,255,255,.18), transparent 45%),
    linear-gradient(155deg, #2a2320, var(--rose-dark) 55%, var(--gold) 135%);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  will-change: transform;
}
.hero-visual::after {
  content: "PUDRA";
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.hero-badges { display: flex; flex-direction: column; gap: 10px; position: absolute; top: 22px; right: -18px; }
.hero-badge {
  background: rgba(20,20,20,.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  box-shadow: 0 12px 26px rgba(0,0,0,.4);
}
.hero-badge .ico { font-size: 17px; }
.hero-badge b { display: block; font-size: 12.5px; }
.hero-badge span { color: var(--ink-soft); font-size: 11px; }

/* ---------- Section headers ---------- */
.section { padding: 84px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.section-head .eyebrow { display:block; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(28px, 3vw, 40px); margin: 0; text-transform: uppercase; letter-spacing: -.005em; }
.section-head p { color: var(--ink-soft); margin: 8px 0 0; font-size: 15px; }
.section-alt { background: var(--cream-dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Category — big hover-zoom cards ---------- */
.cat-grid-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card-big {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
}
.cat-bg {
  position: absolute; inset: 0;
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
.cat-card-big::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
  z-index: 1;
  transition: background .4s var(--ease);
}
.cat-card-big:hover .cat-bg { transform: scale(1.1); filter: brightness(.75); }
.cat-card-big-inner { position: relative; z-index: 2; padding: 22px; width: 100%; }
.cat-card-big h4 { font-size: 20px; margin: 0 0 4px; text-transform: uppercase; }
.cat-card-big span.tag { font-size: 12.5px; color: var(--ink-soft); }
.cat-card-big .arrow { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 13px; color: var(--rose); transform: translateX(0); transition: transform .3s var(--ease); }
.cat-card-big:hover .arrow { transform: translateX(6px); }

/* legacy small tiles (still used as fallback) */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-tile { border-radius: var(--radius); padding: 22px 16px; text-align: center; background: var(--surface); border: 1px solid var(--line); transition: .3s var(--ease); }
.cat-tile:hover { transform: translateY(-4px); border-color: var(--rose); }
.cat-swatch { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 12px; }
.cat-tile h4 { font-size: 15px; margin: 0 0 4px; font-family: 'Inter'; font-weight: 600; }
.cat-tile span { font-size: 12px; color: var(--ink-soft); }

/* ---------- Product grid & cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: var(--shadow); }

.product-photo { aspect-ratio: 3/4; position: relative; display: flex; align-items: flex-end; padding: 14px; color: #fff; overflow: hidden; }
.product-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%); }
.product-photo .ph-label { font-family: 'Playfair Display', serif; font-size: 15px; line-height: 1.3; position: relative; z-index: 1; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--rose); color: #1a1310;
  font-size: 10.5px; font-weight: 800; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .05em;
}
.product-info { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-info h3 { font-size: 16px; font-family: 'Inter'; font-weight: 600; margin: 0; }
.product-price { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--rose); }
.product-cat { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.product-swatches { display: flex; gap: 5px; margin-top: auto; }
.mini-swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); }

/* Palette-based placeholder photo backgrounds per category — deepened for dark theme */
.ph-bilyzna { background: linear-gradient(160deg, #4a2b30, #7a3f47 55%, #2c1a1d); }
.ph-losyny { background: linear-gradient(160deg, #23283b, #3a4568 55%, #14172a); }
.ph-kostyumy { background: linear-gradient(160deg, #4a3d29, #7a6438 55%, #241d13); }
.ph-shorty { background: linear-gradient(160deg, #4d3d22, #a1793a 55%, #2a2010); }
.ph-topy { background: linear-gradient(160deg, #362c44, #5c4d78 55%, #1c1724); }
.ph-sukni-zhakety { background: linear-gradient(160deg, #17140f, #3a3632 55%, #0a0908); }

/* ---------- Filters ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-chip { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; background: var(--surface); color: var(--ink-soft); transition: .25s var(--ease); text-transform: uppercase; letter-spacing: .03em; }
.filter-chip.active, .filter-chip:hover { background: var(--ink); color: var(--black); border-color: var(--ink); }

.search-row { position: relative; margin-bottom: 30px; max-width: 420px; }
.search-row input {
  width: 100%; padding: 14px 16px 14px 44px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); font: inherit; font-size: 14px;
}
.search-row input::placeholder { color: var(--ink-soft); }
.search-row .ico { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; padding: 56px 0; }
.pd-photo { border-radius: 22px; aspect-ratio: 3/4; }
.pd-info .product-cat { margin-bottom: 8px; display: block; }
.pd-info h1 { font-size: 32px; text-transform: none; }
.pd-price { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--rose); margin: 10px 0 24px; }
.pd-block { margin-bottom: 26px; }
.pd-block label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.swatch-row { display: flex; gap: 9px; flex-wrap: wrap; }
.swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--cream); outline: 1px solid var(--line); cursor: pointer; }
.swatch.selected { outline: 2px solid var(--rose); outline-offset: 2px; }
.size-row { display: flex; gap: 8px; flex-wrap: wrap; }
.size-chip { padding: 10px 17px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-size: 14px; font-weight: 600; transition: .2s; }
.size-chip.selected { border-color: var(--rose); background: var(--rose); color: #1a1310; }
.qty-row { display: flex; align-items: center; gap: 14px; }
.qty-row button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-size: 18px; }
.pd-desc { color: var(--ink-soft); font-size: 15px; }
.pd-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 10px; }
.pd-table th, .pd-table td { border: 1px solid var(--line); padding: 9px 10px; text-align: center; color: var(--ink-soft); }
.pd-note { background: var(--rose-pale); border: 1px solid var(--line); border-radius: 12px; padding: 15px 17px; font-size: 13.5px; margin-top: 22px; color: var(--ink); }

/* ---------- Tips / blog ---------- */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tip-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); padding: 28px; transition: .35s var(--ease); }
.tip-card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: var(--shadow); }
.tip-meta { font-size: 11.5px; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; font-weight: 700; }
.tip-card h3 { font-size: 19px; text-transform: none; }
.tip-card p { color: var(--ink-soft); font-size: 14.5px; }
.tip-read { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--rose); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }

.article { max-width: 760px; margin: 0 auto; padding: 70px 24px; }
.article .tip-meta { margin-bottom: 18px; }
.article h1 { font-size: 36px; text-transform: none; }
.article h2 { font-size: 22px; margin-top: 36px; text-transform: none; }
.article p { font-size: 16px; color: var(--ink-soft); margin: 16px 0; }
.article ul { list-style: disc; padding-left: 22px; color: var(--ink-soft); }
.article li { margin: 8px 0; }

/* ---------- Values / brand strip ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: .35s var(--ease); }
.value-item:hover { border-color: var(--rose); transform: translateY(-5px); box-shadow: var(--shadow); }
.value-item .icon { font-size: 30px; margin-bottom: 14px; }
.value-item h4 { font-size: 14.5px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .02em; }
.value-item p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* ---------- Community / club banner ---------- */
.club-banner {
  border-radius: 24px;
  background: linear-gradient(120deg, var(--surface), var(--cream-dark) 60%);
  border: 1px solid var(--line);
  padding: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.club-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(219,163,172,.14), transparent 55%);
}
.club-logo { font-family: 'Playfair Display', serif; font-size: 26px; letter-spacing: .1em; position: relative; z-index: 1; }
.club-logo .sub { display:block; font-family:'Inter'; font-size: 11px; letter-spacing: .12em; color: var(--ink-soft); text-transform: uppercase; margin-top: 4px; }
.club-text { position: relative; z-index: 1; }
.club-text h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 8px; }
.club-text p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.club-perks { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; }
.club-perks div { font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }

/* ---------- Promo banner ---------- */
.promo-banner {
  border-radius: 24px;
  background: linear-gradient(135deg, #241a1c, #3a2226 60%, #1a1310);
  padding: 70px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% 0%, rgba(203,162,104,.18), transparent 60%); }
.promo-banner * { position: relative; z-index: 1; }
.promo-banner h2 { font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; margin-bottom: 12px; }
.promo-banner p { color: var(--ink-soft); font-size: 16px; max-width: 480px; margin: 0 auto 28px; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 80px; height: 100px; border-radius: 10px; }
.cart-item h4 { margin: 0 0 4px; font-size: 15px; }
.cart-item .meta { font-size: 13px; color: var(--ink-soft); }
.cart-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.remove-link { font-size: 12.5px; color: var(--rose); font-weight: 600; margin-top: 6px; display: inline-block; }
.summary-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: sticky; top: 104px; }
.summary-row { display: flex; justify-content: space-between; margin: 10px 0; font-size: 14.5px; color: var(--ink-soft); }
.summary-row.total { font-weight: 700; font-size: 18px; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 14px; }
.empty-cart { text-align: center; padding: 90px 20px; color: var(--ink-soft); }

.checkout-form { display: grid; gap: 14px; margin-top: 20px; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
  padding: 13px 15px; border-radius: 8px; border: 1px solid var(--line); font: inherit; width: 100%; background: var(--cream-dark); color: var(--ink);
}
.checkout-form input::placeholder, .checkout-form textarea::placeholder { color: #6b6259; }
.checkout-form label { font-size: 12.5px; font-weight: 700; margin-bottom: -6px; display: block; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer { background: var(--black); color: var(--ink-soft); padding: 60px 0 26px; margin-top: 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { color: var(--ink); font-size: 13px; margin-bottom: 16px; font-family: 'Inter'; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid li { margin: 9px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--rose); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--ink); letter-spacing: .12em; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 22px; font-size: 12.5px; display: flex; justify-content: space-between; color: #6b6259; flex-wrap: wrap; gap: 10px; }

/* ---------- About page ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 70px 0; }
.story-visual { aspect-ratio: 4/5; border-radius: 24px; background: linear-gradient(155deg, #2a2320, var(--rose-dark) 60%, var(--gold) 140%); box-shadow: var(--shadow); }
.stat-row { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.stat-row .num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--rose); }
.stat-row .lbl { font-size: 12.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--black); padding: 15px 26px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; opacity: 0; pointer-events: none; transition: .3s var(--ease); z-index: 100;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-badges { position: static; flex-direction: row; margin-top: 20px; flex-wrap: wrap; }
  .hero-badge { min-width: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid-big { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .club-banner { grid-template-columns: 1fr; text-align: center; }
  .club-perks { justify-content: center; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-big { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0; }
  .section { padding: 54px 0; }
  .promo-banner { padding: 50px 24px; }
}
