:root {
  --bg: #f7f2f8;
  --card: rgba(255, 252, 255, 0.88);
  --ink: #24152f;
  --muted: #6a6076;
  --accent: #ff9d1a;
  --accent-dark: #b85a00;
  --purple: #73108b;
  --plum: #5f0f6f;
  --line: rgba(115, 16, 139, 0.14);
  --highlight: #ffd06d;
  --success: #2d6a4f;
  --warning: #b7791f;
  --danger: #a61e4d;
  --shadow: 0 20px 42px rgba(58, 14, 76, 0.12);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 208, 109, 0.28), transparent 22%),
    radial-gradient(circle at top right, rgba(115, 16, 139, 0.18), transparent 26%),
    linear-gradient(180deg, #fff8ff 0%, var(--bg) 52%, #f3ebf5 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell,
.topbar,
.section-shell,
.hero-grid,
.split-layout,
.admin-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

body[data-page="customer"] {
  padding-bottom: 88px;
}

main#home {
  padding-top: 24px;
}

.announcement-bar {
  background: linear-gradient(90deg, #3d0c52, #7d177d 52%, #c45077);
  color: rgba(255, 255, 255, 0.92);
}

.announcement-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.announcement-inner a {
  color: #fff2bf;
  font-weight: 700;
}

.topbar {
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: sticky;
  top: 10px;
  z-index: 14;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 255, 0.92);
  border: 1px solid rgba(115, 16, 139, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(58, 14, 76, 0.08);
  margin-bottom: 22px;
}

.compact-topbar {
  padding: 14px 18px;
}

.slim-topbar {
  padding: 8px 12px 8px 10px;
  flex-wrap: nowrap;
  gap: 10px;
  border-radius: 18px;
  top: 6px;
  margin-bottom: 14px;
  min-height: 56px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-lockup-mark {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(58, 14, 76, 0.18);
}

.brand-mark-sm {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 12px;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(115, 16, 139, 0.22);
}

.brand-wordmark {
  display: grid;
  line-height: 1.05;
  min-width: 0;
}

.brand-wordmark strong {
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-wordmark span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(115, 16, 139, 0.05);
  border: 1px solid rgba(115, 16, 139, 0.08);
}

.desktop-nav .nav-link {
  padding: 7px 10px;
  font-size: 0.84rem;
}

.top-utilities {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.cart-button {
  padding: 8px 12px;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-button-label {
  display: inline;
}

.cart-count-pill {
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  min-width: 22px;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  background: rgba(115, 16, 139, 0.08);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 120ms ease, top 180ms ease, bottom 180ms ease;
}

.nav-toggle-bars {
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  bottom: -6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  bottom: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: sticky;
  top: 74px;
  z-index: 13;
  margin: -8px auto 12px;
  width: min(1180px, calc(100% - 40px));
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 250, 255, 0.98);
  border: 1px solid rgba(115, 16, 139, 0.1);
  box-shadow: 0 18px 40px rgba(58, 14, 76, 0.14);
  backdrop-filter: blur(18px);
  gap: 4px;
}

.mobile-nav[data-open="true"] {
  display: grid;
}

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--ink);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  background: rgba(115, 16, 139, 0.08);
  color: var(--plum);
}

.mobile-nav-cta {
  background: linear-gradient(135deg, #63117a, #9f1d6e 55%, #ff9d1a 120%);
  color: #fff;
  text-align: center;
  margin-top: 4px;
}

.brand-block h1,
.brand-block h2,
.section-head h2,
.content-card h2,
.cart-header h3 {
  margin: 0;
}

.brand-block p,
.muted-copy,
.product-description,
.product-brand,
.status-message,
.mini-card span,
.faq-card p,
.process-card p,
.site-footer p,
.category-card p {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-nav {
  justify-content: flex-end;
  flex: 0 1 auto;
  padding: 6px;
  border-radius: 999px;
  background: rgba(115, 16, 139, 0.05);
  border: 1px solid rgba(115, 16, 139, 0.08);
  gap: 6px;
}

.brand-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 340px;
  min-width: 0;
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #4a0f63, #8a1b78 60%, #ff9d1a);
  box-shadow: 0 18px 30px rgba(115, 16, 139, 0.22);
}

.topbar .brand-block h1 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.topbar .brand-block p {
  margin: 6px 0 0;
  max-width: 42ch;
  font-size: 0.95rem;
}

.top-nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1 1 420px;
  min-width: 0;
}

.nav-link,
.primary-button,
.secondary-button,
 .icon-button,
 .ghost-button {
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-link {
  padding: 10px 14px;
  color: #514862;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.95rem;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(115, 16, 139, 0.1);
  color: var(--plum);
}

.primary-button,
.secondary-button,
.icon-button,
.ghost-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.primary-button {
  background: linear-gradient(135deg, #63117a, #9f1d6e 55%, #ff9d1a 120%);
  color: #fff;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(115, 16, 139, 0.22);
  font-weight: 700;
}

.primary-button:hover,
.secondary-button:hover,
.icon-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.secondary-button {
  background: #fff;
  color: var(--plum);
  padding: 12px 18px;
  box-shadow: inset 0 0 0 1px rgba(115, 16, 139, 0.14);
  font-weight: 700;
}

.ghost-button {
  background: rgba(115, 16, 139, 0.06);
  color: var(--plum);
  padding: 11px 16px;
  box-shadow: inset 0 0 0 1px rgba(115, 16, 139, 0.12);
}

.ghost-button.active {
  background: rgba(166, 30, 77, 0.12);
  color: var(--danger);
  box-shadow: inset 0 0 0 1px rgba(166, 30, 77, 0.16);
}

.icon-button {
  width: 42px;
  height: 42px;
  background: rgba(115, 16, 139, 0.1);
  color: var(--purple);
  font-size: 1.3rem;
}

.banner-section {
  margin-bottom: 16px;
}

.banner-carousel {
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(115, 16, 139, 0.1);
  box-shadow: var(--shadow);
}

.hero-banner-carousel {
  position: relative;
  border-radius: 28px;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  min-height: 0;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.hero-slide-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: 8px 0 8px 6px;
  gap: 12px;
  color: #fff;
}

.hero-slide-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  max-width: 22ch;
}

.hero-slide-copy p {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.hero-copy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-copy-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-slide-copy .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hero-slide-copy .hero-actions {
  margin-top: 8px;
}

.hero-slide-media {
  position: relative;
  min-height: 0;
  display: grid;
  justify-items: end;
  align-items: center;
  padding: 0;
}

.hero-media-frame {
  width: min(100%, 450px);
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 40px rgba(22, 8, 29, 0.2);
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: translateZ(0);
}

.hero-slide-plum {
  background: linear-gradient(120deg, #3a0c52 0%, #5f0f6f 38%, #8c1b7a 68%, #c45378 100%);
}

.hero-slide-gold {
  background: linear-gradient(120deg, #3f0f57 0%, #7a2a6b 40%, #c36a35 72%, #ffb24a 100%);
}

.hero-slide-slate {
  background: linear-gradient(120deg, #1f2a44 0%, #3f2163 38%, #8f2a6d 72%, #ff7b3a 100%);
}

.hero-slide-rose {
  background: linear-gradient(120deg, #4d0e66 0%, #8a1e78 40%, #c44486 72%, #ffa466 100%);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.05) 34%, rgba(0, 0, 0, 0) 64%);
}

@media (max-width: 860px) {
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 16px;
    padding: 16px;
  }

  .hero-slide-media {
    order: -1;
    min-height: 0;
    justify-items: stretch;
  }

  .hero-media-frame {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 22px;
  }

  .hero-slide-copy {
    padding: 0 6px 8px;
    gap: 10px;
  }

  .hero-slide::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 30%);
  }
}

@media (max-width: 640px) {
  .hero-slide-copy {
    padding: 0 2px 8px;
  }

  .hero-slide-copy h2 {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .hero-slide-copy p {
    font-size: 0.9rem;
  }

  .hero-copy-pill {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .hero-media-frame {
    aspect-ratio: 1 / 1;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    padding: 9px 12px;
    font-size: 0.84rem;
  }
}

.banner-track {
  display: flex;
  transition: transform 360ms ease;
}

.banner-slide {
  min-width: 100%;
  padding: 0;
}

.banner-slide-plum {
  background: linear-gradient(135deg, #3f0f57, #771576 60%, #c5526c);
  color: #fff;
}

.banner-slide-gold {
  background: linear-gradient(135deg, #fff6e4, #fffdf8 48%, #fbe2c9);
}

.banner-slide-slate {
  background: linear-gradient(135deg, #eff6ff, #ffffff 42%, #f5ecff);
}

.banner-slide-rose {
  background: linear-gradient(135deg, #fff4fb, #fffefe 42%, #ffe7d5);
}

.banner-slide .eyebrow,
.banner-slide p {
  color: inherit;
}

.banner-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.banner-points {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px;
}

.banner-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.banner-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 700;
}

.banner-slide-plum .banner-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.banner-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.52fr);
  gap: 12px;
}

.banner-showcase-wide {
  grid-template-columns: 1fr;
}

.banner-showcase-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(58, 14, 76, 0.14);
}

.banner-slide-plum .banner-showcase-card {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.banner-showcase-card img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: contain;
}

.banner-showcase-card.small img {
  height: 132px;
}

.banner-showcase-card.wide img {
  height: 210px;
}

.banner-showcase-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.banner-showcase-card span {
  font-size: 0.88rem;
  opacity: 0.82;
}

.banner-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 18px;
  background: rgba(255, 255, 255, 0.72);
}

.banner-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(115, 16, 139, 0.2);
  cursor: pointer;
}

.banner-dot.active {
  width: 28px;
  background: linear-gradient(135deg, var(--purple), #ff9d1a);
}

.banner-arrow {
  background: rgba(115, 16, 139, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  padding: 8px 0 24px;
}

.hero-panel,
.content-card,
.product-card,
.cart-panel,
.admin-products article,
.stack-item,
.stat-card {
  background: var(--card);
  border: 1px solid rgba(231, 222, 209, 0.9);
  box-shadow: var(--shadow);
}

.content-card,
.process-card,
.faq-card,
.category-card,
.mini-card,
.product-card,
.stat-card {
  position: relative;
}

.content-card::before,
.process-card::before,
.faq-card::before,
.category-card::before,
.mini-card::before,
.product-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-panel,
.content-card,
.section-shell,
.cart-panel {
  border-radius: 26px;
}

.hero-panel {
  padding: 28px;
}

.accent-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.3), transparent 24%),
    linear-gradient(135deg, rgba(95, 15, 111, 0.98), rgba(115, 16, 139, 0.95) 55%, rgba(196, 74, 121, 0.9)),
    var(--card);
  color: #fff;
}

.accent-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  max-width: 10ch;
}

.accent-panel .eyebrow,
.accent-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-primary {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.stats-panel {
  display: grid;
  gap: 14px;
}

.stat-card {
  border-radius: 22px;
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 8px auto 20px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(115, 16, 139, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.solution-card h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.solution-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(115, 16, 139, 0.08);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.84rem;
}

.mini-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(115, 16, 139, 0.1);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.mini-card strong,
.category-card strong {
  display: block;
  margin-bottom: 6px;
}

.section-shell {
  padding: 18px 0 24px;
}

.section-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}

.compact-head {
  margin-bottom: 12px;
}

.search-panel-shell {
  padding-top: 4px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
  gap: 18px;
  padding: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(249, 241, 252, 0.94));
  border: 1px solid rgba(115, 16, 139, 0.1);
  box-shadow: var(--shadow);
}

.search-panel-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.search-panel-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.search-panel-ui {
  display: grid;
  gap: 14px;
  align-content: start;
}

.smart-search-box {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(115, 16, 139, 0.12);
  box-shadow: 0 14px 30px rgba(58, 14, 76, 0.08);
}

.smart-search-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(115, 16, 139, 0.08);
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 700;
}

.smart-search-box input {
  border: 0;
  padding: 8px 2px;
  background: transparent;
  box-shadow: none;
}

.smart-search-box input:focus {
  outline: none;
}

.smart-clear-button {
  padding: 8px 12px;
  font-size: 0.84rem;
}

.search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(115, 16, 139, 0.12);
  box-shadow: 0 20px 40px rgba(58, 14, 76, 0.14);
  z-index: 16;
}

