/* ==========================================================================
   Bengal Kantha - storefront design system
   Every colour, font and layout value below resolves against the CSS custom
   properties served by /theme.css, which is generated from the database.
   The fallbacks here only matter if the stylesheet loads before the theme.
   ========================================================================== */

:root {
  --c-primary: var(--color-primary, #1E3D34);
  --c-primary-dark: var(--color-primary-dark, #16302A);
  --c-secondary: var(--color-secondary, #8A6A4B);
  --c-accent: var(--color-accent, #B5502E);
  --c-bg: var(--color-background, #F7F3EA);
  --c-surface: var(--color-surface, #FFFFFF);
  --c-hero: var(--color-hero, #E8DCC8);
  --c-text: var(--color-text, #2E2A24);
  --c-muted: var(--color-text-muted, #6B6154);
  --c-btn: var(--color-button, #1E3D34);
  --c-btn-text: var(--color-button-text, #F7F3EA);
  --c-btn-hover: var(--color-button-hover, #B5502E);
  --c-border: var(--color-border, #DED3C0);
  --c-sale: var(--color-sale, #B5502E);
  --c-success: var(--color-success, #3F7A5E);

  --f-heading: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  --f-body: var(--font-body, 'Jost', system-ui, sans-serif);
  --f-accent: var(--font-accent, 'Italiana', Georgia, serif);
  --f-heading-weight: var(--font-heading-weight, 600);

  --container: var(--layout-container-width, 1240px);
  --radius: var(--layout-radius, 2px);
  --radius-lg: var(--layout-radius-large, 4px);
  --section-gap: var(--layout-section-spacing, 72px);
  --header-h: var(--layout-header-height, 92px);

  --shadow-sm: 0 1px 3px rgba(46, 42, 36, .08);
  --shadow-md: 0 6px 24px rgba(46, 42, 36, .10);
  --shadow-lg: 0 18px 48px rgba(46, 42, 36, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--font-base-size, 16px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* Inline SVG icons carry no width/height attributes, so they need a base
   size here. Components that want a different size override this. */
svg { width: 20px; height: 20px; flex: 0 0 auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: var(--f-heading-weight);
  color: var(--c-primary);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--c-primary); color: var(--c-btn-text);
  padding: 10px 18px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* --- layout primitives ---------------------------------------------------- */

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

.section { padding-block: var(--section-gap); }
.section--tight { padding-block: calc(var(--section-gap) * .6); }

.section-head { text-align: center; margin-bottom: 40px; }

/* The flourish either side of a section title, as in the reference design. */
.section-title {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.6rem);
  margin: 0;
}
.section-title::before, .section-title::after {
  content: ''; flex: 0 0 auto; width: 58px; height: 12px;
  background: currentColor;
  opacity: .5;
  -webkit-mask: var(--flourish) center / contain no-repeat;
  mask: var(--flourish) center / contain no-repeat;
}
.section-title::after { transform: scaleX(-1); }

:root {
  --flourish: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 58 12'%3E%3Cpath d='M0 6h30M36 6h22M33 1.5 36 6l-3 4.5L30 6z' fill='none' stroke='%23000' stroke-width='1.1'/%3E%3C/svg%3E");
}

.section-subtitle {
  color: var(--c-muted);
  margin: 10px 0 0;
  font-size: .96rem;
}

/* --- buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px;
  background: var(--c-btn);
  color: var(--c-btn-text);
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
  text-align: center;
}
.btn:hover { background: var(--c-btn-hover); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  box-shadow: inset 0 0 0 1px var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: var(--c-btn-text); }

.btn--whatsapp { background: #25D366; color: #0B3D22; }
.btn--whatsapp:hover { background: #1FBB58; color: #06301A; }

.btn--sm { padding: 10px 20px; font-size: .72rem; }
.btn--block { width: 100%; }

/* --- announcement bar ----------------------------------------------------- */

.announcement {
  background: var(--c-primary-dark);
  color: var(--c-bg);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  min-height: 36px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 16px;
  overflow: hidden;
}
.announcement__msg { transition: opacity .5s var(--ease); }
.announcement__msg.is-fading { opacity: 0; }
.announcement[hidden] { display: none; }

/* --- header --------------------------------------------------------------- */

.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }

.header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: var(--header-h);
  padding-block: 14px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { flex: 0 0 auto; color: var(--c-accent); }
.brand__mark svg { width: 42px; height: 42px; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: -.01em;
}
.brand__name em { font-style: normal; color: var(--c-accent); }
.brand__tagline {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 6px;
  padding-left: 2px;
}
.brand__logo { max-height: 56px; width: auto; }

/* Search */
.search {
  display: flex;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.search:focus-within { border-color: var(--c-primary); }
.search__input {
  flex: 1; min-width: 0;
  border: 0; background: none;
  padding: 11px 16px;
  font-size: .88rem;
}
.search__input:focus { outline: none; }
.search__input::placeholder { color: var(--c-muted); opacity: .8; }
.search__btn {
  display: grid; place-items: center;
  padding-inline: 14px;
  color: var(--c-primary);
  transition: color .2s var(--ease);
}
.search__btn:hover { color: var(--c-accent); }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 26px; }
.header-action {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem;
  color: var(--c-text);
  transition: color .2s var(--ease);
  position: relative;
}
.header-action:hover { color: var(--c-accent); }
.header-action__icon { display: grid; place-items: center; position: relative; }
.header-action__label { white-space: nowrap; }

.badge-count {
  position: absolute; top: -8px; right: -10px;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--c-primary);
  color: var(--c-btn-text);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 600;
  line-height: 1;
}

/* Desktop navigation */
.nav { border-top: 1px solid var(--c-border); }
.nav__list {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 15px 18px;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-text);
  position: relative;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute; left: 18px; right: 18px; bottom: 8px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s var(--ease);
}
.nav__link:hover { color: var(--c-accent); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--c-accent); }

/* Dropdowns */
.nav__submenu {
  position: absolute; top: 100%; left: 0; z-index: 20;
  min-width: 220px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__item:hover > .nav__submenu,
.nav__item:focus-within > .nav__submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__submenu a {
  display: block;
  padding: 9px 20px;
  font-size: .82rem;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__submenu a:hover { background: var(--c-bg); color: var(--c-accent); }

/* Mobile-only header pieces */
.header__mobile { display: none; }
.icon-btn {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: var(--c-primary);
  position: relative;
  border-radius: var(--radius);
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: rgba(30, 61, 52, .07); }
.icon-btn .badge-count { top: 2px; right: 0; }

/* Mobile search drawer */
.mobile-search {
  display: none;
  padding: 0 24px 14px;
}
.mobile-search.is-open { display: block; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 auto 0 0; z-index: 100;
  width: min(86vw, 340px);
  background: var(--c-bg);
  transform: translateX(-100%);
  transition: transform .32s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--c-border);
}
.drawer__nav { padding: 8px 0; flex: 1; }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(222, 211, 192, .5);
}
.drawer__link:hover, .drawer__link.is-active { color: var(--c-accent); }
.drawer__sub { background: rgba(232, 220, 200, .35); }
.drawer__sub .drawer__link { padding-left: 38px; text-transform: none; letter-spacing: .04em; }
.drawer__toggle { padding: 6px; margin: -6px; color: var(--c-muted); }
.drawer__foot { padding: 20px 22px; border-top: 1px solid var(--c-border); }

.overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(22, 48, 42, .5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.overlay.is-open { opacity: 1; visibility: visible; }

/* --- hero ----------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; background: var(--c-hero); }
.hero__track { display: flex; transition: transform .6s var(--ease); }
.hero__slide { flex: 0 0 100%; position: relative; }

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  min-height: 460px;
}
.hero__content { padding: 56px 48px 56px 0; max-width: 560px; }
.hero__eyebrow {
  font-family: var(--f-accent);
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.1rem);
  color: var(--c-accent);
  font-style: italic;
  margin-bottom: 6px;
  display: block;
}
.hero__title {
  font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4.2rem);
  line-height: 1.04;
  margin: 0 0 18px;
  color: var(--c-primary);
}
.hero__text {
  font-size: clamp(1rem, .95rem + .3vw, 1.2rem);
  font-family: var(--f-heading);
  color: var(--c-text);
  margin: 0 0 22px;
  max-width: 30ch;
}

/* The small diamond rule under the hero copy. */
.hero__rule {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  color: var(--c-secondary);
}
.hero__rule::before, .hero__rule::after {
  content: ''; height: 1px; width: 66px; background: currentColor; opacity: .55;
}
.hero__rule span { width: 7px; height: 7px; background: currentColor; transform: rotate(45deg); }

.hero__media { position: relative; height: 100%; min-height: 460px; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__arrow {
  position: absolute; top: 50%; z-index: 5;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--c-primary);
  background: rgba(247, 243, 234, .55);
  border-radius: 999px;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.hero__arrow:hover { background: var(--c-primary); color: var(--c-bg); }
.hero__arrow--prev { left: 18px; }
.hero__arrow--next { right: 18px; }

.hero__dots {
  position: absolute; left: 50%; bottom: 22px; z-index: 5;
  transform: translateX(-50%);
  display: flex; gap: 9px;
}
.hero__dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: rgba(30, 61, 52, .28);
  transition: background .22s var(--ease), width .22s var(--ease);
}
.hero__dot.is-active { background: var(--c-primary); width: 24px; }

/* --- trust badges --------------------------------------------------------- */

.trust {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding-block: 34px;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.trust__item {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  text-align: left;
}
.trust__icon { flex: 0 0 auto; color: var(--c-accent); }
.trust__icon svg { width: 38px; height: 38px; }
.trust__title { display: block; font-family: var(--f-body); font-size: .84rem; font-weight: 600; color: var(--c-text); line-height: 1.3; }
.trust__text { display: block; font-size: .78rem; color: var(--c-muted); line-height: 1.3; }

/* --- category cards ------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.category-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-hero);
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22, 48, 42, .82) 0%, rgba(22, 48, 42, .28) 42%, rgba(22, 48, 42, 0) 68%);
}
.category-card__body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 22px 18px;
  text-align: center;
  color: #fff;
}
.category-card__name {
  font-family: var(--f-body);
  font-size: .84rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.category-card__link { font-size: .74rem; opacity: .85; }

/* Mobile circular chips */
.category-chips { display: none; }

/* --- product cards -------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 26px 20px;
}
/* Four across on desktop keeps the presentation editorial and lets an
   eight-item section fill exactly two rows. */
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 24px; }
}

.product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--c-surface);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.product-card:hover {
  border-color: var(--c-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-hero);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), opacity .4s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }

.product-card__badges {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--c-primary);
  border-radius: var(--radius);
}
.tag--sale { background: var(--c-sale); }
.tag--out { background: var(--c-muted); }

.product-card__wish {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  color: var(--c-primary);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.product-card__wish:hover { transform: scale(1.08); color: var(--c-accent); }
.product-card__wish.is-active { background: var(--c-accent); color: #fff; }

.product-card__body { padding: 16px 14px 18px; display: flex; flex-direction: column; flex: 1; text-align: center; }
.product-card__cat { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 6px; }
.product-card__name {
  font-family: var(--f-heading);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--c-primary);
  margin: 0 0 8px;
  line-height: 1.25;
}
.product-card__name a:hover { color: var(--c-accent); }

.price { display: flex; align-items: baseline; justify-content: center; gap: 9px; flex-wrap: wrap; }
.price__now { font-size: 1.02rem; font-weight: 600; color: var(--c-text); }
.price__was { font-size: .84rem; color: var(--c-muted); text-decoration: line-through; }
.price__off { font-size: .7rem; font-weight: 600; color: var(--c-sale); }

.product-card__actions { margin-top: 14px; display: grid; gap: 8px; }

.stars { display: inline-flex; gap: 2px; color: #C9974B; }
.stars svg { width: 13px; height: 13px; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 8px; font-size: .72rem; color: var(--c-muted); }

/* --- promo banner --------------------------------------------------------- */

.promo { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.promo img { width: 100%; aspect-ratio: 20 / 7; object-fit: cover; }
.promo__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 0 clamp(24px, 6vw, 88px);
  background: linear-gradient(to right, rgba(22, 48, 42, .78) 0%, rgba(22, 48, 42, .45) 55%, rgba(22, 48, 42, .12) 100%);
  color: #fff;
  max-width: 100%;
}
.promo__title { color: #fff; font-size: clamp(1.6rem, 1.1rem + 2vw, 2.8rem); margin: 0 0 10px; }
.promo__text { max-width: 46ch; margin: 0 0 22px; opacity: .92; }

/* --- testimonials --------------------------------------------------------- */

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-align: center;
}
.testimonial__text { font-family: var(--f-heading); font-size: 1.1rem; line-height: 1.55; margin: 14px 0 18px; color: var(--c-text); }
.testimonial__name { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-primary); font-weight: 600; }
.testimonial__loc { font-size: .74rem; color: var(--c-muted); }

/* --- newsletter ----------------------------------------------------------- */

.newsletter { background: var(--c-primary); color: var(--c-bg); text-align: center; }
.newsletter h2 { color: var(--c-bg); }
.newsletter .section-title::before, .newsletter .section-title::after { opacity: .35; }
.newsletter__text { max-width: 52ch; margin: 0 auto 26px; opacity: .85; }
.newsletter__form { display: flex; gap: 10px; max-width: 480px; margin-inline: auto; flex-wrap: wrap; }
.newsletter__input {
  flex: 1; min-width: 200px;
  padding: 14px 18px;
  border: 1px solid rgba(247, 243, 234, .35);
  background: rgba(247, 243, 234, .08);
  color: var(--c-bg);
  border-radius: var(--radius);
}
.newsletter__input::placeholder { color: rgba(247, 243, 234, .6); }
.newsletter__input:focus { outline: none; border-color: var(--c-bg); }
.newsletter .btn { background: var(--c-accent); color: #fff; }
.newsletter .btn:hover { background: var(--c-bg); color: var(--c-primary); }

/* --- footer --------------------------------------------------------------- */

.footer { background: var(--c-primary-dark); color: rgba(247, 243, 234, .78); padding-top: 62px; font-size: .88rem; }
.footer a { transition: color .2s var(--ease); }
.footer a:hover { color: var(--c-accent); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr) 1.3fr;
  gap: 38px;
  padding-bottom: 48px;
}
.footer__title {
  font-family: var(--f-body);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-bg);
  font-weight: 600;
  margin: 0 0 18px;
}
.footer__brand .brand__name { color: var(--c-bg); }
.footer__brand .brand__tagline { color: rgba(247, 243, 234, .6); }
.footer__about { margin: 18px 0 0; line-height: 1.7; }
.footer__list li { margin-bottom: 10px; }
.footer__contact li { display: flex; gap: 11px; margin-bottom: 13px; align-items: flex-start; }
.footer__contact svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; color: var(--c-accent); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(247, 243, 234, .25);
  border-radius: 999px;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.footer__social a:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(247, 243, 234, .16);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: .8rem;
}

/* --- floating WhatsApp ---------------------------------------------------- */

.wa-float { position: fixed; bottom: 24px; z-index: 70; display: flex; align-items: center; gap: 12px; }
.wa-float--bottom-right { right: 24px; flex-direction: row-reverse; }
.wa-float--bottom-left { left: 24px; }
.wa-float__btn {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .42);
  transition: transform .25s var(--ease);
}
.wa-float__btn:hover { transform: scale(1.07); }
.wa-float__btn svg { width: 32px; height: 32px; }
.wa-float--small .wa-float__btn { width: 48px; height: 48px; }
.wa-float--small .wa-float__btn svg { width: 26px; height: 26px; }
.wa-float--large .wa-float__btn { width: 68px; height: 68px; }
.wa-float__bubble {
  background: var(--c-surface);
  color: var(--c-text);
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  font-size: .82rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: waPop .4s var(--ease) both;
}
@keyframes waPop { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wa-float__close { color: var(--c-muted); margin-left: 4px; }

/* --- breadcrumbs ---------------------------------------------------------- */

.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-block: 18px;
  font-size: .76rem;
  color: var(--c-muted);
}
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; opacity: .5; }
.breadcrumbs li { display: inline-flex; align-items: center; }

/* --- page banner ---------------------------------------------------------- */

.page-head { background: var(--c-hero); padding-block: 46px; text-align: center; }
.page-head h1 { font-size: clamp(2rem, 1.4rem + 2.2vw, 3rem); margin: 0; }
.page-head p { color: var(--c-muted); margin: 10px 0 0; }

/* --- shop layout ---------------------------------------------------------- */

.shop-layout { display: grid; grid-template-columns: 258px minmax(0, 1fr); gap: 40px; align-items: start; }

.filters {
  position: sticky; top: calc(var(--header-h) + 20px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.filters__group { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--c-border); }
.filters__group:last-child { border: 0; margin: 0; padding: 0; }
.filters__title {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--c-primary); margin: 0 0 14px;
  font-family: var(--f-body);
}
.filter-option { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: .86rem; cursor: pointer; }
.filter-option input { accent-color: var(--c-primary); width: 16px; height: 16px; cursor: pointer; }
.filter-option span { flex: 1; }
.filter-option small { color: var(--c-muted); }

.price-range { display: flex; align-items: center; gap: 10px; }
.price-range input {
  width: 100%; min-width: 0;
  padding: 9px 11px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg);
  font-size: .84rem;
}

.shop-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.shop-toolbar__count { font-size: .84rem; color: var(--c-muted); }
.select {
  padding: 10px 34px 10px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%236B6154' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right 13px center / 11px;
  font-size: .84rem;
  appearance: none;
  cursor: pointer;
}
.filters-toggle { display: none; }

.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  background: var(--c-hero);
  border-radius: 999px;
  font-size: .76rem;
}
.chip button { display: grid; place-items: center; color: var(--c-muted); }
.chip button:hover { color: var(--c-accent); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 42px; flex-wrap: wrap; }
.pagination button, .pagination span {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: grid; place-items: center;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: .84rem;
  background: var(--c-surface);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.pagination button:hover { border-color: var(--c-primary); }
.pagination button.is-active { background: var(--c-primary); color: var(--c-btn-text); border-color: var(--c-primary); }
.pagination button[disabled] { opacity: .4; pointer-events: none; }

/* --- product detail ------------------------------------------------------- */

.pdp { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: start; }

.gallery__main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-hero);
  cursor: zoom-in;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.gallery__main.is-zoomed img { transform: scale(2); }
.gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(247, 243, 234, .82); color: var(--c-primary);
  border-radius: 999px; z-index: 3;
}
.gallery__nav:hover { background: var(--c-primary); color: var(--c-bg); }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.gallery__thumb {
  flex: 0 0 82px; width: 82px; aspect-ratio: 4 / 5;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--c-primary); border-width: 2px; }

.pdp__title { font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.7rem); margin: 0 0 10px; }
.pdp__meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; font-size: .8rem; color: var(--c-muted); margin-bottom: 18px; }
.pdp__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.pdp__price .price__now { font-size: 1.8rem; font-family: var(--f-heading); color: var(--c-primary); }
.pdp__price .price__was { font-size: 1.05rem; }
.pdp__price .price__off { font-size: .82rem; padding: 3px 9px; background: rgba(181, 80, 46, .1); border-radius: var(--radius); }
.pdp__stock { font-size: .84rem; margin-bottom: 20px; }
.pdp__stock.in { color: var(--c-success); }
.pdp__stock.low { color: var(--c-accent); }
.pdp__stock.out { color: var(--c-muted); }
.pdp__short { font-size: 1rem; color: var(--c-text); margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--c-border); }

