/* Pioneer Home Decor â€” modern client-ready UX */
:root {
  --ink: #141816;
  --ink-2: #2c342f;
  --muted: #667069;
  --line: #e4e8e4;
  --line-2: #eef1ee;
  --bg: #ffffff;
  --soft: #f4f6f3;
  --moss: #3f5f4f;
  --moss-soft: #e8f0eb;
  --warm: #8f7352;
  --danger: #a33b35;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 40px rgba(20, 24, 22, 0.1);
  --shadow-sm: 0 4px 16px rgba(20, 24, 22, 0.06);
  --font: Candara, "Segoe UI", Calibri, sans-serif;
  --display: Candara, "Segoe UI", Calibri, sans-serif;
  --container: 1200px;
  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}
body.nav-open, body.shop-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.narrow { width: min(100% - 2rem, 720px); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background .2s var(--ease), color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary, .btn-hero {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
}
.btn-primary:hover, .btn-hero:hover {
  background: var(--moss);
  border-color: var(--moss);
  color: #fff !important;
}
.btn-secondary, .btn-outline, .btn-outline-pill, .btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover, .btn-outline:hover, .btn-outline-pill:hover {
  background: var(--ink);
  color: #fff !important;
}
.btn-lg { min-height: 54px; padding: 0.85rem 1.7rem; }
.btn-sm { min-height: 38px; padding: 0.4rem 0.95rem; font-size: 0.84rem; }
.btn-block { width: 100%; }
.btn-danger { background: transparent; color: var(--danger); border-color: transparent; }
.btn-text {
  background: none; border: none; min-height: auto; padding: 0;
  color: var(--moss); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px; border-radius: 0;
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.88);
  font-size: .8rem;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 38px; padding: .45rem 0;
}
.topbar__promo { margin: 0; }
.topbar__links { display: flex; gap: 1.25rem; }
.topbar a { color: rgba(255,255,255,.88); }
.topbar a:hover { color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-shell { padding: .9rem 0; }
.header-row {
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr minmax(180px, auto);
  align-items: center;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); z-index: 2; }
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.brand--logo-only .brand-logo {
  height: 68px;
  max-width: 280px;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -.01em;
}
.brand-sub {
  margin-top: .2rem;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.header-nav { justify-self: center; }
.primary-nav__panel {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.primary-nav__links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.primary-nav__head { display: none; }
.header-nav .nav-link,
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 42px;
  padding: .45rem .9rem;
  border: none;
  background: none;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: .92rem;
}
.header-nav .nav-link:hover,
.nav-dropdown__toggle:hover,
.header-nav .nav-link.is-active,
.nav-dropdown__toggle.is-active,
.nav-dropdown.is-open .nav-dropdown__toggle {
  background: var(--soft);
  color: var(--ink);
}
.nav-auth-mobile,
.mobile-nav-search,
.mobile-nav-contacts,
.mobile-drawer { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
}
.header-search {
  display: flex;
  align-items: center;
  width: min(240px, 26vw);
  min-height: 44px;
  padding: 0 .3rem 0 1rem;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.header-search:focus-within {
  background: #fff;
  border-color: var(--line);
}
.header-search input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  padding: .55rem .4rem; font-size: .88rem;
}
.header-search button {
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: transparent; color: var(--muted); display: grid; place-items: center;
}
.header-icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
}
.header-icon-btn:hover { background: var(--soft); }
.header-icon-btn__badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--moss); color: #fff;
  font-size: .65rem; font-weight: 700; display: grid; place-items: center;
}
.nav-toggle {
  display: none; width: 42px; height: 42px; padding: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
  border: 0; background: none; border-radius: 50%;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-backdrop,
.shop-mega-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,24,22,.4);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
  z-index: 180;
}
.nav-open .mobile-nav-backdrop,
.shop-menu-open .shop-mega-backdrop {
  opacity: 1; visibility: visible;
}

/* ===== MEGA MENU â€” properly aligned ===== */
.nav-dropdown { position: static; }
.nav-dropdown__chevron { width: 12px; height: 12px; transition: transform .2s; }
.nav-dropdown.is-open .nav-dropdown__chevron { transform: rotate(180deg); }
.nav-dropdown__backdrop { display: none; }

