/* ============ Eiraa Silver Jewellery — Styles ============ */
:root {
  /* Blue palette (silver jewellery theme) */
  --navy-950: #07142b;
  --navy-900: #0b1d3d;
  --navy-800: #112a55;
  --navy-700: #1b3a72;
  --navy-600: #2a528f;
  --steel-500: #4a7db0;
  --steel-400: #7aa3cc;
  --ice-300: #c7dbed;
  --ice-200: #e4eef7;
  --ice-100: #f3f7fb;
  --silver: #dfe5ec;
  --champagne: #e7d7b3;
  --accent: #b9cee0; /* soft silver-blue */
}

/* LIGHT (default) */
:root[data-theme="light"] {
  --bg: #f6f8fb;
  --bg-soft: #ffffff;
  --bg-elev: #ffffff;
  --text: #0b1d3d;
  --text-soft: #3c4e6e;
  --muted: #6b7c95;
  --line: #dbe3ee;
  --brand: #0b1d3d;
  --brand-2: #2a528f;
  --brand-ink: #ffffff;
  --accent-ink: #0b1d3d;
  --shadow: 0 10px 30px rgba(11, 29, 61, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 29, 61, 0.14);
  --chip-bg: #eef3fa;
  --hero-overlay: linear-gradient(100deg, rgba(7,20,43,.55), rgba(7,20,43,.2) 60%, rgba(7,20,43,0));
}

/* DARK */
:root[data-theme="dark"] {
  --bg: #060e20;
  --bg-soft: #0a1830;
  --bg-elev: #0e2143;
  --text: #eaf1fb;
  --text-soft: #b7c6dc;
  --muted: #8fa0bd;
  --line: #17325f;
  --brand: #e4eef7;
  --brand-2: #7aa3cc;
  --brand-ink: #07142b;
  --accent-ink: #eaf1fb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
  --chip-bg: #0f244a;
  --hero-overlay: linear-gradient(100deg, rgba(3,9,20,.8), rgba(3,9,20,.45) 60%, rgba(3,9,20,.15));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease, color .4s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* Typography */
.display, .h-display, h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1.08;
  margin: 0;
}
.display { font-size: clamp(2.4rem, 5.6vw, 4.8rem); font-weight: 500; }
.h-display { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 500; }
.display em, .h-display em { font-style: italic; font-weight: 400; color: var(--brand-2); }
.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-2);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--ice-300); }
.muted { color: var(--muted); }
.lead { font-size: 1.1rem; color: var(--text-soft); max-width: 520px; }
.center { text-align: center; margin-top: 36px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.btn--primary { background: var(--brand); color: var(--brand-ink); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--navy-800); color:#fff; }
:root[data-theme="dark"] .btn--primary:hover { background: #fff; color: var(--navy-900); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand-2); color: var(--brand-2); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* Announcement */
.announce {
  background: var(--navy-950);
  color: var(--ice-200);
  font-size: .82rem;
  letter-spacing: .04em;
}
.announce__inner { display: flex; justify-content: center; gap: 16px; padding: 10px 0; flex-wrap: wrap; }
.announce__sep { opacity: .4; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--text); }
.brand__tag { font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav { display: flex; justify-content: center; gap: 30px; }
.nav a { font-size: .92rem; color: var(--text-soft); font-weight: 500; position: relative; padding: 6px 0; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--brand-2); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent; border: 1px solid transparent;
  color: var(--text); cursor: pointer; font-size: 1rem;
  position: relative; transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.icon-btn:hover { background: var(--chip-bg); border-color: var(--line); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--brand-2); color: var(--brand-ink);
  font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; display: grid; place-items: center;
}
.menu-btn { display: none; }

/* Hero / Slider */
.hero { position: relative; }
.slider { position: relative; overflow: hidden; height: clamp(520px, 78vh, 760px); }
.slide {
  position: absolute; inset: 0;
  background-image: var(--hero-overlay), var(--img);
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
  display: flex; align-items: center;
}
.slide.is-active { opacity: 1; transform: scale(1); }
.slide__content { color: #fff; max-width: 720px; }
.slide__content .display { color: #fff; }
.slide__content .display em { color: var(--ice-300); }
.slide__content .eyebrow { color: var(--ice-300); }
.slide__content .lead { color: rgba(255,255,255,.88); }
.hero__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__cta .btn--primary { background: #fff; color: var(--navy-900); }
.hero__cta .btn--primary:hover { background: var(--ice-200); color: var(--navy-900); }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px); transition: background .2s, transform .2s;
}
.slider__arrow:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.06); }
.slider__arrow--prev { left: 24px; }
.slider__arrow--next { right: 24px; }