.option-group { margin-bottom: 22px; }
.option-group__label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 10px; display: block; }
.option-list { display: flex; flex-wrap: wrap; gap: 9px; }
.option {
  padding: 10px 18px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  font-size: .84rem;
  transition: all .2s var(--ease);
}
.option:hover { border-color: var(--c-primary); }
.option.is-active { background: var(--c-primary); color: var(--c-btn-text); border-color: var(--c-primary); }
.option[disabled] { opacity: .4; text-decoration: line-through; pointer-events: none; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--c-border); border-radius: var(--radius); background: var(--c-surface); }
.qty button { width: 40px; height: 44px; display: grid; place-items: center; color: var(--c-primary); }
.qty button:hover { color: var(--c-accent); }
.qty input { width: 52px; height: 44px; text-align: center; border: 0; background: none; font-size: .95rem; }
.qty input:focus { outline: none; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { appearance: none; margin: 0; }

.pdp__actions { display: grid; gap: 12px; margin: 24px 0; }
.pdp__actions-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pdp__actions-row .btn { flex: 1; min-width: 180px; }
.wish-btn {
  width: 48px; height: 48px; flex: 0 0 auto;
  display: grid; place-items: center;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-primary);
  transition: all .2s var(--ease);
}
.wish-btn:hover { border-color: var(--c-accent); color: var(--c-accent); }
.wish-btn.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