.nav-dropdown__menu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, visibility .2s, transform .2s var(--ease);
  z-index: 190;
  max-height: min(70vh, 520px);
  overflow: auto;
}
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.shop-mega {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 1.75rem 0 1.5rem;
}
.shop-mega__grid {
  display: grid;
  grid-template-columns: repeat(var(--mega-cols, 4), minmax(0, 1fr));
  gap: 1.75rem 2rem;
  align-items: start;
}
.shop-mega__group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.shop-mega__parent {
  display: block !important;
  padding: 0 0 .55rem !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--line-2);
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: none !important;
  border-radius: 0 !important;
  min-height: auto !important;
  line-height: 1.3;
}
.shop-mega__parent:hover { color: var(--moss) !important; }
.shop-mega__subs {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 0;
  margin: 0;
}
.shop-mega__subs li { margin: 0; }
.shop-mega__subs a {
  display: block !important;
  padding: .4rem 0 !important;
  margin: 0 !important;
  font-size: .92rem !important;
  font-weight: 500 !important;
  line-height: 1.35;
  color: var(--ink-2) !important;
  background: none !important;
  border-radius: 0 !important;
  min-height: auto !important;
}
.shop-mega__subs a:hover {
  color: var(--moss) !important;
  padding-left: .15rem !important;
}
.shop-mega__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}
.shop-mega__hint {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}
.shop-mega__all {
  display: inline-flex !important;
  align-items: center;
  min-height: 42px !important;
  padding: .55rem 1.15rem !important;
  border-radius: 999px !important;
  background: var(--ink) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
}
.shop-mega__all:hover { background: var(--moss) !important; }

.account-dropdown { position: relative; }
.account-toggle-btn { border: 0; background: none; padding: 0; }
.avatar-circle {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; font-weight: 700; font-size: .82rem;
}
.avatar-circle--lg { width: 44px; height: 44px; }
.account-menu {
  position: absolute; top: calc(100% + 10px); right: 0; width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .85rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: .2s; z-index: 220;
}
.account-dropdown.open .account-menu { opacity: 1; visibility: visible; transform: none; }
.account-menu__profile {
  display: flex; gap: .7rem; align-items: center;
  padding-bottom: .75rem; margin-bottom: .4rem; border-bottom: 1px solid var(--line-2);
}
.account-menu__name { font-weight: 700; }
.account-menu__label { font-size: .75rem; color: var(--muted); }
.account-menu__links a {
  display: block; padding: .55rem .5rem; border-radius: 8px; font-weight: 500;
}
.account-menu__links a:hover { background: var(--soft); }

.site-main { min-height: 55vh; }

/* Hero slider (RvLite banners) */
.hero-slider {
  position: relative;
  min-height: min(82vh, 680px);
  overflow: hidden;
  background: var(--soft);
}
.hero-slider__track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s var(--ease), visibility .7s;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide__media { position: absolute; inset: 0; }
.hero-slide__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide__fallback {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(63,95,79,.18), transparent 50%),
    linear-gradient(135deg, #e7ece7, #f5f2ec);
}
.hero-slide__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,22,.18) 0%, rgba(20,24,22,.58) 100%);
}
.hero-slide__content {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.hero-slide__inner {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  color: #fff;
}
.hero-slide__eyebrow {
  margin: 0 0 .75rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hero-slide__title {
  color: #fff; max-width: 14ch; margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.hero-slide__lead {
  max-width: 36ch; margin: 0 0 1.75rem;
  font-size: 1.08rem; color: rgba(255,255,255,.88);
}
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-slide .btn-outline {
  border-color: rgba(255,255,255,.7); color: #fff;
}
.hero-slide .btn-outline:hover {
  background: #fff; color: var(--ink) !important; border-color: #fff;
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .2s, transform .15s;
}
.hero-slider__nav:hover { background: #fff; }
.hero-slider__nav:active { transform: translateY(-50%) scale(0.96); }
.hero-slider__nav--prev { left: 1.25rem; }
.hero-slider__nav--next { right: 1.25rem; }
.hero-slider__dots {
  position: absolute;
  left: 50%; bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: .45rem;
}
.hero-slider__dot {
  width: 9px; height: 9px;
  border: 0; border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-slider__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.hero-home {
  position: relative;
  min-height: min(82vh, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--soft);
}
.hero-home__media { position: absolute; inset: 0; }
.hero-home__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroIn 1.1s var(--ease) both;
}
.hero-home__fallback {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(63,95,79,.18), transparent 50%),
    linear-gradient(135deg, #e7ece7, #f5f2ec);
}
.hero-home__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,22,.15) 0%, rgba(20,24,22,.55) 100%);
}
.hero-home__content {
  position: relative; z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  color: #fff;
}
.hero-home__eyebrow {
  margin: 0 0 .75rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  animation: up .7s var(--ease) both;
}
.hero-home__title {
  color: #fff; max-width: 11ch; margin: 0 0 .85rem;
  animation: up .7s .08s var(--ease) both;
}
.hero-home__lead {
  max-width: 36ch; margin: 0 0 1.75rem;
  font-size: 1.08rem; color: rgba(255,255,255,.88);
  animation: up .7s .14s var(--ease) both;
}
.hero-home__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  animation: up .7s .2s var(--ease) both;
}
.hero-home .btn-outline {
  border-color: rgba(255,255,255,.7); color: #fff;
}
.hero-home .btn-outline:hover {
  background: #fff; color: var(--ink) !important; border-color: #fff;
}
@keyframes up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroIn {
  from { transform: scale(1.05); opacity: .8; }
  to { transform: none; opacity: 1; }
}