.slider__dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.slider__dots button {
  width: 28px; height: 3px; border-radius: 2px; border: 0;
  background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s, width .3s;
}
.slider__dots button.is-active { background: #fff; width: 48px; }

/* Trust */
.trust { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 30px 0;
}
.trust__item {
  display: flex; align-items: center; gap: 14px;
  color: var(--text);
}
.trust__item i { font-size: 1.3rem; color: var(--brand-2); width: 40px; height: 40px; display: grid; place-items: center; background: var(--chip-bg); border-radius: 50%; }
.trust__item strong { display: block; font-weight: 600; font-size: .95rem; }
.trust__item span { font-size: .8rem; color: var(--muted); }

/* Sections */
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section__head p { margin-top: 12px; }

/* Categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background-image: var(--img); background-size: cover; background-position: center;
  display: flex; align-items: flex-end; color: #fff;
  transition: transform .5s ease, box-shadow .5s ease;
  box-shadow: var(--shadow);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,20,43,.85));
  transition: background .4s ease;
}
.cat-card:hover .cat-card__overlay { background: linear-gradient(180deg, rgba(7,20,43,.2) 0%, rgba(7,20,43,.9)); }
.cat-card__body { position: relative; z-index: 1; padding: 24px; width: 100%; }
.cat-card h3 { font-size: 1.8rem; color: #fff; }
.cat-card span { font-size: .85rem; opacity: .85; display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; transition: gap .3s; }
.cat-card:hover span { gap: 14px; }

/* Discount banner */
.discount {
  position: relative;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700) 60%, var(--navy-600));
  color: #fff; overflow: hidden;
  padding: clamp(60px, 9vw, 100px) 0;
}
.discount__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.discount__glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,206,224,.25), transparent 60%);
  top: -200px; right: -150px; z-index: 0;
}
.discount h2 { color: #fff; }
.discount h2 .accent { color: var(--champagne); font-style: italic; }
.discount p { color: var(--ice-200); margin-top: 12px; }
.discount strong { background: rgba(255,255,255,.15); padding: 3px 10px; border-radius: 6px; letter-spacing: .1em; }
.countdown { display: flex; gap: 12px; margin: 26px 0 32px; }
.countdown > div {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; padding: 14px 18px; text-align: center; min-width: 72px;
  backdrop-filter: blur(8px);
}
.countdown span { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; display: block; color: #fff; line-height: 1; }
.countdown small { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ice-300); }
.discount .btn--primary { background: #fff; color: var(--navy-900); }
.discount .btn--primary:hover { background: var(--champagne); color: var(--navy-900); }
.discount__img img { border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.4); transform: rotate(2deg); }

/* Products */
.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  padding: 10px 22px; border-radius: 999px;
  background: var(--chip-bg); color: var(--text-soft);
  border: 1px solid transparent; font-weight: 500; cursor: pointer;
  transition: all .25s ease; font-size: .9rem; font-family: inherit;
}
.chip:hover { color: var(--text); }
.chip.is-active { background: var(--brand); color: var(--brand-ink); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.p-card {
  background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  display: flex; flex-direction: column;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.p-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--chip-bg); }