.pdp__assurance { display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.pdp__assurance li { display: flex; gap: 11px; align-items: center; font-size: .85rem; color: var(--c-muted); }
.pdp__assurance svg { width: 19px; height: 19px; color: var(--c-accent); flex: 0 0 auto; }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--c-border); margin-bottom: 26px; flex-wrap: wrap; }
.tab {
  padding: 13px 22px;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.tab.is-active { color: var(--c-primary); border-bottom-color: var(--c-accent); }
.tab-panel[hidden] { display: none; }

/* --- rich text ------------------------------------------------------------ */

.rich-text { line-height: 1.85; color: var(--c-text); }
.rich-text > *:first-child { margin-top: 0; }
.rich-text h2 { font-size: 1.65rem; margin: 1.8em 0 .6em; }
.rich-text h3 { font-size: 1.3rem; margin: 1.6em 0 .5em; }
.rich-text p { margin: 0 0 1.1em; }
.rich-text ul, .rich-text ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.rich-text ul { list-style: none; }
.rich-text ul li { position: relative; margin-bottom: .5em; padding-left: 4px; }
.rich-text ul li::before {
  content: ''; position: absolute; left: -1em; top: .72em;
  width: 6px; height: 6px; background: var(--c-accent); transform: rotate(45deg);
}
.rich-text ol { list-style: decimal; }
.rich-text ol li { margin-bottom: .5em; }
.rich-text a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.rich-text blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 24px;
  border-left: 2px solid var(--c-accent);
  font-family: var(--f-heading); font-size: 1.2rem; color: var(--c-primary);
}
.rich-text img { border-radius: var(--radius-lg); margin: 1.4em 0; }
.rich-text table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.rich-text th, .rich-text td { padding: 10px 14px; border: 1px solid var(--c-border); text-align: left; }
.rich-text th { background: var(--c-hero); font-weight: 600; }