/* Trust */
.trust-strip { padding: 1.6rem 0; border-bottom: 1px solid var(--line-2); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.trust-item { display: flex; gap: .8rem; align-items: flex-start; }
.trust-item__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--moss-soft); color: var(--moss); flex-shrink: 0;
}
.trust-item strong { display: block; font-size: .9rem; font-weight: 700; }
.trust-item span { font-size: .8rem; color: var(--muted); line-height: 1.4; }

/* Sections */
.section { padding: 4rem 0; }
.section--soft { background: var(--soft); }
.section-head { margin-bottom: 1.75rem; }
.section-head--center { text-align: center; max-width: 38rem; margin: 0 auto 2rem; }
.section-head.row-between {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.eyebrow {
  margin: 0 0 .45rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--moss);
}
.section-lead, .lead { color: var(--muted); margin: 0; }

.cat-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.cat-photo {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius); background: var(--soft); color: #fff;
}
.cat-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.cat-photo:hover img { transform: scale(1.05); }
.cat-photo__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,22,.62), transparent 55%);
}
.cat-photo__meta { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem; }
.cat-photo__label {
  display: block; font-family: var(--display); font-size: 1.55rem; margin-bottom: .15rem;
}
.cat-photo__cta {
  font-size: .82rem; font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
}

.promo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.promo-panel {
  position: relative; min-height: 300px; padding: 2.25rem;
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.promo-panel--sage { background: var(--moss-soft); }
.promo-panel--sand { background: #efe8df; }
.promo-panel h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  max-width: 11ch; margin-bottom: .5rem;
}
.promo-panel p { max-width: 28ch; color: var(--ink-2); margin: 0 0 1.25rem; }
.promo-panel__art {
  position: absolute; right: -2%; bottom: -6%; width: 46%; max-width: 230px;
  pointer-events: none;
}
.promo-panel__art img {
  width: 100%; filter: drop-shadow(0 14px 28px rgba(0,0,0,.12));
}

.product-grid, .grid-advanced {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1.15rem;
}
.product-card { display: flex; flex-direction: column; position: relative; }
.product-card__badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: var(--danger); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: .25rem .5rem; border-radius: 6px;
}
.product-card__image-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius); background: var(--soft); margin-bottom: .85rem;
}
.product-card__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s var(--ease);
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.04); }
.product-card__placeholder {
  width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted);
}
.product-card__overlay {
  position: absolute; left: .75rem; right: .75rem; bottom: .75rem;
  opacity: 0; transform: translateY(8px); transition: .25s;
}
.product-card:hover .product-card__overlay,
.product-card:focus-within .product-card__overlay {
  opacity: 1; transform: none;
}
.product-card__quick-actions { display: flex; gap: .4rem; }
.product-card__quick-actions .btn {
  flex: 1; min-height: 40px; font-size: .78rem; padding: .4rem .55rem;
}
.product-card__quick-actions .btn-outline {
  background: #fff; border-color: #fff;
}
.product-card__body { display: flex; flex-direction: column; gap: .2rem; }
.product-card__category {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.product-card__title {
  font-family: var(--font); font-size: .95rem; font-weight: 600; margin: 0; line-height: 1.35;
}
.product-card__title a:hover { color: var(--moss); }
.product-card__summary { font-size: .84rem; color: var(--muted); margin: .2rem 0 0; }
.product-card__price { font-weight: 700; margin-top: .35rem; }

.wishlist-form { display: inline-flex; margin: 0; }
.wishlist-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  min-height: 40px; padding: .4rem .9rem;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  color: var(--ink-2); font-weight: 600; font-size: .85rem;
}
.wishlist-btn:hover, .wishlist-btn.is-active { color: var(--danger); }
.product-card__wishlist { position: absolute; top: .65rem; right: .65rem; z-index: 2; }
.product-card__wishlist .wishlist-btn {
  width: 38px; height: 38px; min-height: 38px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm);
}
.product-card__wishlist .wishlist-btn span { display: none; }