.search-suggestion {
  display: grid;
  gap: 4px;
  text-align: left;
  padding: 12px 14px;
  border-radius: 18px;
  border: 0;
  background: rgba(115, 16, 139, 0.04);
  cursor: pointer;
  color: var(--ink);
  font: inherit;
}

.search-suggestion:hover {
  background: rgba(115, 16, 139, 0.1);
}

.search-suggestion strong {
  font-size: 0.98rem;
}

.search-suggestion span {
  color: var(--muted);
  font-size: 0.86rem;
}

.filters-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.advanced-filters {
  align-items: center;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}

.filters-inline input,
.filters-inline select {
  min-width: 180px;
}

.brand-explorer-panel {
  margin-top: 14px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(115, 16, 139, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 240, 251, 0.96));
  box-shadow: var(--shadow);
}

.filter-status {
  margin: -6px 0 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(115, 16, 139, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.chip.active {
  background: linear-gradient(135deg, var(--purple), #8d1e6f);
  color: #fff;
}

.static-chip {
  cursor: default;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
}

.gallery-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(115, 16, 139, 0.12);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.spotlight-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(115, 16, 139, 0.12);
  box-shadow: var(--shadow);
}

.spotlight-media-frame {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  padding: 10px;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(232, 241, 248, 0.96));
}

.spotlight-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.spotlight-copy {
  display: grid;
  gap: 6px;
}

.spotlight-range,
.spotlight-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.spotlight-name {
  font-size: 1.12rem;
  line-height: 1.3;
}

.gallery-image-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 10px;
  background: linear-gradient(180deg, rgba(241, 246, 250, 0.94), rgba(221, 241, 255, 0.8));
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-copy {
  display: grid;
  gap: 6px;
}

.gallery-category,
.gallery-code {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-name {
  font-size: 1.05rem;
  line-height: 1.35;
}

.gallery-brand {
  color: var(--plum);
  font-weight: 700;
  font-size: 0.86rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.brand-grid-tight {
  margin-top: 12px;
}

.brand-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(115, 16, 139, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.brand-card-visual-link {
  display: block;
}

.brand-card-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(74, 15, 99, 0.98), rgba(138, 27, 120, 0.9) 58%, rgba(255, 157, 26, 0.82));
}

.brand-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  padding: 0;
}

.brand-card-image-cover {
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.brand-card-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.brand-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 12, 24, 0.62);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.brand-card-mark-large {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.brand-card-top,
.brand-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.brand-card-mark {
  min-width: 64px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #4a0f63, #8a1b78 60%, #ff9d1a);
}

.brand-card-copy {
  display: grid;
  gap: 8px;
}

.brand-card-title {
  font-size: 1.25rem;
  line-height: 1.25;
}

.brand-chip-row {
  gap: 8px;
}

.brand-subcategory-row {
  gap: 8px;
}

.brand-card-chip-block {
  display: grid;
  gap: 8px;
}

.brand-chip-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand-card-pdf {
  font-size: 0.88rem;
}

.brand-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.brand-card-filter,
.brand-card-cta {
  white-space: nowrap;
}

.brand-theme-gold .brand-card-mark {
  background: linear-gradient(135deg, #6b1d55, #c76532 65%, #f4b431);
}

.brand-theme-rose .brand-card-mark {
  background: linear-gradient(135deg, #7e1b77, #c94e80 65%, #ffb36b);
}

.brand-theme-slate .brand-card-mark {
  background: linear-gradient(135deg, #2d3d57, #6b2f59 65%, #ff8e42);
}

.category-card {
  border: 1px solid rgba(115, 16, 139, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.category-card-top,
.category-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.category-card-bottom {
  margin-top: 16px;
}

.category-count {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(115, 16, 139, 0.08);
  color: var(--purple);
  font-weight: 700;
}

.category-link {
  border: 0;
  background: rgba(255, 157, 26, 0.14);
  color: var(--accent-dark);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.product-grid,
.admin-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.product-card,
.admin-products article,
.stack-item {
  border-radius: 24px;
  padding: 18px;
}

.product-visual-link {
  display: block;
  margin-bottom: 14px;
}

.product-visual-frame,
.detail-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 238, 247, 0.95));
  border: 1px solid rgba(115, 16, 139, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.product-visual-frame {
  aspect-ratio: 4 / 3;
  padding: 10px;
}

.detail-visual-frame {
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin: 0 auto 18px;
  margin-bottom: 18px;
  padding: 18px;
}

.product-visual-frame.module-media,
.gallery-image-frame.module-media,
.detail-visual-frame.module-media {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(229, 239, 248, 0.96));
}

.product-visual-frame.module-media,
.gallery-image-frame.module-media {
  aspect-ratio: 1 / 1;
}

.product-visual-frame.product-photo-media,
.gallery-image-frame.product-photo-media,
.detail-visual-frame.product-photo-media {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 250, 0.96));
}

.product-visual,
.detail-visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  image-rendering: auto;
}

.source-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 8px 0 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(115, 16, 139, 0.05);
  border: 1px solid rgba(115, 16, 139, 0.08);
}

.featured-grid .product-card {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 241, 250, 0.92));
}