/* --- cart / wishlist ------------------------------------------------------ */

.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }

.cart-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
  align-items: center;
}
.cart-item__media { width: 104px; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--c-hero); }
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { font-family: var(--f-heading); font-size: 1.2rem; margin: 0 0 4px; }
.cart-item__name a:hover { color: var(--c-accent); }
.cart-item__variant { font-size: .78rem; color: var(--c-muted); margin-bottom: 10px; }
.cart-item__controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cart-item__remove { font-size: .76rem; color: var(--c-muted); text-decoration: underline; text-underline-offset: 3px; }
.cart-item__remove:hover { color: var(--c-accent); }
.cart-item__total { text-align: right; font-weight: 600; white-space: nowrap; }

.summary {
  position: sticky; top: calc(var(--header-h) + 20px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.summary h2 { font-size: 1.35rem; margin: 0 0 20px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: .9rem; }
.summary__row--total {
  border-top: 1px solid var(--c-border);
  margin-top: 12px; padding-top: 16px;
  font-size: 1.15rem; font-weight: 600; color: var(--c-primary);
}
.summary__note {
  margin-top: 16px; padding: 12px 14px;
  background: var(--c-bg); border-radius: var(--radius);
  font-size: .78rem; color: var(--c-muted); line-height: 1.55;
}

/* --- empty / loading states ----------------------------------------------- */

.empty-state { text-align: center; padding: 72px 24px; max-width: 460px; margin-inline: auto; }
.empty-state__icon { color: var(--c-border); margin-bottom: 20px; }
.empty-state__icon svg { width: 68px; height: 68px; }
.empty-state h2 { font-size: 1.6rem; margin-bottom: 10px; }
.empty-state p { color: var(--c-muted); margin: 0 0 26px; }

.skeleton {
  background: linear-gradient(90deg, rgba(222,211,192,.35) 25%, rgba(222,211,192,.6) 37%, rgba(222,211,192,.35) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
.skeleton-card { display: flex; flex-direction: column; gap: 12px; }
.skeleton-card__media { aspect-ratio: 4 / 5; }
.skeleton-line { height: 13px; }
.skeleton-line--sm { width: 45%; margin-inline: auto; }
.skeleton-line--md { width: 78%; margin-inline: auto; }

/* --- toast ---------------------------------------------------------------- */

.toast-stack { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; width: calc(100% - 32px); max-width: 420px; }
.toast {
  display: flex; align-items: center; gap: 11px;
  background: var(--c-primary-dark);
  color: var(--c-bg);
  padding: 13px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: .86rem;
  animation: toastIn .3s var(--ease) both;
  pointer-events: auto;
}
.toast--error { background: var(--c-accent); }
.toast.is-leaving { animation: toastOut .3s var(--ease) both; }
.toast svg { width: 18px; height: 18px; flex: 0 0 auto; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px); } }

/* --- contact page --------------------------------------------------------- */

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: start; }
.contact-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 30px; }
.contact-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--c-border); }
.contact-list li:last-child { border: 0; }
.contact-list svg { width: 20px; height: 20px; color: var(--c-accent); flex: 0 0 auto; margin-top: 3px; }
.contact-list strong { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); font-weight: 500; margin-bottom: 3px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg);
  font-size: .92rem;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-primary); }