.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.why-item__icon {
  width: 52px; height: 52px; margin: 0 auto .85rem;
  display: grid; place-items: center; border-radius: 14px;
  background: var(--moss-soft); color: var(--moss);
}
.why-item h3 { font-family: var(--font); font-size: .95rem; font-weight: 700; margin-bottom: .35rem; }
.why-item p { margin: 0; font-size: .86rem; color: var(--muted); }

.inspire-band {
  position: relative; min-height: 340px; display: grid; place-items: center;
  overflow: hidden; background: var(--ink); color: #fff; text-align: center;
}
.inspire-band__media { position: absolute; inset: 0; opacity: .28; }
.inspire-band__media img { width: 100%; height: 100%; object-fit: cover; }
.inspire-band__inner { position: relative; z-index: 1; padding: 3.5rem 1.25rem; max-width: 34rem; }
.inspire-band h2 { color: #fff; }
.inspire-band p { color: rgba(255,255,255,.78); margin: 0 0 1.35rem; }
.inspire-form {
  display: flex; gap: .5rem; max-width: 440px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.inspire-form input {
  flex: 1; min-width: 200px; min-height: 50px; padding: .65rem 1rem;
  border: 0; border-radius: 999px; outline: 0;
}
.inspire-form .btn-primary:hover { background: #fff; color: var(--ink) !important; border-color: #fff; }

/* Shop */
.shop-page__hero {
  padding: 2.1rem 0 1.35rem; background: var(--soft); border-bottom: 1px solid var(--line-2);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
  font-size: .84rem; color: var(--muted); margin: 0 0 .85rem;
}
.breadcrumb a:hover { color: var(--ink); }
.shop-page__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.shop-page__lead { color: var(--muted); margin: 0; }
.shop-search {
  display: flex; align-items: center; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  min-width: min(100%, 280px);
}
.shop-search input {
  flex: 1; border: 0; outline: 0; padding: .7rem 1rem; background: transparent; min-width: 0;
}
.shop-search__btn {
  width: 44px; height: 44px; border: 0; background: transparent; color: var(--muted);
  display: grid; place-items: center;
}
.shop-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 2rem;
  padding: 2rem 0 3.5rem; align-items: start;
}
.shop-layout--full { grid-template-columns: 1fr; }
.shop-sidebar {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem;
}
.shop-sidebar__head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: .85rem;
}
.shop-sidebar__head h2 {
  font-family: var(--font); font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin: 0;
}
.shop-sidebar__close { display: none; border: 0; background: none; font-size: 1.5rem; color: var(--muted); }
.shop-sidebar__nav { display: flex; flex-direction: column; gap: .1rem; }
.shop-sidebar__group {
  padding: .55rem 0; border-top: 1px solid var(--line-2);
}
.shop-sidebar__group:first-of-type { border-top: 0; }
.shop-sidebar__link,
.shop-sidebar__parent,
.shop-sidebar__link--all {
  display: block; padding: .45rem .55rem; border-radius: 8px;
  color: var(--ink-2); font-size: .9rem; font-weight: 500;
}
.shop-sidebar__parent { font-weight: 700; color: var(--ink); }
.shop-sidebar__link--child { padding-left: 1rem; font-size: .86rem; color: var(--muted); }
.shop-sidebar__link:hover,
.shop-sidebar__parent:hover,
.shop-sidebar__link.is-active,
.shop-sidebar__parent.is-active,
.shop-sidebar__link--all.is-active {
  background: var(--moss-soft); color: var(--moss);
}
.shop-sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(20,24,22,.4); z-index: 240; }
.shop-main__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem; margin-bottom: 1.25rem;
}
.shop-main__bar-left, .shop-main__bar-right {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
}
.shop-count { margin: 0; color: var(--muted); font-size: .9rem; }
.shop-active-filter {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .28rem .65rem; background: var(--moss-soft); color: var(--moss);
  border-radius: 999px; font-size: .78rem; font-weight: 700;
}
.shop-filter-toggle { display: none; }
.shop-sort select {
  min-height: 42px; padding: .4rem .85rem;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; outline: 0;
}
.shop-empty, .info-card {
  padding: 2.5rem 1.5rem; text-align: center; background: var(--soft); border-radius: var(--radius);
}