.product-top,
.product-bottom,
.summary-row,
.stack-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.product-category,
.product-stock,
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  background: rgba(115, 16, 139, 0.08);
}

.product-stock.in-stock,
.pill.success {
  background: rgba(45, 106, 79, 0.14);
  color: var(--success);
}

.product-stock.low-stock,
.pill.warning {
  background: rgba(183, 121, 31, 0.14);
  color: var(--warning);
}

.product-stock.out-of-stock,
.pill.danger {
  background: rgba(166, 30, 77, 0.14);
  color: var(--danger);
}

.product-title {
  margin: 16px 0 8px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.product-brandline {
  margin: 12px 0 4px;
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-subcategory {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-brand {
  font-weight: 700;
  margin: 0 0 10px;
}

.cart-meta {
  margin: 4px 0 0;
  font-size: 0.86rem;
}

.empty-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.spec-list,
.clean-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.spec-list li,
.clean-list li {
  margin-bottom: 8px;
}

.product-bottom {
  margin-top: 18px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.product-price {
  display: block;
  font-size: 1.35rem;
}

.product-mrp {
  color: var(--muted);
  text-decoration: line-through;
}

.product-mrp:empty {
  display: none;
}

.split-layout,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 40px;
  margin-top: 10px;
}

.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.process-card,
.faq-card {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(115, 16, 139, 0.1);
  box-shadow: var(--shadow);
}

.process-card h3,
.faq-card h3 {
  margin: 12px 0 8px;
}

.step-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 157, 26, 0.2), rgba(255, 208, 109, 0.3));
  color: var(--accent-dark);
  font-weight: 700;
}