.p-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.p-card:hover .p-card__media img { transform: scale(1.07); }
.p-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy-900); color: #fff;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
}
.p-card__badge--sale { background: var(--champagne); color: var(--navy-900); }
.p-card__wish {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.9); color: var(--navy-900);
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; transform: translateY(-4px); transition: opacity .3s, transform .3s, background .2s;
}
.p-card:hover .p-card__wish { opacity: 1; transform: translateY(0); }
.p-card__wish:hover { background: #fff; color: #c0392b; }
.p-card__wish.is-liked { color: #c0392b; opacity: 1; }
.p-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.p-card__cat { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.p-card__name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--text); margin: 2px 0; }
.p-card__rating { font-size: .8rem; color: var(--muted); }
.p-card__rating .fa-star { color: #e0a53a; font-size: .75rem; margin-right: 1px; }
.p-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; }
.p-card__price { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.p-card__price del { color: var(--muted); font-weight: 400; margin-right: 6px; font-size: .9rem; }
.p-card__add {
  border: 0; background: var(--brand); color: var(--brand-ink);
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: transform .2s, background .2s;
}
.p-card__add:hover { transform: scale(1.08) rotate(4deg); }

/* Story */
.story { background: var(--bg-soft); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story__img { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.story__img img { aspect-ratio: 4 / 5; object-fit: cover; }
.story__badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--bg-elev); color: var(--text);
  padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.story__badge i { font-size: 1.3rem; color: var(--brand-2); }
.story__badge strong { display: block; }
.story__badge span { color: var(--muted); font-size: .8rem; }
.story__text p { color: var(--text-soft); margin: 16px 0 24px; }
.why { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.why li { display: flex; align-items: center; gap: 12px; color: var(--text-soft); }
.why i { color: var(--brand-2); width: 26px; height: 26px; background: var(--chip-bg); border-radius: 50%; display: grid; place-items: center; font-size: .75rem; }

/* Stats */
.stats { background: var(--navy-900); color: #fff; padding: 60px 0; }
:root[data-theme="dark"] .stats { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats__grid strong { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #fff; display: block; line-height: 1; }
:root[data-theme="dark"] .stats__grid strong { color: var(--text); }
.stats__grid span { color: var(--ice-300); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; display: block; margin-top: 10px; }
:root[data-theme="dark"] .stats__grid span { color: var(--muted); }

/* Testimonials */
.t-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.t-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { color: #e0a53a; font-size: .85rem; display: flex; gap: 2px; }
.t-card p { color: var(--text-soft); font-style: italic; font-size: .95rem; flex: 1; }
.t-card footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.t-card footer img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.t-card footer strong { display: block; font-size: .95rem; }
.t-card footer span { font-size: .8rem; color: var(--muted); }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact__list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.contact__list li { display: flex; align-items: center; gap: 14px; color: var(--text-soft); }
.contact__list i { color: var(--brand-2); width: 36px; height: 36px; background: var(--chip-bg); border-radius: 50%; display: grid; place-items: center; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--chip-bg); color: var(--text);
  display: grid; place-items: center; transition: all .25s;
}
.socials a:hover { background: var(--brand); color: var(--brand-ink); transform: translateY(-3px); }

.contact__form {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
}
.contact__form h3 { font-size: 1.6rem; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line); color: var(--text);
  padding: 14px 16px; border-radius: 12px; font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-2); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-2) 22%, transparent);
}
.field textarea { resize: vertical; min-height: 100px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 14px; text-align: center; font-size: .9rem; min-height: 20px; }
.form-note.is-ok { color: #2e7d32; }
.form-note.is-err { color: #c0392b; }

/* CTA */
.cta { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); color: #fff; padding: 80px 0; }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cta h2 { color: #fff; }
.cta p { color: var(--ice-300); margin-top: 10px; }
.cta__form { display: flex; gap: 10px; background: rgba(255,255,255,.08); padding: 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); }
.cta__form input {
  flex: 1; background: transparent; border: 0; padding: 14px 20px;
  color: #fff; font-family: inherit; font-size: 1rem;
}
.cta__form input::placeholder { color: rgba(255,255,255,.55); }
.cta__form input:focus { outline: 0; }
.cta__form .btn--primary { background: #fff; color: var(--navy-900); }
.cta__form .btn--primary:hover { background: var(--champagne); }

/* Footer */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand p { margin: 18px 0; }
.footer h4 { font-family: 'Manrope', sans-serif; font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--text-soft); font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--brand-2); }
.footer__bar { border-top: 1px solid var(--line); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: .85rem; }
.pay { display: flex; gap: 10px; font-size: 1.5rem; color: var(--muted); }

/* Back to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: var(--brand-ink);
  border: 0; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: var(--shadow-lg); z-index: 50;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* Toast */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 20px);
  background: var(--navy-900); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: var(--shadow-lg); z-index: 60; font-size: .92rem;
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* Responsive */
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-soft); padding: 20px; border-bottom: 1px solid var(--line); }
  .nav.is-open { display: flex; }
  .menu-btn { display: grid; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .story__grid, .contact__grid, .discount__inner, .cta__inner, .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { gap: 30px; }
  .slider__arrow { display: none; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .countdown { flex-wrap: wrap; }
  .brand__tag { display: none; }
  .cta__form { flex-direction: column; border-radius: 20px; padding: 10px; }
  .cta__form input { padding: 12px 16px; }
  .cta__form .btn { width: 100%; justify-content: center; }
  .footer__bar-inner { flex-direction: column; gap: 12px; text-align: center; }
}