/* Product detail */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem;
}
.product-gallery { display: flex; flex-direction: column; gap: .75rem; }
.product-gallery__main {
  aspect-ratio: 1; background: var(--soft); border-radius: var(--radius); overflow: hidden;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.product-gallery__thumbs { display: flex; flex-wrap: wrap; gap: .5rem; }
.product-gallery__thumbs button {
  width: 68px; height: 68px; padding: 0; border: 2px solid transparent;
  border-radius: 10px; overflow: hidden; background: var(--soft);
}
.product-gallery__thumbs button.is-active,
.product-gallery__thumbs button:hover { border-color: var(--ink); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.price-display { font-size: 1.4rem; font-weight: 700; margin: .75rem 0; }
.sale-price { color: var(--danger); }
.compare-price { text-decoration: line-through; color: var(--muted); font-size: .9em; margin-left: .35rem; }
.variant-list { display: flex; flex-direction: column; gap: .5rem; margin: 1rem 0; }
.variant-option {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer;
}
.variant-option:has(input:checked), .variant-option.is-selected {
  border-color: var(--moss); background: var(--moss-soft);
}
.variant-option input { accent-color: var(--moss); }
.qty-row { display: flex; align-items: center; gap: .75rem; margin: 1rem 0 1.25rem; }
.qty-input {
  width: 76px; min-height: 46px; padding: .4rem .6rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); text-align: center;
}
.product-trust-row {
  display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.25rem 0 0;
  padding-top: 1.25rem; border-top: 1px solid var(--line-2);
  font-size: .85rem; color: var(--muted);
}
.product-trust-row li { display: flex; align-items: center; gap: .4rem; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 300;
  display: grid; place-items: center; padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 90vh; max-width: 100%; border-radius: 8px; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 1.5rem;
}

/* Cart / checkout */
.cart-layout, .checkout-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 2rem;
  align-items: start; margin-top: 1.5rem;
}
.cart-item {
  display: grid; grid-template-columns: 92px 1fr auto auto; gap: 1rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line-2); align-items: center;
}
.cart-item__image {
  width: 92px; height: 92px; border-radius: 12px; overflow: hidden; background: var(--soft);
}
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__placeholder { width: 100%; height: 100%; background: var(--soft); }
.cart-item__details h3 { font-family: var(--font); font-size: 1rem; font-weight: 700; margin: 0 0 .25rem; }
.cart-item__variant, .cart-item__sku { font-size: .85rem; color: var(--muted); margin: 0; }
.cart-item__price { margin: .35rem 0 0; font-weight: 600; }
.cart-item__actions { display: flex; flex-direction: column; gap: .4rem; align-items: flex-end; }
.cart-qty-form { display: flex; align-items: center; gap: .4rem; }
.cart-summary, .checkout-summary {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--soft); border-radius: var(--radius); padding: 1.4rem;
}
.cart-summary h2, .checkout-summary h2 {
  font-family: var(--font); font-size: 1rem; font-weight: 800; margin: 0 0 1rem;
}
.cart-summary__row {
  display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .65rem; font-size: .95rem;
}
.cart-summary__total { font-size: 1.05rem; margin-top: .5rem; }
.cart-summary .btn { margin-top: .75rem; }
.cart-summary hr, .checkout-summary hr { border: 0; border-top: 1px solid var(--line); margin: .85rem 0; }
.checkout-note {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: 1rem 1.15rem; background: var(--moss-soft); border-radius: 12px;
  margin-bottom: 1.5rem; font-size: .95rem; color: var(--ink-2);
}
.checkout-note strong { color: var(--moss); display: block; margin-bottom: .15rem; }
.checkout-fieldset {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem;
  margin: 0 0 1.25rem; background: #fff;
}
.checkout-fieldset legend { font-weight: 800; padding: 0 .35rem; font-size: .9rem; }
.checkout-items { display: flex; flex-direction: column; gap: .85rem; }
.checkout-item { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.checkout-item__name { display: block; font-weight: 600; }
.checkout-item__variant, .checkout-item__qty { display: block; color: var(--muted); font-size: .8rem; }

/* Forms */
.field { margin-bottom: 1rem; }
.field label {
  display: block; font-size: .84rem; font-weight: 600; margin-bottom: .35rem; color: var(--ink-2);
}
.field input, .field select, .field textarea,
.contact-form input, .contact-form textarea, .auth-form input {
  width: 100%; min-height: 48px; padding: .65rem .9rem;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; outline: 0;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea, .contact-form textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus,
.contact-form input:focus, .contact-form textarea:focus, .auth-form input:focus {
  border-color: var(--moss); box-shadow: 0 0 0 4px rgba(63,95,79,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-hint { font-size: .85rem; color: var(--muted); margin: .5rem 0 0; }
.required { color: var(--danger); }
.checkbox-field label { display: flex; align-items: center; gap: .5rem; font-weight: 500; cursor: pointer; }
.checkbox-field input { width: auto; min-height: auto; accent-color: var(--moss); }
.alert {
  padding: .95rem 1.1rem; border-radius: 12px; margin-bottom: 1.25rem; font-size: .95rem;
}
.alert.success { background: var(--moss-soft); color: var(--moss); }
.alert.error { background: #f8eaea; color: var(--danger); }
.page-hero {
  padding: 2.5rem 0 1.5rem; background: var(--soft); border-bottom: 1px solid var(--line-2);
}
.page-hero.compact { padding: 2rem 0 1.25rem; }
.page-hero p { color: var(--muted); max-width: 42ch; margin: 0; }
.contact-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start;
}
.contact-people {
  display: grid;
  gap: .85rem;
  margin: 1rem 0 1.25rem;
}
.contact-people p { margin: 0; line-height: 1.45; }
.contact-people a { color: var(--ink); font-weight: 600; }
.contact-people a:hover { color: var(--moss); }
.auth-card {
  max-width: 440px; margin: 2rem auto 3rem; padding: 2rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.auth-card h1 { font-size: 2.1rem; }
.auth-subtitle, .auth-footer { color: var(--muted); }
.auth-footer { text-align: center; margin-top: 1.25rem; font-size: .9rem; }
.subhead { color: var(--muted); margin: -.25rem 0 1.5rem; }

.order-success-banner {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.35rem; background: var(--moss-soft); border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.order-success-banner h2 { font-family: var(--font); font-size: 1.1rem; margin: 0 0 .25rem; }
.order-success-banner p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.order-detail-card, .orders-list {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
}
.order-detail-header {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-2);
}
.order-badge {
  display: inline-block; padding: .3rem .7rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; background: var(--soft); color: var(--ink-2);
  text-transform: capitalize;
}
.order-item {
  display: grid; grid-template-columns: 1fr auto auto; gap: 1rem;
  padding: .75rem 0; border-bottom: 1px solid var(--line-2); font-size: .95rem;
}
.order-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem; padding: 1rem 0; border-bottom: 1px solid var(--line-2);
}
.order-row:hover { color: var(--moss); }
.order-row__main { display: flex; flex-direction: column; gap: .15rem; }
.order-row__number { font-weight: 700; }
.order-row__date, .order-row__items { font-size: .85rem; color: var(--muted); }
.order-row__meta { display: flex; align-items: center; gap: .65rem; }
.order-row__total { font-weight: 700; }
.order-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.order-addresses {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-2);
}
.order-addresses h3 { font-family: var(--font); font-size: .9rem; margin: 0 0 .5rem; }
.order-addresses address { font-style: normal; color: var(--ink-2); font-size: .95rem; line-height: 1.55; }
.order-total {
  display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--line-2); font-size: 1.05rem;
}
.muted { color: var(--muted); }
.wishlist-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 1.5rem;
}
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.15rem;
}
.faq-item h3 { font-family: var(--font); font-size: 1rem; margin: 0 0 .4rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: .95rem; }
.help-contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-top: 1.25rem;
}
.help-contact-card {
  display: flex; flex-direction: column; gap: .25rem; padding: 1.15rem;
  background: var(--soft); border-radius: var(--radius);
}
.help-contact-card span { color: var(--muted); font-size: .9rem; }
.content-prose { max-width: 680px; }
.content-prose h2 { margin-top: 1.75rem; font-size: 1.4rem; }
.content-prose p, .content-prose li { color: var(--ink-2); }
.content-prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