.cta-section {
  padding-bottom: 12px;
  margin-top: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  padding: 16px 0 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 18px;
  margin-bottom: 18px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(115, 16, 139, 0.1);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.brand-hero-has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--brand-hero-image);
  background-size: cover;
  background-position: center top;
  opacity: 0.2;
  z-index: -1;
  filter: saturate(1.1) contrast(1.02);
}

.brand-theme-plum {
  background: linear-gradient(135deg, rgba(63, 15, 87, 0.98), rgba(115, 16, 139, 0.94) 60%, rgba(196, 74, 121, 0.9));
}

.brand-theme-gold {
  background: linear-gradient(135deg, rgba(90, 24, 76, 0.98), rgba(181, 96, 40, 0.92) 60%, rgba(248, 175, 44, 0.88));
}

.brand-theme-rose {
  background: linear-gradient(135deg, rgba(94, 16, 98, 0.98), rgba(183, 64, 133, 0.92) 60%, rgba(255, 160, 96, 0.9));
}

.brand-theme-slate {
  background: linear-gradient(135deg, rgba(35, 47, 70, 0.98), rgba(113, 39, 88, 0.92) 60%, rgba(255, 130, 68, 0.9));
}

.brand-hero .eyebrow,
.brand-hero p,
.brand-hero .mini-card span {
  color: rgba(255, 255, 255, 0.86);
}