.field textarea { min-height: 130px; resize: vertical; }
.field__error { color: var(--c-accent); font-size: .76rem; margin-top: 6px; display: block; }

/* --- error pages ---------------------------------------------------------- */

.error-page {
  min-height: 70vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.error-page__code {
  font-family: var(--f-heading);
  font-size: clamp(5rem, 3rem + 10vw, 10rem);
  line-height: 1;
  color: var(--c-primary);
  opacity: .18;
  margin: 0;
}
.error-page h1 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); margin: -.3em 0 14px; }
.error-page p { color: var(--c-muted); max-width: 46ch; margin: 0 0 30px; }
.error-page__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Responsive - the mobile layout is designed separately, not scaled down.
   ========================================================================== */

@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .pdp { gap: 36px; }
  .hero__content { padding-right: 32px; }
}

@media (max-width: 900px) {
  :root { --section-gap: 52px; }

  .shop-layout { grid-template-columns: 1fr; }
  .filters {
    position: fixed; inset: 0 auto 0 0; z-index: 100;
    width: min(88vw, 340px);
    border-radius: 0; border: 0;
    transform: translateX(-100%);
    transition: transform .32s var(--ease);
    overflow-y: auto;
    padding-top: 20px;
  }
  .filters.is-open { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .filters__close { display: grid !important; }
  .filters-toggle { display: inline-flex; align-items: center; gap: 8px; }

  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .pdp { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  /* --- mobile header -------------------------------------------------- */
  .header__main { display: none; }
  .nav { display: none; }
  .header__mobile {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 66px;
    padding-block: 8px;
  }
  .header__mobile .brand { justify-content: center; }
  .header__mobile .brand__mark svg { width: 30px; height: 30px; }
  .header__mobile .brand__name { font-size: 1.35rem; }
  .header__mobile .brand__tagline { font-size: .48rem; letter-spacing: .26em; margin-top: 3px; }
  .header__mobile-actions { display: flex; align-items: center; gap: 2px; }

  /* --- mobile hero ---------------------------------------------------- */
  /* The reference keeps copy and image side by side on phones, so the hero
     stays a two-column split rather than stacking. */
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); min-height: 0; align-items: center; }
  .hero__media { min-height: 0; height: 100%; }
  .hero__media img { aspect-ratio: 3 / 4; }
  .hero__content { padding: 26px 14px 44px 0; text-align: left; max-width: none; }
  .hero__eyebrow { font-size: 1.15rem; margin-bottom: 2px; }
  .hero__title { font-size: clamp(1.35rem, 1rem + 2.8vw, 2rem); margin-bottom: 10px; }
  .hero__text { font-size: .78rem; max-width: none; margin-bottom: 14px; line-height: 1.45; }
  .hero__rule { display: none; }
  .hero__arrow { display: none; }
  .hero__dots { bottom: 14px; left: 24px; transform: none; }
  .hero .btn { padding: 11px 22px; font-size: .68rem; }

  /* --- trust badges: 3 + 2 ------------------------------------------- */
  .trust { padding-block: 26px; }
  .trust__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 10px; }
  .trust__item { flex-direction: column; text-align: center; gap: 8px; }
  .trust__icon svg { width: 34px; height: 34px; }
  .trust__title { font-size: .74rem; }
  .trust__text { font-size: .7rem; }
  /* The last two centre themselves beneath the first three. */
  .trust__item:nth-child(4) { grid-column: 1 / 2; justify-self: end; width: 100%; max-width: 150px; }
  .trust__item:nth-child(5) { grid-column: 2 / 4; justify-self: start; width: 100%; max-width: 150px; }

  /* --- categories become circular chips ------------------------------- */
  .category-grid { display: none; }
  .category-chips {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 10px;
  }
  .category-chip { display: block; text-align: center; }
  .category-chip__media {
    /* The element is a <span>, so it needs an explicit block display before
       width and aspect-ratio have any effect. */
    display: block;
    width: 100%; max-width: 88px; aspect-ratio: 1; margin: 0 auto 9px;
    border-radius: 999px; overflow: hidden;
    background: var(--c-hero);
    border: 1px solid var(--c-border);
  }
  .category-chip__media img { width: 100%; height: 100%; object-fit: cover; }
  .category-chip__name { display: block; font-size: .74rem; line-height: 1.3; color: var(--c-text); }

  .section-title { font-size: 1.55rem; gap: 12px; }
  .section-title::before, .section-title::after { width: 40px; }
  .section-head { margin-bottom: 26px; }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
  .product-card__name { font-size: .98rem; }
  .product-card__body { padding: 12px 10px 14px; }
  .price__now { font-size: .92rem; }

  .footer { padding-top: 44px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 32px; }
  .footer__bottom { justify-content: center; text-align: center; }

  .promo img { aspect-ratio: 4 / 3; }
  .promo__body { background: linear-gradient(to top, rgba(22, 48, 42, .88) 20%, rgba(22, 48, 42, .35) 100%); justify-content: flex-end; padding-bottom: 30px; }

  .gallery__thumb { flex-basis: 66px; width: 66px; }
  .pdp__actions-row .btn { min-width: 0; }

  .cart-item { grid-template-columns: 84px minmax(0, 1fr); gap: 14px; }
  .cart-item__media { width: 84px; }
  .cart-item__total { grid-column: 2; text-align: left; }

  .wa-float { bottom: 18px; }
  .wa-float--bottom-right { right: 18px; }
  .wa-float__bubble { display: none; }

  .toast-stack { bottom: 90px; }
}

@media (max-width: 560px) {
  .container { padding-inline: 16px; }
  .category-chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .shop-toolbar__actions { display: flex; gap: 10px; }
  .shop-toolbar__actions .select { flex: 1; }
}

@media (max-width: 380px) {
  .product-grid { gap: 16px 10px; }
  .trust__grid { gap: 18px 6px; }
  .brand__name { font-size: 1.2rem; }
}

/* --- motion & print ------------------------------------------------------- */

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

@media print {
  .header, .footer, .wa-float, .announcement, .toast-stack, .drawer, .overlay { display: none !important; }
  body { background: #fff; }
}