/* Footer */
.site-footer {
  margin-top: 2rem; padding: 3.5rem 0 1.5rem;
  background: var(--ink); color: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; margin-bottom: 2rem;
}
.footer-logo {
  height: 64px;
  width: auto;
  max-width: 260px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-brand .brand-name {
  display: block;
  color: #fff;
  margin-bottom: .4rem;
  font-size: 1.65rem;
}
.footer-brand p { margin: 0 0 .5rem; max-width: 28ch; font-size: .92rem; }
.footer-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin: 0 0 .85rem;
}
.footer-col { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: .55rem; margin-top: .9rem; }
.footer-social a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff;
}
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-note {
  padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .88rem; color: rgba(255,255,255,.55);
}
.footer-bottom {
  padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,.12);
}
.copyright { margin: 0; font-size: .82rem; color: rgba(255,255,255,.45); }
.copyright a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 2px; }

.toast-stack {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 400;
  display: flex; flex-direction: column; gap: .5rem;
}
.toast {
  padding: .9rem 1.1rem; background: var(--ink); color: #fff;
  border-radius: 12px; box-shadow: var(--shadow); font-size: .9rem;
  animation: up .3s var(--ease);
}
.form-submit-loader {
  position: fixed; inset: 0; background: rgba(20,24,22,.45);
  display: grid; place-items: center; z-index: 350;
}
.form-submit-loader[hidden] { display: none; }
.form-submit-loader__panel {
  background: #fff; padding: 1.75rem 2rem; border-radius: var(--radius); text-align: center;
}
.form-submit-loader__spinner {
  width: 36px; height: 36px; margin: 0 auto .85rem;
  border: 3px solid var(--line); border-top-color: var(--moss); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 1100px) {
  .shop-mega__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid, .grid-advanced { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .header-row { grid-template-columns: auto 1fr; }
  .header-search { display: none; }
  .nav-toggle { display: flex; }
  .header-nav--desktop { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-duo { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 90vw);
    z-index: 250; border-radius: 0; transform: translateX(-105%);
    transition: transform .3s var(--ease); overflow-y: auto;
  }
  .shop-sidebar.is-open { transform: none; }
  .shop-filters-open .shop-sidebar-backdrop { display: block; }
  .shop-sidebar__close { display: block; }
  .shop-filter-toggle { display: inline-flex; }
  .shop-mega-backdrop { display: none !important; }

  /* Full-height right drawer (outside header) */
  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 230;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    box-shadow: -16px 0 48px rgba(20, 24, 22, .16);
    pointer-events: none;
  }
  .mobile-drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .mobile-drawer__panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 1.1rem 1.15rem;
    background: #fff;
    border-bottom: 1px solid var(--line-2);
  }
  .mobile-drawer__head strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
  }
  .mobile-drawer__head span {
    display: block;
    margin-top: .15rem;
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
  }
  .mobile-drawer__close {
    width: 40px; height: 40px;
    border: 0; border-radius: 50%;
    background: var(--soft);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--ink-2);
  }
  .mobile-nav-search {
    display: flex;
    align-items: center;
    margin: 1rem 1.15rem 0;
    min-height: 46px;
    padding: 0 .35rem 0 1rem;
    background: var(--soft);
    border: 1px solid transparent;
    border-radius: 999px;
  }
  .mobile-nav-search:focus-within {
    background: #fff;
    border-color: var(--line);
  }
  .mobile-nav-search input {
    flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
    padding: .65rem .4rem; font-size: .92rem;
  }
  .mobile-nav-search button {
    width: 40px; height: 40px; border: 0; border-radius: 50%;
    background: transparent; color: var(--muted); display: grid; place-items: center;
  }
  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: 1rem 1rem .5rem;
  }
  .mobile-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    padding: .75rem 1rem;
    border: 0;
    border-radius: 12px;
    background: none;
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }
  .mobile-drawer__link:hover,
  .mobile-drawer__link.is-active {
    background: var(--soft);
  }
  .mobile-shop__toggle .nav-dropdown__chevron { transition: transform .2s; }
  .mobile-shop.is-open .mobile-shop__toggle .nav-dropdown__chevron { transform: rotate(180deg); }
  .mobile-shop__panel {
    display: grid;
    gap: .35rem;
    padding: .15rem 0 .5rem;
  }
  .mobile-shop__panel[hidden] { display: none; }
  .mobile-shop__group {
    display: grid;
    gap: .05rem;
    padding: .35rem .55rem .45rem;
    border-radius: 12px;
    background: var(--soft);
  }
  .mobile-shop__group > a {
    display: block;
    padding: .55rem .45rem;
    font-weight: 700;
    color: var(--ink);
    border-radius: 8px;
  }
  .mobile-shop__child {
    font-weight: 500 !important;
    color: var(--ink-2) !important;
    padding-left: .9rem !important;
  }
  .mobile-shop__all {
    display: block;
    margin-top: .25rem;
    padding: .7rem 1rem;
    border-radius: 12px;
    background: var(--ink);
    color: #fff !important;
    font-weight: 700;
    text-align: center;
  }
  .mobile-nav-contacts {
    display: grid;
    gap: .45rem;
    margin: .5rem 1.15rem 0;
    padding: 1rem 0 0;
    border-top: 1px solid var(--line-2);
  }
  .mobile-nav-contacts__label {
    margin: 0 0 .15rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .mobile-nav-contacts a {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: .75rem .9rem;
    border-radius: 12px;
    background: var(--soft);
    color: var(--ink);
  }
  .mobile-nav-contacts span {
    font-size: .82rem;
    color: var(--muted);
  }
  .mobile-nav-contacts strong {
    font-size: .95rem;
    font-weight: 700;
  }
  .nav-auth-mobile {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin: auto 1.15rem 1.25rem;
    padding-top: 1rem;
  }
  .nav-auth-mobile .btn { width: 100%; justify-content: center; min-height: 46px; }
  .mobile-nav-backdrop { z-index: 220; }
}