.brand-hero-copy,
.brand-hero-aside {
  display: grid;
  gap: 14px;
}

.brand-hero-aside .mini-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.subcategory-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(115, 16, 139, 0.16);
}

.subcategory-row[hidden] {
  display: none;
}

.subcategory-chip {
  background: rgba(255, 157, 26, 0.08);
  color: var(--accent-dark);
  border: 1px solid rgba(255, 157, 26, 0.2);
  padding: 8px 12px;
  font-size: 0.86rem;
}

.subcategory-chip.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--plum) 110%);
  color: #fff;
  border-color: transparent;
}

.detail-summary-card {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 250, 0.94));
}

.detail-badges,
.detail-actions,
.detail-price-row,
.detail-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-badges {
  margin-bottom: 14px;
}

.detail-summary-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0;
}

.detail-meta-item {
  border-radius: 20px;
  padding: 16px;
  background: rgba(115, 16, 139, 0.05);
}

.detail-meta-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-price-row {
  justify-content: space-between;
  align-items: flex-end;
}

.detail-price {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  margin-top: 4px;
}

.detail-side-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.cta-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 208, 109, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(58, 13, 80, 0.96), rgba(115, 16, 139, 0.95) 55%, rgba(196, 74, 121, 0.92));
  color: #fff;
  border-radius: 30px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  box-shadow: 0 24px 54px rgba(58, 14, 76, 0.18);
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  display: block;
  padding: 10px 0 28px;
  margin-top: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 24px 0 8px;
  border-top: 1px solid rgba(115, 16, 139, 0.08);
}

