:root {
  --coral: #ff5c4d;
  --coral-deep: #e43d2e;
  --teal: #12b5a0;
  --teal-deep: #0d8f7e;
  --violet: #7b5cff;
  --sun: #ffc53d;
  --pink: #ff5c8a;
  --ink: #141821;
  --muted: #5b6472;
  --line: #e4e8f0;
  --paper: #f5f7fb;
  --paper-2: #eef1f8;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(20, 24, 33, 0.1);
  --radius: 20px;
  --font-display: 'Sora', 'Avenir Next', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 40% at 0% -5%, rgba(255, 92, 77, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(123, 92, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 40% 30% at 70% 20%, rgba(18, 181, 160, 0.1), transparent 45%),
    linear-gradient(180deg, #fbfcff 0%, var(--paper) 45%, #eef3ff 100%);
  min-height: 100vh;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--coral); }
h1, h2, h3, .brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
button, input, textarea, select { font: inherit; }
.muted { color: var(--muted); margin: 0.35rem 0 0; }
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-family: var(--font-body);
}
.eyebrow-light { color: rgba(255,255,255,0.82); }

.container { width: min(1200px, calc(100% - 2rem)); margin-inline: auto; }

.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal.is-visible {
    animation: revealUp 0.55s ease both;
  }
}
@keyframes revealUp {
  from { opacity: 0.35; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.promo-bar {
  background: linear-gradient(90deg, #7b5cff, #ff5c8a 45%, #ff8a3d);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}
.promo-bar-inner {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0; flex-wrap: wrap;
}
.promo-bar a { color: #fff7c8; text-decoration: underline; text-underline-offset: 2px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 255, 0.92);
  border-bottom: 1px solid rgba(228, 232, 240, 0.95);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.25rem; padding: 0.85rem 0;
}
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--white); flex-direction: column;
  justify-content: center; gap: 5px; padding: 0 11px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand img { width: 48px; height: 48px; border-radius: 14px; box-shadow: 0 8px 18px rgba(255, 92, 77, 0.25); }
.brand-text { font-size: 1.4rem; font-weight: 800; }
.brand-text span {
  background: linear-gradient(120deg, var(--coral), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.search-form {
  display: flex; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; overflow: hidden; max-width: 540px; width: 100%;
  margin-inline: auto; box-shadow: 0 10px 24px rgba(20,24,33,0.05);
}
.search-form input { border: 0; padding: 0.78rem 1.15rem; flex: 1; background: transparent; outline: none; }
.search-form button, .btn {
  border: 0; cursor: pointer; font: inherit; font-weight: 700;
  border-radius: 999px; padding: 0.75rem 1.3rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.search-form button { background: var(--ink); color: white; border-radius: 0; padding-inline: 1.2rem; }
.btn-primary {
  background: linear-gradient(135deg, #ff6a4d, #ff3d6e);
  color: white; box-shadow: 0 14px 30px rgba(255, 61, 110, 0.28);
}
.btn-primary:hover { color: white; transform: translateY(-2px); }
.btn-secondary { background: linear-gradient(135deg, #12b5a0, #0d8f7e); color: white; }
.btn-secondary:hover { color: white; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost-light {
  background: rgba(255,255,255,0.12); color: white;
  border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(8px);
}
.header-actions { display: flex; align-items: center; gap: 0.65rem; }
.account-menu { position: relative; }
.account-chip, .cart-chip {
  display: flex; flex-direction: column; justify-content: center; min-height: 46px;
  padding: 0.4rem 0.9rem; border-radius: 14px; border: 1px solid var(--line);
  background: var(--white); color: var(--ink); line-height: 1.15;
}
.account-chip-label { font-weight: 700; font-size: 0.92rem; }
.account-chip-sub { font-size: 0.72rem; color: var(--muted); }
.account-chip:hover, .cart-chip:hover { color: var(--ink); border-color: #cfd6ea; }
.cart-chip {
  flex-direction: row; align-items: center; gap: 0.45rem;
  background: linear-gradient(135deg, #141821, #2a3348); color: white; border-color: transparent;
}
.cart-chip strong {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px;
  border-radius: 999px; background: var(--coral); font-size: 0.78rem;
}
.cart-chip:hover { color: white; }
.account-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 8px); min-width: 200px;
  background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 0.4rem; z-index: 20;
}
.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown { display: grid; }
.account-dropdown a, .account-dropdown button {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  padding: 0.6rem 0.75rem; border-radius: 10px; color: var(--ink); font: inherit; cursor: pointer;
}
.account-dropdown a:hover, .account-dropdown button:hover { background: var(--paper-2); }
.cat-nav { border-top: 1px solid var(--line); background: rgba(255,255,255,0.75); }
.cat-nav-inner { display: flex; gap: 1.35rem; overflow-x: auto; padding: 0.6rem 0; }
.cat-nav a { color: var(--muted); font-weight: 700; font-size: 0.92rem; white-space: nowrap; }
.cat-nav a:hover, .cat-nav a.is-active { color: var(--ink); }
.cat-nav a.is-active::after {
  content: ""; display: block; height: 3px; margin-top: 0.35rem;
  border-radius: 99px; background: linear-gradient(90deg, var(--coral), var(--violet));
}

.nav-drawer { position: fixed; inset: 0; background: rgba(20,24,33,0.45); z-index: 80; }
.nav-drawer-panel {
  width: min(340px, 88vw); height: 100%; background: white; padding: 1.25rem;
  display: grid; align-content: start; gap: 0.35rem;
}
.nav-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.nav-drawer-head button { border: 0; background: none; font-size: 1.6rem; cursor: pointer; }
.nav-drawer a, .nav-drawer .btn { display: block; padding: 0.55rem 0; color: var(--ink); font-weight: 600; }
.nav-drawer-user { color: var(--muted); margin: 0 0 0.5rem; }
.nav-drawer .search-form { max-width: none; margin: 0.35rem 0 0.85rem; }

.flash-wrap { padding-top: 1rem; }
.alert { padding: 0.85rem 1rem; border-radius: 12px; margin-bottom: 0.75rem; border: 1px solid transparent; }
.alert-success { background: #e6faf5; color: var(--teal-deep); border-color: #b7eee3; }
.alert-error { background: #ffe8e5; color: var(--coral-deep); border-color: #ffcfc8; }

.marketplace-hero {
  position: relative; overflow: hidden; color: #fff; padding: 4.8rem 0 4.2rem;
  background:
    linear-gradient(120deg, rgba(20,24,33,0.88) 0%, rgba(123,92,255,0.72) 42%, rgba(255,92,77,0.78) 100%),
    linear-gradient(135deg, #1d2440, #7b5cff 40%, #ff5c4d);
}
.marketplace-hero h1,
.marketplace-hero p,
.marketplace-hero .eyebrow,
.marketplace-hero a { color: #fff; }
.hero-bloom, .hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-bloom {
  inset: auto -6% -30% auto; width: min(480px, 68vw); height: min(480px, 68vw);
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 68%);
  animation: bloomFloat 8s ease-in-out infinite;
}
.hero-orb-a {
  width: 180px; height: 180px; left: 8%; top: 18%;
  background: radial-gradient(circle, rgba(255,197,61,0.45), transparent 70%);
  animation: bloomFloat 6s ease-in-out infinite reverse;
}
.hero-orb-b {
  width: 120px; height: 120px; left: 42%; bottom: 10%;
  background: radial-gradient(circle, rgba(46,211,183,0.35), transparent 70%);
}
@keyframes bloomFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}
.hero-inner {
  position: relative; width: min(1200px, calc(100% - 2rem)); margin-inline: auto;
  max-width: 760px; animation: heroIn 0.85s ease both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-brand-mark {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px; padding: 0.35rem 0.85rem 0.35rem 0.35rem; margin-bottom: 1rem;
  font-weight: 700; font-size: 0.86rem;
}
.hero-brand-mark img { width: 34px; height: 34px; border-radius: 10px; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.2rem); margin: 0 0 0.85rem; font-weight: 800; }
.hero p { margin: 0 0 1.5rem; opacity: 0.94; font-size: 1.12rem; max-width: 42ch; font-weight: 500; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.35rem; }
.hero-pills span {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px; padding: 0.35rem 0.75rem; font-size: 0.82rem; font-weight: 700;
}

.trust-strip { background: rgba(255,255,255,0.82); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.2rem 0; }
.trust-grid div { display: grid; gap: 0.15rem; }
.trust-grid strong { font-family: var(--font-display); font-size: 0.98rem; }
.trust-grid span { color: var(--muted); font-size: 0.86rem; }

.category-tiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.9rem;
}
.category-tile {
  display: grid; gap: 0.25rem; padding: 1.2rem 1rem; border-radius: 18px; color: #fff;
  min-height: 110px; align-content: end; box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}
.category-tile:hover { transform: translateY(-4px); color: #fff; }
.category-tile strong { font-family: var(--font-display); font-size: 1.15rem; }
.category-tile span { opacity: 0.88; font-size: 0.84rem; font-weight: 600; }
.tile-coral { background: linear-gradient(145deg, #ff7a59, #ff3d6e); }
.tile-teal { background: linear-gradient(145deg, #2ed3b7, #0d8f7e); }
.tile-violet { background: linear-gradient(145deg, #9b7bff, #5b3fd6); }
.tile-sun { background: linear-gradient(145deg, #ffd166, #ff8a3d); color: #2a1b0a !important; }
.tile-sun:hover { color: #2a1b0a !important; }
.tile-pink { background: linear-gradient(145deg, #ff7ab8, #ff3d8a); }
.tile-mint { background: linear-gradient(145deg, #7bf1a8, #12b5a0); }

.offers { margin: 2.5rem auto 1rem; width: min(1200px, calc(100% - 2rem)); }
.carousel {
  position: relative; border-radius: calc(var(--radius) + 2px); overflow: hidden;
  min-height: 260px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.carousel-slide { display: none; min-height: 260px; animation: fadeIn 0.45s ease; }
.carousel-slide.active { display: grid; grid-template-columns: 1.15fr 1fr; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.carousel-slide img, .carousel-fallback { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.carousel-fallback { background: linear-gradient(135deg, #7b5cff, #ff5c4d 55%, #ffc53d); }
.carousel-copy {
  padding: 2rem; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(160deg, #ffffff, #f4f7ff);
}
.carousel-copy h3 { margin: 0 0 0.45rem; font-size: 1.85rem; }
.carousel-copy p { margin: 0 0 1rem; color: var(--muted); }
.carousel-dots { display: flex; gap: 0.4rem; justify-content: center; margin-top: 0.9rem; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(20,24,33,0.2); cursor: pointer; }
.carousel-dots button.active { background: var(--coral); transform: scale(1.25); }
.carousel-arrows {
  position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center;
  pointer-events: none; padding: 0 0.7rem;
}
.carousel-arrows button {
  pointer-events: auto; width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,0.95); cursor: pointer; font-size: 1.2rem; box-shadow: var(--shadow);
}

.section { padding: 2.1rem 0 3.3rem; }
.section-head, .page-head {
  display: flex; justify-content: space-between; align-items: end; gap: 1rem;
  margin-bottom: 1.4rem; flex-wrap: wrap;
}
.section-head h1, .section-head h2, .page-head h1 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.35rem); }
.breadcrumb { display: flex; gap: 0.45rem; color: var(--muted); font-size: 0.88rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.2rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid transparent; color: var(--ink); display: flex; flex-direction: column;
  box-shadow: 0 12px 28px rgba(20,24,33,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow); color: var(--ink); border-color: #d7def2;
}
.product-card .thumb {
  aspect-ratio: 1; background: linear-gradient(160deg, #eef2ff, #ffe8f0); overflow: hidden; position: relative;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .body { padding: 1rem 1rem 1.15rem; display: grid; gap: 0.28rem; }
.product-card h3 { margin: 0; font-size: 1.05rem; }
.price { font-weight: 800; color: var(--ink); display: flex; gap: 0.45rem; align-items: baseline; }
.price s { color: var(--muted); font-weight: 500; }
.price-lg { font-size: 1.65rem; margin: 0.4rem 0 0.2rem; font-family: var(--font-display); }
.badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: linear-gradient(135deg, #ffe08a, #ff8a3d); color: #2a1b0a;
  font-size: 0.72rem; font-weight: 800; padding: 0.28rem 0.6rem; border-radius: 999px;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.card-cta {
  font-size: 0.84rem; font-weight: 800; color: var(--violet);
  opacity: 0; transform: translateY(4px); transition: opacity 0.2s ease, transform 0.2s ease;
}
.product-card:hover .card-cta { opacity: 1; transform: none; }

.how-section { padding-top: 0.4rem; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.how-grid article {
  background: rgba(255,255,255,0.92); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-grid span {
  color: var(--coral); font-family: var(--font-display); font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.08em;
}
.how-grid h3 { margin: 0.5rem 0; font-size: 1.2rem; }
.how-grid p { margin: 0; color: var(--muted); }

.pdp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: start; }
.gallery-main {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white);
  aspect-ratio: 1; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-empty { display: grid; place-items: center; height: 100%; background: var(--paper-2); color: var(--muted); }
.gallery-thumbs { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 0.75rem; }
.gallery-thumbs button {
  width: 72px; height: 72px; padding: 0; border: 2px solid transparent;
  border-radius: 12px; overflow: hidden; cursor: pointer; background: var(--white);
}
.gallery-thumbs button.active { border-color: var(--coral); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.zoom-lens {
  display: none; position: absolute; border: 2px solid rgba(255,255,255,0.8);
  width: 140px; height: 140px; border-radius: 8px; pointer-events: none;
  background-repeat: no-repeat; box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index: 5;
}
.gallery-main.zoomable:hover .zoom-lens { display: block; }
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(12,16,28,0.92);
  z-index: 100; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; background: white; border: 0;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
}
.pdp-info h1 { margin: 0 0 0.35rem; font-size: clamp(2rem, 4vw, 2.8rem); }
.label-strong { font-weight: 700; margin: 1rem 0 0.4rem; }
.variant-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1rem; }
.variant-list label {
  border: 1px solid var(--line); padding: 0.5rem 0.9rem; border-radius: 999px;
  cursor: pointer; background: white;
}
.variant-list input { display: none; }
.variant-list label:has(input:checked) { border-color: var(--violet); background: #f1edff; }
.qty-row { display: flex; gap: 0.75rem; align-items: end; margin-bottom: 1rem; }
.qty-row label { display: grid; gap: 0.3rem; font-weight: 600; }
.qty-row input, .qty-input {
  width: 88px; padding: 0.65rem 0.7rem; border: 1px solid var(--line); border-radius: 12px; background: white;
}
.pdp-assurances { padding-left: 1.1rem; color: var(--muted); }
.meta-line { color: var(--muted); margin: 0.35rem 0; }
.rich-content { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.rich-content ul { padding-left: 1.2rem; }

.auth-page { padding: 2.75rem 0 3.75rem; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.auth-intro h1 { margin: 0 0 0.75rem; font-size: clamp(2.2rem, 4vw, 3.1rem); }
.auth-points { color: var(--muted); padding-left: 1.15rem; }
.auth-card { max-width: 480px; margin-left: auto; width: 100%; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-bottom: 1.15rem; }
.auth-tabs a {
  text-align: center; padding: 0.7rem; border-radius: 12px; border: 1px solid var(--line);
  color: var(--muted); font-weight: 700; background: var(--paper);
}
.auth-tabs a.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.auth-switch { margin: 1rem 0 0; color: var(--muted); }
.form-grid { display: grid; gap: 0.95rem; }
.form-grid label { display: grid; gap: 0.35rem; font-weight: 600; }
.form-grid input, .form-grid textarea, .form-grid select {
  padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: 12px; background: white;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid rgba(123,92,255,0.22); border-color: var(--violet); }
.field-hint { font-weight: 500; color: var(--muted); font-size: 0.82rem; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-subhead { margin: 0.5rem 0 0; font-size: 1.2rem; }

.panel {
  background: rgba(255,255,255,0.94); border-radius: var(--radius); padding: 1.55rem;
  border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(20,24,33,0.04);
}
.table-wrap { overflow-x: auto; }
.table {
  width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.table th, .table td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.cart-layout { display: grid; grid-template-columns: 1.4fr 0.7fr; gap: 1.25rem; align-items: start; }
.cart-summary .btn { width: 100%; margin-top: 0.7rem; text-align: center; }
.summary-line {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-bottom: 0.65rem; padding-bottom: 0.65rem; border-bottom: 1px solid var(--line);
}
.summary-total { font-size: 1.25rem; font-weight: 800; margin: 0.7rem 0 0.3rem; font-family: var(--font-display); }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.25rem; align-items: start; }
.checkout-steps {
  display: flex; gap: 0.75rem; list-style: none; padding: 0; margin: 0 0 1.5rem;
  color: var(--muted); font-weight: 700; font-size: 0.9rem;
}
.checkout-steps li::after { content: "→"; margin-left: 0.75rem; opacity: 0.5; }
.checkout-steps li:last-child::after { content: ""; }
.checkout-steps .is-active { color: var(--ink); }

.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.25rem; align-items: start; }
.account-side-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.account-side-card h2 { margin: 0 0 0.2rem; font-size: 1.35rem; }
.account-side-nav { display: grid; margin-top: 1rem; }
.account-side-nav a, .account-side-nav button {
  text-align: left; background: none; border: 0; padding: 0.55rem 0; color: var(--ink);
  font: inherit; font-weight: 600; cursor: pointer;
}
.account-side-nav a.is-active { color: var(--coral-deep); }
.status-pill {
  display: inline-block; padding: 0.2rem 0.55rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; background: var(--paper-2); color: var(--ink);
}
.status-pending_payment { background: #ffe8e5; color: var(--coral-deep); }
.status-queued_delivery, .status-paid { background: #e6faf5; color: var(--teal-deep); }
.status-delivered { background: #ebe8ff; color: #4b3ab8; }
.status-cancelled { background: #f3e8e8; color: #7a2e2e; }
.status-steps { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0 0 1.25rem; flex-wrap: wrap; }
.status-steps li {
  padding: 0.4rem 0.75rem; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-weight: 700;
}
.status-steps li.is-done { background: var(--ink); color: white; border-color: var(--ink); }
.pay-box {
  margin: 1rem 0; padding: 1rem 1.1rem;
  background: linear-gradient(160deg, #f4f7ff, #ffeef5); border-radius: 14px; border: 1px dashed var(--line);
}
.pay-box .phone, .thankyou .phone {
  font-size: 1.7rem; font-family: var(--font-display); color: var(--coral-deep); display: block; margin-top: 0.25rem;
}
.thankyou { text-align: center; padding: 3rem 1.5rem; max-width: 680px; margin-inline: auto; }
.empty-state { text-align: center; padding: 2.5rem 1.25rem; }

.cat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.cat-chips a {
  background: white; border: 1px solid var(--line); padding: 0.42rem 0.9rem;
  border-radius: 999px; color: var(--ink); font-weight: 700; font-size: 0.9rem;
}
.cat-chips a.active { background: var(--ink); color: white; border-color: var(--ink); }

.site-footer {
  margin-top: 1rem; padding: 2.8rem 0 1.6rem; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.7), #eef1ff); color: var(--muted);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr; gap: 1.5rem; }
.footer-brand { margin-bottom: 0.7rem; }
.site-footer h3 {
  margin: 0 0 0.65rem; font-size: 0.95rem; color: var(--ink);
  font-family: var(--font-display); letter-spacing: -0.02em;
}
.site-footer a, .site-footer p { display: block; margin: 0 0 0.4rem; color: var(--muted); }
.footer-note { font-size: 0.88rem; }
.footer-legal { margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.85rem; }

@media (max-width: 960px) {
  .header-inner { display: flex; flex-wrap: wrap; }
  .brand { flex: 1; }
  .search-form { display: flex; flex: 1 1 100%; max-width: none; order: 4; }
  .nav-toggle { display: inline-flex; }
  .cat-nav { display: none; }
  .trust-grid, .how-grid, .auth-grid, .cart-layout, .checkout-grid, .account-layout, .footer-grid, .pdp, .carousel-slide.active {
    grid-template-columns: 1fr;
  }
  .auth-card { margin: 0; max-width: none; }
  .account-chip-sub { display: none; }
}
@media (max-width: 800px) {
  .gallery-main.zoomable:hover .zoom-lens { display: none; }
  .brand-text { font-size: 1.2rem; }
  .marketplace-hero { padding: 3.2rem 0 2.8rem; }
  .product-card:hover .card-cta { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-inner, .hero-bloom, .hero-orb, .product-card, .how-grid article { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