@media (max-width: 768px) {
  .topbar__links { display: none; }
  .hero-slider, .hero-home { min-height: min(72vh, 560px); }
  .hero-slider__nav { width: 42px; height: 42px; }
  .hero-slider__nav--prev { left: .75rem; }
  .hero-slider__nav--next { right: .75rem; }
  .brand-logo, .brand--logo-only .brand-logo { height: 52px; max-width: 200px; }
  .product-grid, .grid-advanced { grid-template-columns: repeat(2, 1fr); gap: 1rem .75rem; }
  .product-detail { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
  .cart-item {
    grid-template-columns: 76px 1fr;
    grid-template-areas: "img details" "img actions" "total total";
  }
  .cart-item__image { grid-area: img; width: 76px; height: 76px; }
  .cart-item__details { grid-area: details; }
  .cart-item__actions { grid-area: actions; flex-direction: row; justify-content: flex-start; }
  .cart-item__total { grid-area: total; text-align: right; }
  .field-row, .contact-grid, .order-addresses, .footer-grid { grid-template-columns: 1fr; }
  .product-card__overlay { opacity: 1; transform: none; }
  .product-card__quick-actions .btn-outline { display: none; }
}

@media (max-width: 480px) {
  .trust-grid, .why-grid { grid-template-columns: 1fr; }
  .cat-photo-grid { grid-template-columns: 1fr; }
  .cat-photo { aspect-ratio: 16/10; }
  .hero-slide__actions .btn, .inspire-form .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