.footer-brand,
.footer-column {
  display: grid;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.footer-column .footer-links {
  gap: 10px;
}

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 12;
  background: rgba(35, 17, 47, 0.94);
  color: #fff;
  border-radius: 20px;
  padding: 10px;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  box-shadow: 0 18px 40px rgba(24, 10, 36, 0.22);
}

.mobile-cta-bar a,
.mobile-cta-bar button {
  border: 0;
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.cart-panel {
  position: fixed;
  top: 20px;
  right: 20px;
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 0;
  z-index: 20;
  background: #f7f0fa;
  border: 1px solid rgba(115, 16, 139, 0.16);
  border-radius: 28px;
  box-shadow: 0 26px 52px rgba(32, 10, 44, 0.24);
}

.hidden {
  display: none;
}

.cart-brand-banner,
.cart-header,
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.cart-brand-banner {
  align-items: flex-start;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, #3f0f57, #7a1c75 54%, #cf6d45 110%);
  color: #fff;
}

.cart-brand-lockup {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cart-brand-logo {
  width: 52px;
  height: 52px;
  min-width: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.cart-banner-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cart-brand-banner h3 {
  margin: 0;
}

.cart-brand-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  max-width: 28ch;
}

.cart-brand-banner .icon-button {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cart-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 0;
}

.cart-item {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 14px;
  background: #fff;
}

.checkout-form,
.admin-form {
  display: grid;
  gap: 12px;
}

.cart-action-stack {
  display: grid;
  gap: 10px;
}

.cart-secondary-action {
  background: rgba(115, 16, 139, 0.08);
}

.cart-primary-action {
  background: linear-gradient(135deg, var(--purple), #8d1e6f 62%, #ff9d1a 120%);
}

.whatsapp-draft-button {
  background: #fff;
  border: 1px solid rgba(115, 16, 139, 0.12);
}

.full-width {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.disabled-link {
  pointer-events: none;
  opacity: 0.5;
}

.status-message {
  min-height: 1.2em;
  margin-top: 10px;
}

.admin-main {
  padding-bottom: 48px;
}

.admin-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-gate-card {
  width: min(540px, 100%);
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 250, 0.94));
  border: 1px solid rgba(115, 16, 139, 0.08);
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.admin-stats-extended {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-stat {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.26), transparent 35%),
    linear-gradient(135deg, rgba(115, 16, 139, 0.08), rgba(196, 74, 121, 0.08)),
    var(--card);
}

.admin-grid-wide {
  margin-bottom: 18px;
}

.mini-stats-grid,
.admin-funnel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.funnel-step {
  border-radius: 18px;
  padding: 16px;
  background: rgba(115, 16, 139, 0.05);
  border: 1px solid rgba(115, 16, 139, 0.08);
}

.funnel-step span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.funnel-step strong {
  font-size: 1.4rem;
}

.stack-list {
  display: grid;
  gap: 12px;
}

.stack-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.admin-product-media {
  margin: 14px 0 10px;
}

.admin-product-thumb,
.admin-image-preview {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 18px;
  padding: 12px;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 109, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(229, 239, 248, 0.96));
  border: 1px solid rgba(115, 16, 139, 0.08);
}

.admin-image-preview-wrap {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .search-panel,
  .hero-grid,
  .split-layout,
  .admin-grid,
  .stats-grid,
  .spotlight-grid,
  .trust-strip,
  .solution-grid,
  .process-grid,
  .faq-grid,
  .detail-grid,
  .brand-hero {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid,
  .admin-stats-extended,
  .mini-stats-grid,
  .admin-funnel-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .cart-button-label {
    display: none;
  }

  .slim-topbar {
    padding: 7px 9px 7px 9px;
    min-height: 56px;
    top: 6px;
    margin-bottom: 10px;
  }

  .brand-wordmark span {
    display: none;
  }

  .brand-wordmark strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .announcement-inner,
  .site-shell,
  .topbar,
  .section-shell,
  .hero-grid,
  .split-layout,
  .admin-main {
    width: min(100% - 24px, 1180px);
  }

  .announcement-inner {
    padding: 8px 0;
    font-size: 0.82rem;
    gap: 10px;
  }

  .announcement-inner span {
    flex: 1;
  }

  .accent-panel h2 {
    max-width: none;
  }

  .primary-button,
  .secondary-button {
    text-align: center;
  }

  .product-actions {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .slim-topbar {
    padding: 6px 8px 6px 8px;
    min-height: 48px;
    border-radius: 14px;
    gap: 6px;
  }

  .brand-lockup-mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 10px;
  }

  .brand-wordmark strong {
    font-size: 0.88rem;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .banner-slide {
    padding: 0;
  }

  .search-panel {
    padding: 12px;
    gap: 12px;
  }

  .search-panel-copy h2 {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .search-panel-copy .muted-copy {
    display: none;
  }

  .smart-search-box {
    grid-template-columns: auto 1fr auto;
    padding: 5px 7px;
    gap: 5px;
  }

  .smart-search-icon {
    width: 26px;
    height: 26px;
    font-size: 0.82rem;
  }

  .smart-search-box input {
    padding: 7px 2px;
    font-size: 0.9rem;
  }

  .smart-clear-button {
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .filters-inline {
    gap: 8px;
  }

  .filters-inline select {
    min-width: 0;
    padding: 8px 9px;
    font-size: 0.86rem;
    flex: 1 1 calc(50% - 4px);
  }

  .advanced-filters button.ghost-button {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .banner-showcase {
    grid-template-columns: 1fr;
  }

  .banner-showcase-card img,
  .banner-showcase-card.small img,
  .banner-showcase-card.wide img {
    height: 150px;
  }

  .spotlight-card {
    padding: 14px;
  }

  .brand-explorer-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .brand-card-visual {
    min-height: 170px;
    aspect-ratio: 5 / 4;
  }

  .banner-controls {
    padding: 10px 12px 14px;
  }

  .cart-panel {
    right: 10px;
    left: 10px;
    width: auto;
    top: 12px;
    max-height: calc(100vh - 96px);
  }

  .cart-brand-banner {
    padding: 14px;
  }

  .cart-brand-logo {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .cart-body {
    padding: 14px;
  }

  .mobile-cta-bar {
    display: grid;
  }

  body[data-page="customer"] {
    padding-bottom: 92px;
  }

  .product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-actions .ghost-button,
  .product-actions .primary-button,
  .product-actions .secondary-button {
    padding: 10px 12px;
    font-size: 0.84rem;
    width: 100%;
    text-align: center;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card {
    padding: 16px;
  }

  .stat-card strong {
    font-size: 1.4rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-shell {
    padding: 12px 0 18px;
  }

  .section-head h2 {
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .hero-panel {
    padding: 20px;
  }

  .accent-panel h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
