:root {
  --header: #041124;
  --navy: #0a172a;
  --ink: #06152b;
  --muted: rgba(255, 255, 255, 0.7);
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --header-h: 64px;
  --shell: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
/* Windows Chrome/Edge: height:100% on both html+body makes BODY the scroller
   and breaks window.scrollY / smooth top. Keep html as scroll root. */
html {
  height: 100%;
  margin: 0;
  /* Overscroll / below-footer bleed — same as footer navy */
  background: #020814;
}
body {
  margin: 0;
  min-height: 100%;
  height: auto;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

/* First viewport: blue above, products at bottom */
.page {
  background: #fff;
}

.fold {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.page-shop {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  flex: 1 0 auto;
}

/* ========== HEADER ========== */
.site-header {
  position: relative;
  z-index: 40;
  flex: 0 0 var(--header-h);
  height: var(--header-h);
  padding: 0 44px;
  background: var(--header);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform-origin: right center;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  will-change: transform, opacity;
}

.site-header.is-away {
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
}

/* Sticky blue underlay removed — header leaves, only mini-dock remains */
.header-underlay { display: none !important; }

.logo {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: #fff;
}

.search { position: relative; width: 420px; }

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa3b2;
  pointer-events: none;
}

.search input {
  width: 100%;
  height: 38px;
  padding: 0 16px 0 40px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #1a2333;
  outline: none;
  font-size: 0.9rem;
}

.search input::placeholder { color: #a8b0bc; }

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--header);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}

/* ========== HERO : prend tout l'espace AU-DESSUS des produits ========== */
.hero {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  padding: 28px 44px 110px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-stage {
  position: absolute;
  /* Flush to right edge always — never leave a navy gap cutting the photo */
  inset: 0 0 0 34%;
  pointer-events: none;
  overflow: hidden;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias toward product cluster (right side of photo) without clipping sneakers/plant */
  object-position: 70% 42%;
  display: block;
  transform: translateZ(0);
}

@media (min-width: 1500px) {
  .hero-stage {
    inset: 0 0 0 30%;
  }

  .hero-stage img {
    object-position: 68% 40%;
  }
}

@media (min-width: 1920px) {
  .hero-stage {
    inset: 0 0 0 28%;
  }

  .hero-stage img {
    object-position: 66% 40%;
  }
}

@media (min-width: 2400px) {
  .hero-stage {
    inset: 0 0 0 26%;
  }

  .hero-stage img {
    object-position: 64% 40%;
  }
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--navy) 0%, rgba(10,23,42,0.92) 14%, rgba(10,23,42,0.35) 34%, transparent 52%),
    linear-gradient(180deg, transparent 58%, var(--navy) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
}

.hero-copy { max-width: 480px; }

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.lede {
  margin: 14px 0 0;
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn-primary { background: #fff; color: #06152b; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.75);
  background: transparent;
  color: #fff;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(540px, 100%);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li { display: grid; gap: 4px; }
.trust-row svg { color: #fff; }
.trust-row strong { font-size: 0.74rem; font-weight: 600; }
.trust-row span { font-size: 0.64rem; color: rgba(255,255,255,0.5); }

/* ========== PRODUITS : collés en BAS de l'écran ========== */

/* Recommended row — larger cards */
.recommended .carousel {
  grid-auto-columns: calc((100% - 4 * 16px) / 5);
  gap: 16px;
}

.recommended .product-media {
  max-height: none;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}

.recommended .product-card h3 {
  margin-top: 6px;
  font-size: 0.94rem;
}

.recommended .card-shop {
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(6, 21, 43, 0.78);
}

.recommended .price {
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .recommended .carousel {
    grid-auto-columns: calc((100% - 2 * 14px) / 3);
  }
}

@media (max-width: 820px) {
  .recommended .carousel {
    grid-auto-columns: minmax(148px, 72%);
    gap: 10px;
  }
}

.recommended {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  margin-top: -72px;
  padding: 22px 44px 28px;
  background: #fff;
  border-top-left-radius: 72px;
  border-top-right-radius: 72px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto 14px;
  gap: 16px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 600;
  color: var(--ink);
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #06152b;
  letter-spacing: 0.01em;
}

.carousel-wrap {
  position: relative;
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 7 * 14px) / 8);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0 4px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.carousel::-webkit-scrollbar { display: none; }

.product-card { scroll-snap-align: start; min-width: 0; }
.product-card a { display: block; }

.product-media {
  /* cartes plus compactes pour rester en bas d'écran */
  aspect-ratio: 4 / 5;
  max-height: 132px;
  border-radius: 10px;
  background: #f0f0f0;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card .product-media:not(.product-media--ascend) {
  background: #141820;
}

.product-card h3 {
  margin: 4px 0 2px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .card-shop {
  margin: 8px 0 0;
}

.product-card .price {
  margin: 6px 0 0;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--ink);
}

.price {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(6,21,43,0.85);
}

.carousel-nav {
  position: absolute;
  top: 36%;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6,21,43,0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(6,21,43,0.08);
  cursor: pointer;
}

.carousel-nav.prev { left: -14px; }
.carousel-nav.next { right: -14px; }

@media (max-width: 1100px) {
  .search { width: 300px; }
  .carousel { grid-auto-columns: calc((100% - 4 * 12px) / 5); }
  .hero-stage { inset: 0 0 0 42%; }
  .product-media { max-height: 120px; }
}

/* Mobile / tablet — adapted layout (desktop fold unchanged ≥821px) */
@media (max-width: 820px) {
  .fold {
    min-height: auto;
    display: block;
  }

  .site-header {
    height: auto;
    min-height: 56px;
    flex: none;
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 10px 14px 12px;
    row-gap: 10px;
  }

  .logo { font-size: 1.25rem; }

  .nav {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-link { font-size: 0.65rem; letter-spacing: 0.12em; }

  .search {
    width: 100%;
    flex: 1 1 100%;
    order: 4;
  }

  .search input {
    height: 40px;
    font-size: 0.88rem;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 0;
    padding: 28px 16px 72px;
    display: block;
  }

  .hero-stage {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: 220px;
    margin: 0 -16px 22px;
    border-radius: 0;
    overflow: hidden;
    opacity: 1;
  }

  .hero-stage::before {
    background:
      linear-gradient(180deg, var(--navy) 0%, transparent 28%),
      linear-gradient(0deg, var(--navy) 0%, transparent 34%);
  }

  .hero-stage img {
    object-position: center 35%;
  }

  .hero-inner { max-width: none; }

  .hero-copy { max-width: none; }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .lede { max-width: none; font-size: 0.92rem; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
    min-height: 48px;
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 14px 12px;
    margin-top: 24px;
  }

  .recommended {
    border-radius: 28px 28px 0 0;
    margin-top: -40px;
    padding: 20px 14px 24px;
  }

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

  .section-head h2 {
    font-size: 1.35rem;
  }

  .carousel-wrap { padding: 0 2px; }

  .carousel {
    grid-auto-columns: minmax(148px, 42%);
    gap: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .product-media { max-height: none; aspect-ratio: 4 / 5; }

  .carousel-nav {
    display: grid;
    width: 30px;
    height: 30px;
  }

  .carousel-nav.prev { left: 0; }
  .carousel-nav.next { right: 0; }

  .content-section,
  .promo-band,
  .reseller-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-section { padding-top: 40px; padding-bottom: 40px; }

  /* Match recommended width; keep featured media shorter than recommended */
  .bestsellers-section .carousel {
    grid-auto-columns: minmax(148px, 72%);
    gap: 10px;
  }
  .bestsellers-section .product-media {
    aspect-ratio: auto;
    height: 158px;
    max-height: 158px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
    padding: 20px 16px 48px;
  }

  .shop-cats { display: none; }
  .shop-mobile-cat { display: grid; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-products,
  .new-grid,
  .home-boutiques,
  .boutiques-grid {
    grid-template-columns: 1fr;
  }

  .promo-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-inner .btn { justify-content: center; }

  .type-tabs { width: 100%; }
  .type-tab { flex: 1; text-align: center; }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-sort { min-width: 0; width: 100%; }

  .mini-dock { top: 10px !important; right: 10px !important; left: auto !important; inset-inline-end: 10px !important; inset-inline-start: auto !important; }
  .mini-dock-panel { border-radius: 20px; }
  .mini-dock-panel.is-open {
    width: min(220px, calc(100vw - 24px));
  }
  .mini-dock-panel.is-open .mini-dock-expand {
    max-height: 180px;
    opacity: 1;
    padding: 0 12px 14px;
  }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-row { gap: 12px 8px; }
  .trust-row strong { font-size: 0.68rem; }
  .trust-row span { font-size: 0.6rem; }
  .hero-stage { height: 180px; }
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 40px 44px;
  background: #fff;
}

.bestsellers-section {
  padding-bottom: 16px;
}

.content-inner {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.bestsellers-section .carousel-wrap {
  margin-top: 8px;
}

.bestsellers-section .carousel {
  grid-auto-columns: calc((100% - 5 * 14px) / 6);
  gap: 14px;
}

.bestsellers-section .product-media {
  max-height: none;
  aspect-ratio: 4 / 5;
}

@media (max-width: 1100px) {
  .bestsellers-section .carousel {
    grid-auto-columns: calc((100% - 3 * 12px) / 4);
  }
}

@media (max-width: 820px) {
  .bestsellers-section .carousel {
    grid-auto-columns: minmax(148px, 72%);
    gap: 10px;
  }
  .bestsellers-section .product-media {
    aspect-ratio: auto;
    height: 158px;
    max-height: 158px;
  }
}

.section-lead {
  margin: -4px 0 14px;
  max-width: 52ch;
  color: rgba(6,21,43,0.62);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cat-tile {
  display: grid;
  place-items: end start;
  min-height: 120px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(10, 23, 42, 0.92) 0%, rgba(22, 48, 83, 0.88) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 28px rgba(6, 21, 43, 0.14);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.25s ease;
}

.cat-tile:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 16px 36px rgba(6, 21, 43, 0.2);
}

.promo-band {
  padding: 20px 44px 48px;
  background: #f6f7f9;
}

.promo-inner {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.promo-inner h2 {
  margin: 8px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 600;
}

.promo-inner p { margin: 0; color: rgba(6,21,43,0.62); max-width: 42ch; }

.eyebrow.light {
  color: rgba(6,21,43,0.5);
}

.promo-products,
.new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.promo-products .product-media,
.new-grid .product-media {
  max-height: none;
}

.product-media { position: relative; }

.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #041124;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price s {
  margin-right: 6px;
  color: rgba(6,21,43,0.4);
}

.reseller-band {
  padding: 64px 44px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.reseller-inner {
  max-width: 640px;
  margin: 0 auto;
}

.reseller-inner h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 600;
}

.reseller-inner p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #020814;
  color: rgba(255,255,255,0.78);
  padding: 56px 44px 28px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--shell);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 12px;
  color: #fff;
}

.footer-brand p {
  margin: 0;
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}

.footer-col h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
}

.footer-bottom p { margin: 0; }
.footer-bottom > :first-child { justify-self: start; }
.footer-bottom > :last-child { justify-self: end; text-align: right; }
.footer-credit {
  justify-self: center;
  text-align: center;
  font-size: 0.95rem;
}
.footer-credit a {
  color: #fff;
  text-decoration: none;
}
.footer-credit a:hover { color: rgba(255, 255, 255, 0.85); }

/* Mobile footer — must come AFTER base .footer-inner (cascade) */
@media (max-width: 820px) {
  .site-footer {
    padding: 40px 20px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }
  .footer-brand p {
    max-width: none;
  }
  .footer-col h3 {
    margin-bottom: 12px;
  }
  .footer-col a {
    margin-bottom: 8px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom > :first-child,
  .footer-bottom > :last-child {
    justify-self: center;
    text-align: center;
  }
}

/* ========== SHOP ========== */
.shop-hero {
  padding: 48px 44px 36px;
  background: var(--navy);
  color: #fff;
}

.shop-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.shop-hero h1 {
  margin: 8px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
}

.shop-hero p:last-child {
  margin: 0;
  max-width: 42ch;
  color: rgba(255,255,255,0.68);
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 36px 44px 72px;
  flex: 1;
}

.shop-layout.is-boutiques {
  grid-template-columns: 1fr;
}

.shop-side-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6,21,43,0.45);
}

.shop-cats {
  display: grid;
  gap: 6px;
}

.shop-cat {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(6,21,43,0.7);
  cursor: pointer;
}

.shop-cat:hover { background: #f3f5f8; }
.shop-cat.is-active {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

/* Once sliding pill is bound, active bg comes from .liquid-pill */
.shop-cats.liquid-nav[data-liquid-bound] .shop-cat.is-active {
  background: transparent;
  color: #fff;
}

.shop-mobile-cat { display: none; gap: 8px; margin-bottom: 18px; }
.shop-mobile-cat span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(6,21,43,0.45);
}
.shop-mobile-cat select,
.shop-sort select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(6,21,43,0.12);
  border-radius: 8px;
  background: #fff;
}

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

.shop-toolbar h2 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.shop-count {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(6,21,43,0.55);
}

.shop-sort {
  display: grid;
  gap: 6px;
  min-width: 200px;
}

.shop-sort span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6,21,43,0.45);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.shop-card a { display: block; }

.shop-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #041124;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.shop-card h3 {
  margin: 4px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

/* ========== LEGAL ========== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  flex: 1;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
}

.legal-updated {
  margin: 0 0 28px;
  color: rgba(6,21,43,0.5);
  font-size: 0.88rem;
}

.legal-body h2 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.legal-body p,
.legal-body li {
  color: rgba(6,21,43,0.75);
  line-height: 1.6;
  font-size: 0.95rem;
}

.legal-body ul { padding-left: 1.2rem; }
.legal-body a { text-decoration: underline; }

/* ========== MINI DOCK (scroll) — always top-right ========== */
.mini-dock {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  left: auto !important;
  bottom: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: 16px !important;
  z-index: 9999 !important;
  margin: 0 !important;
  opacity: 0;
  pointer-events: none;
  /* Enter from the RIGHT — no parent filter (breaks backdrop-filter) */
  transform: translate3d(28px, -6px, 0) scale(0.86);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.mini-dock-panel {
  width: 196px;
  overflow: hidden;
  border-radius: 999px;
  /* Liquid glass — visible on navy + white (Mac + Windows) */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(6, 21, 43, 0.05),
    0 2px 8px rgba(6, 21, 43, 0.1),
    0 14px 36px rgba(6, 21, 43, 0.2),
    0 0 0 1px rgba(6, 21, 43, 0.08);
  color: #06152b;
  transition:
    width 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-radius 0.35s ease,
    box-shadow 0.35s ease,
    background 0.25s ease;
}

.mini-dock-panel.is-open {
  width: 220px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 44px rgba(6, 21, 43, 0.22),
    0 0 0 1px rgba(6, 21, 43, 0.1);
}

/* Desktop only — hover/focus open (sticky :hover/:focus-within breaks mobile) */
@media (hover: hover) and (pointer: fine) {
  .mini-dock-panel:hover,
  .mini-dock-panel:focus-within {
    width: 220px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 16px 44px rgba(6, 21, 43, 0.22),
      0 0 0 1px rgba(6, 21, 43, 0.1);
  }
}

.mini-dock-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 10px;
}

.mini-dock-icon {
  position: relative;
  display: grid;
  place-items: center;
  color: #06152b;
}

.mini-dock-badge {
  position: absolute;
  top: -5px;
  right: -7px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: #06152b;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}

.mini-dock-expand {
  display: grid;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  padding: 0 12px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.mini-dock-panel.is-open .mini-dock-expand {
  max-height: 220px;
  opacity: 1;
  padding: 0 12px 14px;
}

@media (hover: hover) and (pointer: fine) {
  .mini-dock-panel:hover .mini-dock-expand,
  .mini-dock-panel:focus-within .mini-dock-expand {
    max-height: 220px;
    opacity: 1;
    padding: 0 12px 14px;
  }
}

.mini-dock-search {
  position: relative;
  display: flex;
  align-items: center;
}

.mini-dock-search svg {
  position: absolute;
  left: 10px;
  color: rgba(6, 21, 43, 0.4);
  pointer-events: none;
}

.mini-dock-search input {
  width: 100%;
  height: 34px;
  padding: 0 10px 0 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 21, 43, 0.06);
  color: #06152b;
  outline: none;
  font-size: 0.8rem;
}

.mini-dock-search input::placeholder { color: rgba(6, 21, 43, 0.4); }

.mini-dock-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(6, 21, 43, 0.88);
  transition: background 0.15s ease;
}
.mini-dock-link:hover { background: rgba(6, 21, 43, 0.06); }

.mini-dock-icon-btn,
a.mini-dock-icon {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.mini-dock-icon-btn:hover,
a.mini-dock-icon:hover {
  background: rgba(6, 21, 43, 0.07);
}

.mini-dock-icon-btn:active,
a.mini-dock-icon:active {
  transform: scale(0.94);
}

.mini-dock-link-btn {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

@media (max-width: 820px) {
  .mini-dock { top: 12px !important; right: 12px !important; left: auto !important; inset-inline-end: 12px !important; inset-inline-start: auto !important; }
  .mini-dock-panel.is-open { width: min(200px, calc(100vw - 24px)); }
}

/* Soften only — never hard-disable (Windows OS flag would kill all UI motion) */
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .mini-dock,
  .mini-dock-panel,
  .mini-dock-expand,
  .liquid-pill,
  .liquid-card,
  .liquid-btn {
    transition-duration: 0.22s !important;
  }
}

/* ========== LIQUID GLASS ========== */
/* On dark surfaces (hero / navy) — frosted light glass */
.liquid-glass {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 30px rgba(4, 17, 36, 0.18);
  color: #fff;
}

/* On white / light surfaces — same liquid DA, ink contrast + depth */
.liquid-on-light {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -0.5px 0 rgba(6, 21, 43, 0.04),
    0 1px 2px rgba(6, 21, 43, 0.05),
    0 8px 24px rgba(6, 21, 43, 0.1),
    0 0 0 1px rgba(6, 21, 43, 0.07) !important;
  color: #06152b !important;
}

.liquid-on-light:hover {
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow:
    inset 0 1px 0 #fff,
    0 12px 32px rgba(6, 21, 43, 0.14),
    0 0 0 1px rgba(6, 21, 43, 0.09) !important;
}

.liquid-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.2s ease,
    border-color 0.25s ease;
}

.liquid-btn::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 65%
  );
  transform: translateX(-130%) rotate(8deg);
  transition: transform 0.65s ease;
  pointer-events: none;
  will-change: transform;
}

.liquid-btn > * {
  position: relative;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .liquid-btn:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .liquid-btn:hover::after,
  .liquid-btn.is-shine::after {
    transform: translateX(130%) rotate(8deg);
  }
}

.liquid-btn.is-shine::after {
  transform: translateX(130%) rotate(8deg);
}

.liquid-btn:active,
.liquid-btn.is-pop {
  transform: scale(0.97);
}

/* Opaque fallbacks — Windows / no backdrop-filter */
.hero .btn-primary,
.reseller-band .btn-primary,
.shop-hero .btn-primary {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #06152b;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero .btn-ghost {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section-cta.btn-primary,
.content-section .btn-primary,
.promo-band .btn-primary,
.sr-bar .btn-primary,
.pdp-actions .btn-primary,
.cart-summary .btn-primary,
.empty-state .btn-primary {
  background: #ffffff;
  border: 1px solid rgba(6, 21, 43, 0.1);
  border-radius: 999px;
  color: #06152b;
  box-shadow:
    inset 0 1px 0 #fff,
    0 6px 18px rgba(6, 21, 43, 0.1),
    0 0 0 1px rgba(6, 21, 43, 0.06);
}

.liquid-on-light {
  background: #ffffff !important;
  border: 1px solid rgba(6, 21, 43, 0.1) !important;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 24px rgba(6, 21, 43, 0.1),
    0 0 0 1px rgba(6, 21, 43, 0.06) !important;
  color: #06152b !important;
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .liquid-glass {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
  }

  .liquid-on-light {
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
  }

  .hero .btn-primary {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }

  .hero .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
  }

  .mini-dock-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(36px) saturate(200%);
    -webkit-backdrop-filter: blur(36px) saturate(200%);
  }
}

/* Primary / ghost buttons — base (opaque + @supports above) */
.btn {
  border: 0;
  cursor: pointer;
}

.btn.liquid-btn.liquid-on-light,
.btn-primary.liquid-on-light {
  font-weight: 700;
}

.liquid-card {
  transition:
    transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.35s ease;
}

.liquid-card:hover {
  transform: translateY(-4px);
}

.liquid-nav {
  position: relative;
  isolation: isolate;
}

.liquid-pill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 10px;
  background: #0a172a;
  background: var(--navy);
  box-shadow:
    0 8px 24px rgba(4, 17, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  will-change: left, top, width, height;
  transform: translateZ(0);
  transition:
    left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}

.liquid-pill.is-on { opacity: 1; }

.shop-cats {
  position: relative;
  display: grid;
  gap: 6px;
}

.shop-cat {
  position: relative;
  z-index: 1;
  transition: color 0.2s ease, background 0.2s ease;
}

.shop-cats.liquid-nav[data-liquid-bound] .shop-cat.is-active {
  background: transparent !important;
  color: #fff !important;
  font-weight: 600;
}

.shop-cat:hover:not(.is-active) {
  background: rgba(6, 21, 43, 0.05);
}

.type-tabs {
  display: inline-flex;
  gap: 6px;
  margin-top: 22px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.type-tab {
  position: relative;
  z-index: 1;
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.type-tab.is-active { color: #fff; }

.type-tabs .liquid-pill {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Carousel arrows + view-all + cat tiles — liquid on white */
.carousel-nav {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 #fff,
    0 6px 20px rgba(6, 21, 43, 0.1),
    0 0 0 1px rgba(6, 21, 43, 0.07);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.25s ease;
}

.carousel-nav:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.92);
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #06152b;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(6, 21, 43, 0.14);
  box-shadow:
    inset 0 1px 0 #fff,
    0 6px 18px rgba(6, 21, 43, 0.12),
    0 0 0 1px rgba(6, 21, 43, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.2s ease, box-shadow 0.2s ease;
}

.view-all svg {
  opacity: 0.85;
  flex-shrink: 0;
}

.view-all:hover,
.view-all:focus-visible {
  transform: translateY(-1px) scale(1.02);
  background: #041124;
  color: #fff;
  border-color: #041124;
  box-shadow: 0 10px 24px rgba(4, 17, 36, 0.22);
}

.view-all:hover svg,
.view-all:focus-visible svg {
  opacity: 1;
}

.shop-sort select,
.shop-mobile-cat select,
.qty-field {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(6, 21, 43, 0.1) !important;
  box-shadow:
    inset 0 1px 0 #fff,
    0 4px 12px rgba(6, 21, 43, 0.05);
}

.pdp-shop-link {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 22px rgba(6, 21, 43, 0.08),
    0 0 0 1px rgba(6, 21, 43, 0.06) !important;
}

.sr-bar {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    inset 0 1px 0 #fff,
    0 10px 32px rgba(6, 21, 43, 0.1),
    0 0 0 1px rgba(6, 21, 43, 0.07) !important;
}

.sr-bar .btn-primary {
  background: rgba(6, 21, 43, 0.92) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 6px 18px rgba(6, 21, 43, 0.2) !important;
}

.card-shop {
  margin: 0 0 2px;
  font-size: 0.86rem;
  color: rgba(6, 21, 43, 0.78);
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.shop-card .card-shop {
  margin: 10px 0 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(6, 21, 43, 0.82);
}

.shop-card h3 {
  margin: 4px 0 0;
}

.shop-card .price {
  margin: 8px 0 0;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
}
.shop-card .price s { color: rgba(6,21,43,0.4); font-weight: 500; margin-right: 6px; }

/* ========== BOUTIQUES ========== */
.boutiques-grid,
.home-boutiques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.boutique-card a { display: block; color: inherit; }

.boutique-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--shop-color, #0a172a);
}

.boutique-cover img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.boutique-avatar {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 76px;
  height: 76px;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
  padding: 2px;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  z-index: 2;
}

.boutique-body {
  padding: 10px 4px 8px;
}

.boutique-body h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.boutique-meta {
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.5);
}

.boutique-tagline {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: rgba(6, 21, 43, 0.7);
}

.boutique-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(6, 21, 43, 0.55);
}

.boutique-stats.light { color: rgba(255,255,255,0.78); }

.boutique-socials {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 6px;
}

.boutique-social-app {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.boutique-social-app:hover {
  transform: scale(1.06);
  opacity: 0.95;
}
.boutique-social-app svg {
  width: 19px;
  height: 19px;
  display: block;
}
.boutique-social-app.is-tiktok {
  background: #010101;
}
.boutique-social-app.is-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.boutique-social-app.is-youtube {
  background: #ff0000;
}
.boutique-social-app.is-x {
  background: #000000;
}
.boutique-social-app.is-facebook {
  background: #1877f2;
}
.boutique-social-app.is-discord {
  background: #5865f2;
}
.boutique-social-app.is-twitch {
  background: #9146ff;
}
.boutique-social-app.is-linkedin {
  background: #0a66c2;
}
.boutique-social-app.is-snapchat {
  background: #fffc00;
}

.account-socials-block {
  margin: 14px 0 12px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(6, 21, 43, 0.1);
}
.account-socials-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account-social-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.account-social-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  opacity: 0.28;
  filter: grayscale(1);
  transition: opacity 0.15s, filter 0.15s, transform 0.15s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.account-social-logo svg {
  width: 16px;
  height: 16px;
  display: block;
}
.account-social-row.is-on .account-social-logo {
  opacity: 1;
  filter: none;
  transform: scale(1.02);
}
.account-social-logo.is-tiktok { background: #010101; }
.account-social-logo.is-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.account-social-logo.is-youtube { background: #ff0000; }
.account-social-logo.is-x { background: #000000; }
.account-social-logo.is-facebook { background: #1877f2; }
.account-social-logo.is-discord { background: #5865f2; }
.account-social-logo.is-twitch { background: #9146ff; }
.account-social-logo.is-linkedin { background: #0a66c2; }
.account-social-logo.is-snapchat { background: #fffc00; }
.account-social-row .auth-field {
  margin: 0;
  gap: 2px;
}
.account-social-row .auth-field > span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}
.account-social-row input {
  height: 38px;
  padding: 0 12px;
  font-size: 0.88rem;
}
.account-section-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

/* Certified Seller badge */
.cert-badge {
  display: inline-grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  min-width: 16px;
  min-height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1d9bf0;
  cursor: pointer;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 0;
}
.cert-badge.is-uncertified,
.cert-badge.is-verified {
  color: #9aa3af;
}
.cert-badge.is-certified {
  color: #1d9bf0;
}
.cert-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cert-badge:hover {
  transform: scale(1.08);
}
.cert-badge.is-certified:hover { color: #0c7fd0; }
.cert-badge.is-uncertified:hover,
.cert-badge.is-verified:hover { color: #7b8494; }
.boutique-hero .cert-badge {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.boutique-hero .cert-badge.is-certified { color: #4dabf7; }
.boutique-hero .cert-badge.is-uncertified,
.boutique-hero .cert-badge.is-verified { color: rgba(255,255,255,0.55); }
.card-shop .cert-badge {
  width: 14px;
  height: 14px;
}

.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.cert-modal[hidden] { display: none !important; }
.cert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 43, 0.45);
  backdrop-filter: blur(2px);
}
.cert-modal-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(6, 21, 43, 0.28);
  text-align: center;
}
.cert-modal-x {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(6, 21, 43, 0.45);
  cursor: pointer;
}
.cert-modal-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
}
.cert-modal-icon svg { width: 100%; height: 100%; display: block; }
.cert-modal-panel h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--ink);
}
.cert-modal-panel p {
  margin: 0 0 10px;
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(6, 21, 43, 0.72);
  text-align: left;
}
.cert-modal-note {
  color: rgba(6, 21, 43, 0.55) !important;
  font-size: 0.88rem !important;
}
.cert-modal-ok {
  margin-top: 8px;
  min-width: 120px;
}

.boutique-hero {
  position: relative;
  color: #fff;
  background: var(--shop-color, var(--navy));
  overflow: hidden;
  min-height: clamp(200px, 26vh, 300px);
}

.boutique-hero-cover {
  position: absolute;
  inset: 0;
}

.boutique-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.boutique-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 44px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.boutique-hero-avatar {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.85);
  flex-shrink: 0;
}

.boutique-hero h1 {
  margin: 4px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.boutique-owner-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
}

.boutique-hero-tag {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.85);
}

.boutique-hero-bio {
  margin: 0 0 12px;
  max-width: 56ch;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

.boutique-hero .eyebrow {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
}

.boutique-hero .boutique-stats {
  margin-top: 4px;
  gap: 12px 20px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.boutique-hero .boutique-stats.light {
  color: rgba(255, 255, 255, 0.94);
}

.boutique-products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 44px 72px;
}

/* ========== PRODUCT DETAIL ========== */
.pdp-page,
.cart-page {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 32px 44px 88px;
  flex: 1;
  width: 100%;
}

.cart-page {
  background:
    radial-gradient(ellipse 90% 60% at 50% -20%, rgba(201, 137, 58, 0.06), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #fff 280px);
}

.cart-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 21, 43, 0.08);
}

.cart-page-count {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(6, 21, 43, 0.58);
}

.cart-continue {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(6, 21, 43, 0.48);
  transition: color 0.15s ease;
}

.cart-continue:hover { color: var(--ink); }

.pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 0.8rem;
  color: rgba(6, 21, 43, 0.45);
}

.pdp-breadcrumb a:hover { color: var(--ink); }
.pdp-breadcrumb span:last-child { color: rgba(6, 21, 43, 0.7); }

.pdp-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.pdp-layout--simple {
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.pdp-layout--simple .pdp-gallery {
  position: sticky;
  top: 24px;
  min-height: 0;
}

.pdp-gallery-col {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.pdp-gallery {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #eef1f5;
  aspect-ratio: 1;
  min-height: 520px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 48px rgba(6, 21, 43, 0.1);
}

.pdp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 700;
  color: #06152b;
  box-shadow: 0 6px 18px rgba(6, 21, 43, 0.12);
}

.pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pdp-trust-strip div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1px 0 #fff,
    0 6px 18px rgba(6, 21, 43, 0.06),
    0 0 0 1px rgba(6, 21, 43, 0.06);
}

.pdp-trust-strip strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 2px;
}

.pdp-trust-strip span {
  font-size: 0.72rem;
  color: rgba(6, 21, 43, 0.5);
}

.pdp-info .eyebrow {
  color: rgba(6, 21, 43, 0.45);
}

.pdp-info h1 {
  margin: 8px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pdp-rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.pdp-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  letter-spacing: 0;
  font-size: 0.92rem;
  line-height: 1;
}

.pdp-star--full { color: #c9a227; }
.pdp-star--empty { color: #cfd4dc; }

.pdp-star--half {
  background: linear-gradient(90deg, #c9a227 50%, #cfd4dc 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pdp-rating-line--empty {
  color: #6b7280;
  font-weight: 500;
}

.pdp-reviews-empty {
  margin: 0;
  padding: 8px 0 4px;
  color: #6b7280;
  font-size: 0.95rem;
}

.pdp-rating-line a {
  color: #0b5cab;
  font-weight: 600;
}

.pdp-rating-line a:hover { text-decoration: underline; }

.pdp-shop-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px 12px 12px;
  border-radius: 18px;
  margin-bottom: 20px;
  color: #06152b !important;
}

.pdp-shop-link:hover {
  transform: translateY(-2px) scale(1.01);
}

.pdp-shop-link img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.pdp-shop-link strong {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.98rem;
}

.pdp-shop-link .cert-badge {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.pdp-shop-link small {
  display: block;
  color: rgba(6, 21, 43, 0.55);
  font-size: 0.75rem;
  margin-top: 2px;
}

.pdp-shop-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.55);
  white-space: nowrap;
}

.pdp-shop-cta .cert-badge {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pdp-price {
  margin: 0 0 12px;
  font-size: 1.7rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-price s {
  color: rgba(6, 21, 43, 0.4);
  font-size: 1.05rem;
}

.pdp-sold-by {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: rgba(6, 21, 43, 0.62);
}

.pdp-sold-by a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pdp-save {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(6, 21, 43, 0.06);
  color: #06152b;
}

.pdp-tax {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: rgba(6, 21, 43, 0.5);
}

.pdp-desc {
  margin: 0 0 26px;
  color: rgba(6, 21, 43, 0.78);
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 38ch;
}

.pdp-logo-block {
  margin: 0 0 18px;
}
.pdp-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pdp-logo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(6, 21, 43, 0.12);
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: #06152b;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.pdp-logo-btn:hover {
  border-color: rgba(6, 21, 43, 0.35);
}
.pdp-logo-btn.is-active,
.pdp-logo-btn[aria-selected="true"] {
  border-color: #06152b;
  box-shadow: 0 0 0 1px #06152b;
  background: #f7f8fa;
}
.pdp-logo-block.is-error .pdp-logo-btn {
  border-color: #b45309;
}
.pdp-logo-swatch {
  width: 36px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: #efeae2 center/cover no-repeat;
  flex-shrink: 0;
  border: 1px solid rgba(6, 21, 43, 0.08);
}
.pdp-pack-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 4px;
}
.pdp-pack-logos[hidden] { display: none !important; }
.pdp-pack-logos .pdp-logo-btn {
  padding: 8px 10px;
  font-size: 0.82rem;
  border-radius: 12px;
}
.pdp-pack-logos .pdp-logo-swatch {
  width: 28px;
}

.pdp-size-block {
  margin: -10px 0 22px;
}

.pdp-size-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pdp-size-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.72);
}

.pdp-size-value {
  font-size: 0.82rem;
  color: rgba(6, 21, 43, 0.55);
}

.pdp-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-size-btn {
  min-width: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(6, 21, 43, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #06152b;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.pdp-size-btn:hover {
  border-color: rgba(6, 21, 43, 0.28);
  transform: translateY(-1px);
}

.pdp-size-btn.is-active {
  border-color: #06152b;
  background: #06152b;
  color: #fff;
}

.pdp-size-block.is-error .pdp-size-btn {
  border-color: rgba(180, 40, 40, 0.35);
}

.pdp-size-hint {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #b42828;
  font-weight: 600;
}

.cart-size {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.55);
  font-weight: 600;
}

.pdp-desc-more {
  display: none;
}

.pdp-meta-line {
  margin: 16px 0 0;
  font-size: 0.84rem;
  color: rgba(6, 21, 43, 0.48);
}

.pdp-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 0;
}

.qty-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: #06152b;
}

.qty-field span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

.qty-field input {
  width: 52px;
  height: 48px;
  border: 0;
  background: transparent;
  font-weight: 600;
  outline: none;
  color: #06152b;
}

.pdp-actions .btn {
  flex: 1;
  justify-content: center;
  min-height: 52px;
  font-size: 0.78rem;
}
.pdp-actions .pdp-wish-btn {
  flex: 0 0 auto;
}

.pdp-ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pdp-ship-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  color: #06152b;
}

.pdp-ship-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(6, 21, 43, 0.05);
  color: #06152b;
}

.pdp-ship-card h3 {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

.pdp-ship-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}

.pdp-ship-card .muted {
  margin-top: 2px;
  font-size: 0.75rem;
  color: rgba(6, 21, 43, 0.5);
}

.pdp-details-band {
  margin-top: 56px;
}

.pdp-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pdp-details-card {
  padding: 28px;
  border-radius: 24px;
  color: #06152b;
}

.pdp-details-card h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.pdp-specs {
  margin: 0;
  display: grid;
  gap: 12px;
}

.pdp-specs > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(6, 21, 43, 0.08);
}

.pdp-specs > div:last-child { border-bottom: 0; padding-bottom: 0; }

.pdp-specs dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

.pdp-specs dd {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(6, 21, 43, 0.82);
}

.pdp-specs a {
  color: #0b5cab;
  font-weight: 600;
}

.pdp-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.pdp-info-list li {
  padding-left: 16px;
  border-left: 2px solid rgba(6, 21, 43, 0.12);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(6, 21, 43, 0.72);
}

.pdp-info-list strong { color: #06152b; }

.pdp-reviews {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(6, 21, 43, 0.08);
}

.pdp-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.pdp-reviews-head h2 {
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 600;
}

.pdp-reviews-score {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 18px;
  color: #06152b;
}

.pdp-reviews-score strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.pdp-reviews-score span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.5);
}

.pdp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pdp-review {
  padding: 20px;
  border-radius: 20px;
  color: #06152b;
}

.pdp-review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.pdp-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(6, 21, 43, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
}

.pdp-review-meta {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: rgba(6, 21, 43, 0.5);
}

.pdp-review h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.pdp-review p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(6, 21, 43, 0.7);
}

.pdp-related {
  margin-top: 64px;
}

.pdp-related .shop-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .pdp-layout,
  .pdp-details-grid { grid-template-columns: 1fr; }
  .pdp-gallery-col { position: static; }
  .pdp-gallery { min-height: 0; }
  .pdp-review-grid { grid-template-columns: 1fr; }
  .pdp-reviews-head { flex-direction: column; align-items: flex-start; }
  .pdp-related .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .pdp-page { padding: 20px 16px 64px; }
  .pdp-ship-grid,
  .pdp-trust-strip { grid-template-columns: 1fr 1fr; }
  .pdp-specs > div { grid-template-columns: 1fr; gap: 4px; }
  .pdp-shop-cta { display: none; }
}

.empty-state {
  text-align: center;
  padding: 64px 20px;
}

.empty-state h1 {
  font-family: var(--font-serif);
  margin: 0 0 10px;
}

.empty-state p {
  color: rgba(6, 21, 43, 0.6);
  margin: 0 0 22px;
}

.empty-inline {
  grid-column: 1 / -1;
  color: rgba(6, 21, 43, 0.55);
  padding: 24px 0;
}

/* ========== CART ========== */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 36px;
  align-items: start;
}

.cart-section-label {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.42);
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 32px rgba(6, 21, 43, 0.06);
}

.cart-item-media {
  display: block;
  width: 108px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef1f5, #e4e8ee);
  align-self: start;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cart-item.is-unavailable {
  opacity: 0.92;
  border-color: rgba(180, 83, 9, 0.28);
  background: #fffaf3;
}

.cart-item-unavailable {
  margin: 8px 0 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(180, 83, 9, 0.1);
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.cart-item.is-unavailable .cart-qty {
  opacity: 0.45;
  pointer-events: none;
}

.cart-checkout.is-blocked {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

.cart-block-note {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.cart-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.cart-item-copy h3 a:hover {
  color: rgba(6, 21, 43, 0.72);
}

.cart-item-shop {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(6, 21, 43, 0.48);
}

.cart-item-shop:hover {
  color: var(--ink);
}

.cart-item-size {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(6, 21, 43, 0.05);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(6, 21, 43, 0.62);
}

.cart-item-line-total {
  margin: 0;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cart-item-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  background: #f6f8fa;
  overflow: hidden;
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cart-qty-btn:hover {
  background: rgba(6, 21, 43, 0.06);
}

.cart-qty-val {
  min-width: 32px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.cart-item-unit {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(6, 21, 43, 0.45);
}

.cart-remove {
  margin-left: auto;
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(6, 21, 43, 0.4);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-remove:hover {
  color: #b42828;
}

.cart-summary {
  padding: 26px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 48px rgba(6, 21, 43, 0.08);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.cart-summary-title {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.cart-summary-rows {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 21, 43, 0.08);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(6, 21, 43, 0.58);
}

.cart-summary-row--total {
  margin-top: 4px;
  font-size: 1rem;
  color: var(--ink);
}

.cart-summary-row--total strong {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cart-checkout {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 0.92rem;
}

.cart-note {
  margin: 14px 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(6, 21, 43, 0.45);
  text-align: center;
}

.cart-trust {
  list-style: none;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(6, 21, 43, 0.06);
  display: grid;
  gap: 10px;
}

.cart-trust li {
  font-size: 0.76rem;
  line-height: 1.4;
  color: rgba(6, 21, 43, 0.5);
}

.cart-trust strong {
  color: rgba(6, 21, 43, 0.72);
  font-weight: 700;
}

.cart-empty {
  max-width: 420px;
  margin: 12px auto 48px;
  padding: 40px 32px 36px;
  text-align: center;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.07);
  box-shadow: 0 12px 40px rgba(6, 21, 43, 0.06);
}

.cart-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(6, 21, 43, 0.04);
  color: rgba(6, 21, 43, 0.35);
}

.cart-empty-title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.cart-empty-lead {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(6, 21, 43, 0.58);
}

.cart-suggestions {
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid rgba(6, 21, 43, 0.08);
}

.cart-suggestions-gap {
  margin-top: 44px;
}

.cart-suggestions .section-head {
  max-width: none;
  margin: 0 0 20px;
}

.cart-suggestions .section-head h2 {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.cart-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.cart-suggestions-grid .product-card {
  min-width: 0;
}

.cart-suggestions-grid .product-media {
  max-height: none;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}

.cart-suggestions-grid .product-card h3 {
  margin-top: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-suggestions-grid .card-shop {
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(6, 21, 43, 0.78);
}

.cart-suggestions-grid .price {
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .cart-suggestions-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .cart-suggestions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.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;
}

@media (max-width: 900px) {
  .boutiques-grid,
  .home-boutiques { grid-template-columns: 1fr 1fr; }
  .pdp-layout { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .boutique-hero-inner,
  .pdp-page,
  .cart-page,
  .boutique-products { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 820px) {
  .boutiques-grid,
  .home-boutiques { grid-template-columns: 1fr; }
  .cart-page { padding-top: 24px; }
  .cart-page-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }
  .cart-item-line-total {
    font-size: 0.95rem;
  }
  .cart-remove {
    margin-left: 0;
  }
}

/* ========== SEARCH PAGE (Amazon-style) ========== */
.sr-hero {
  background: #f3f5f8;
  border-bottom: 1px solid rgba(6, 21, 43, 0.08);
  padding: 18px 44px;
}

.sr-bar {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.12);
  box-shadow: 0 8px 28px rgba(4, 17, 36, 0.06);
}

.sr-bar svg { color: rgba(6, 21, 43, 0.4); }

.sr-bar input {
  width: 100%;
  height: 44px;
  border: 0;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: var(--ink);
}

.sr-bar .btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
}

.sr-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 44px 72px;
  flex: 1;
}

.sr-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6, 21, 43, 0.08);
}

.sr-toolbar h1 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
}

.sr-block { margin-bottom: 36px; }

.sr-boutique-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sr-boutique-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(6, 21, 43, 0.08);
  background: #fff;
}

.sr-boutique-mini img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--shop-color, #0a172a);
}

.sr-boutique-mini strong {
  display: block;
  font-size: 0.92rem;
}

.sr-boutique-mini span {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: rgba(6, 21, 43, 0.55);
}

.sr-results {
  display: grid;
  gap: 12px;
}

.sr-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(6, 21, 43, 0.08);
  background: #fff;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s ease;
}

.sr-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(4, 17, 36, 0.08);
}

.sr-row-media {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f2f5;
}

.sr-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-row-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.sr-row-body .card-shop {
  margin-bottom: 8px;
}

.sr-row-body .card-shop a {
  color: #0b5cab;
  font-weight: 600;
}

.sr-row-body .card-shop a:hover { text-decoration: underline; }

.sr-row-desc {
  margin: 0 0 10px;
  color: rgba(6, 21, 43, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 56ch;
}

.sr-row-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: right;
  min-width: 90px;
}

.sr-row-price s {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(6, 21, 43, 0.4);
}

.sr-chip {
  display: inline-block;
  margin-right: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f0f2f5;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(6, 21, 43, 0.55);
}

@media (max-width: 900px) {
  .sr-layout { grid-template-columns: 1fr; padding: 20px 16px 56px; }
  .sr-hero { padding: 14px 16px; }
  .sr-boutique-row { grid-template-columns: 1fr; }
  .sr-row {
    grid-template-columns: 96px 1fr;
    grid-template-areas:
      "media body"
      "media price";
  }
  .sr-row-media { width: 96px; height: 96px; grid-area: media; }
  .sr-row-body { grid-area: body; }
  .sr-row-price { grid-area: price; text-align: left; }
  .sr-bar { grid-template-columns: auto 1fr; }
  .sr-bar .btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
}


/* Keep overflow safe — clip on html breaks position:fixed (Safari + Chrome) */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Mini-dock: if no backdrop-filter, keep a soft frosted look (not flat white) */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .mini-dock-panel {
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.88),
      rgba(230, 236, 245, 0.78)
    );
  }
}

.pdp-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: #eef1f5;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.pdp-thumb.is-active {
  border-color: #06152b;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb:hover {
  transform: translateY(-1px);
}


/* Windows / keyboard: force lift without relying on :hover alone */
.liquid-card.is-lift {
  transform: translateY(-4px);
}
.liquid-btn.is-press {
  transform: translateY(-2px) scale(1.02);
}


.carousel.is-animating {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

.promo-band .btn-primary {
  min-height: 44px;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: #041124 !important;
  color: #fff !important;
  border: 1px solid #041124 !important;
  box-shadow: 0 8px 22px rgba(4, 17, 36, 0.22) !important;
}

.promo-band .btn-primary:hover,
.promo-band .btn-primary:focus-visible {
  background: #0a172a !important;
  transform: translateY(-2px);
}

.section-head .view-all {
  flex-shrink: 0;
}

/* ========== PAGE BACK + NAV BAR ========== */
.page-nav-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(6, 21, 43, 0.07);
}

.page-nav-bar .pdp-breadcrumb {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}


/* ========== PAGE BACK — classic (no view-transition / slide) ========== */
@view-transition {
  navigation: none;
}

.page-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(6, 21, 43, 0.12);
  background: #fff;
  color: #06152b;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(6, 21, 43, 0.06);
  transition:
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}
.page-back-btn svg {
  flex: 0 0 auto;
}
.page-back-btn:hover {
  background: #06152b;
  color: #fff;
  border-color: #06152b;
  box-shadow: 0 6px 16px rgba(6, 21, 43, 0.16);
}
.page-back-btn:active,
.page-back-btn.is-pressing {
  transform: scale(0.96);
  opacity: 0.92;
}

.page-back-btn--on-dark {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.page-back-btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.boutique-hero-nav {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 44px 0;
  width: 100%;
}

.boutique-page-top {
  display: none;
}

/* ========== QTY STEPPER ========== */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 52px;
  border-radius: 999px;
  overflow: hidden;
}

.qty-stepper button {
  width: 44px;
  height: 52px;
  border: 0;
  background: transparent;
  color: #06152b;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.qty-stepper button:hover {
  background: rgba(6, 21, 43, 0.06);
}

.qty-stepper [data-qty-val] {
  min-width: 36px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #06152b;
}

.pdp-layout {
  margin-bottom: 28px;
}

.pdp-ship-grid {
  margin-bottom: 28px;
}

@media (max-width: 720px) {
  .boutique-hero-nav { padding: 14px 16px 0; }
  .page-back-btn span { display: none; }
  .page-back-btn { padding: 8px 10px; }
}

/* ========== LANGUAGE MENU ========== */
.lang-menu {
  position: relative;
}

.lang-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  color: #06152b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lang-menu-btn:hover {
  background: #fff;
  border-color: rgba(6, 21, 43, 0.18);
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-chevron {
  opacity: 0.45;
}

.lang-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 72px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(6, 21, 43, 0.14);
}

.lang-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #06152b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lang-option strong {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-option:hover,
.lang-option.is-active {
  background: rgba(6, 21, 43, 0.06);
}

@media (max-width: 720px) {
  .lang-menu-btn {
    padding: 0 10px;
  }
  .lang-label {
    font-size: 0.76rem;
  }
}

/* ========== AUTH / ACCOUNT GATE ========== */
.auth-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #f4f5f7;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-auth {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(6, 21, 43, 0.06), transparent 60%),
    #f4f5f7;
}

.page-auth .auth-shell {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vh, 56px) 20px max(48px, env(safe-area-inset-bottom, 0px));
  overflow: visible;
}

.auth-shell {
  width: 100%;
}

.auth-left {
  width: min(440px, 100%);
  margin: 0 auto;
}

.auth-left-inner {
  width: 100%;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px) clamp(24px, 3vw, 32px);
  border: 1px solid rgba(6, 21, 43, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 48px rgba(6, 21, 43, 0.06);
}

.auth-eyebrow {
  margin: 0 0 8px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.4);
}

.auth-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

.auth-lede {
  margin: 10px 0 0;
  max-width: 36ch;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(6, 21, 43, 0.55);
  text-wrap: pretty;
}

.auth-lede--member {
  margin-bottom: 2px;
}

/* ========== AUTH SEGMENTS (v249) ========== */
/* Same card layout for both rows — top inverted (blue fill / white text) */

.auth-mode,
.auth-type {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.auth-mode {
  margin-top: 20px;
}

.auth-type {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 21, 43, 0.14);
}

.auth-mode::before,
.auth-type::before {
  content: none !important;
  display: none !important;
}

.auth-mode > .liquid-pill,
.auth-type > .liquid-pill {
  display: none !important;
}

.auth-mode-btn,
.auth-type-btn {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45) !important;
  color: rgba(6, 21, 43, 0.55) !important;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-mode-btn::after {
  display: none !important;
}

/* Top row active = inverted: blue inside, white text */
.auth-mode-btn.is-active {
  border-color: var(--navy, #0a172a) !important;
  background: var(--navy, #0a172a) !important;
  color: #fff !important;
  box-shadow:
    0 8px 20px rgba(4, 17, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.auth-mode-btn:not(.is-active):hover {
  border-color: rgba(6, 21, 43, 0.28);
  background: rgba(255, 255, 255, 0.65) !important;
}

/* Bottom row active = outline card (white / dark text) */
.auth-type-btn {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-type-btn.is-active {
  border-color: rgba(6, 21, 43, 0.55) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: var(--ink, #06152b) !important;
  box-shadow:
    inset 0 1px 0 #fff,
    0 6px 18px rgba(6, 21, 43, 0.1) !important;
}

.auth-type-btn:not(.is-active):hover {
  border-color: rgba(6, 21, 43, 0.28);
  background: rgba(255, 255, 255, 0.65) !important;
}

.auth-type[hidden],
.auth-field[hidden],
[data-auth-name-wrap][hidden],
[data-auth-password-confirm-wrap][hidden],
[data-auth-reseller-wrap][hidden],
[data-auth-seller-wrap][hidden] {
  display: none !important;
}

.auth-reseller-fields {
  margin: 4px 0 0;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid rgba(6, 21, 43, 0.1);
}

.auth-reseller-fields legend {
  padding: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.55);
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.auth-field {
  display: grid;
  gap: 12px;
}

.auth-field span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.42);
  line-height: 1.2;
}

.auth-field:has([required]) > span::after {
  content: " *";
  color: #b42318;
  font-weight: 800;
  letter-spacing: 0;
}

.auth-field input,
.auth-field select,
.auth-field textarea {
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(6, 21, 43, 0.12);
  border-radius: 12px;
  background: #fafbfc;
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}

.auth-field textarea {
  height: auto;
  min-height: 84px;
  padding: 12px 14px;
  resize: none;
  line-height: 1.45;
}

.auth-field input::placeholder,
.auth-field textarea::placeholder {
  color: rgba(6, 21, 43, 0.3);
}

.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
  border-color: rgba(6, 21, 43, 0.4);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6, 21, 43, 0.07);
}

.auth-error {
  margin: 0;
  font-size: 0.82rem;
  color: #b42318;
}

.page-auth .liquid-btn::after,
.page-auth .auth-submit::after,
.page-auth .auth-cta-btn::after {
  display: none !important;
}

.page-auth .liquid-btn,
.page-auth .auth-submit,
.page-auth .auth-cta-btn {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  border-radius: 12px;
}

.page-auth .auth-submit,
.page-auth .auth-cta-btn {
  background: var(--ink) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-auth .auth-submit:hover,
.page-auth .auth-cta-btn:hover {
  background: #0a1f3a !important;
  transform: none !important;
}

.page-auth .auth-member-card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #f7f8fa;
  box-shadow: none;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  margin-top: 4px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.auth-text-btn {
  margin-left: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.auth-back {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(6, 21, 43, 0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.auth-back:hover {
  color: var(--ink);
}

.auth-member-card {
  display: flex;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(6, 21, 43, 0.08);
  border-radius: 14px;
  background: #f7f8fa;
}

.auth-member-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.auth-member-card span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

.auth-member-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.auth-member-actions .btn {
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
}

.auth-btn-secondary {
  border: 1px solid rgba(6, 21, 43, 0.14);
  background: #fff;
  color: var(--ink);
}

.auth-logout {
  display: block;
  margin: 18px 0 0;
  font-size: 0.84rem;
}

/* Legacy right panel — hidden (image no longer used on account) */
.auth-right,
.auth-right-frame,
.auth-panel-img,
.auth-right-fade,
.auth-right-caption,
.auth-logo {
  display: none !important;
}

@media (max-width: 560px) {
  .page-auth .auth-shell {
    align-items: flex-start;
    padding: 20px 14px 36px;
  }

  .auth-left-inner {
    padding: 24px 18px 22px;
    border-radius: 16px;
  }

  .auth-title {
    font-size: 1.7rem;
  }
}

/* ========== PDP v53 — gallery + buy box ========== */
.pdp-gallery-wrap {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.pdp-gallery-wrap--solo {
  grid-template-columns: 1fr;
}

.pdp-thumbs-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: min(560px, 70vh);
  overflow-y: auto;
  padding: 4px 2px;
  scrollbar-width: thin;
}

.pdp-thumbs-col::-webkit-scrollbar {
  width: 4px;
}

.pdp-thumbs-col::-webkit-scrollbar-thumb {
  background: rgba(6, 21, 43, 0.15);
  border-radius: 4px;
}

.pdp-gallery {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.pdp-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #06152b;
  box-shadow: 0 8px 24px rgba(6, 21, 43, 0.14);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.pdp-gallery:hover .pdp-gallery-nav,
.pdp-gallery:focus-within .pdp-gallery-nav {
  opacity: 1;
}

.pdp-gallery-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.pdp-gallery-prev { left: 14px; }
.pdp-gallery-next { right: 14px; }

.pdp-thumb {
  width: 88px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 16px;
}

.pdp-buy-box {
  margin-top: 8px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(6, 21, 43, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 32px rgba(6, 21, 43, 0.06);
}

.pdp-actions {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin: 0;
}

.pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.pdp-trust-strip div {
  padding: 16px 18px;
}

.pdp-ship-grid {
  margin-top: 40px;
  grid-template-columns: 1fr;
  max-width: 420px;
}

.pdp-ship-grid--solo {
  max-width: 100%;
}

@media (max-width: 980px) {
  .pdp-gallery-wrap {
    grid-template-columns: 1fr;
  }

  .pdp-thumbs-col {
    flex-direction: row;
    order: 2;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }

  .pdp-thumb {
    width: 76px;
    height: 96px;
  }

  .pdp-gallery-nav {
    opacity: 1;
  }
}

@media (max-width: 820px) {
  .pdp-trust-strip {
    grid-template-columns: 1fr;
  }

  .pdp-buy-box {
    padding: 16px;
  }
}

/* ========== PRODUCT BADGES v55 ========== */
.product-tags,
.pdp-tags {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
  max-width: calc(100% - 20px);
}

.product-tags .tag,
.pdp-tags .tag {
  position: static;
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(6, 21, 43, 0.18);
  white-space: nowrap;
}

.tag--bestseller {
  background: #06152b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.tag--new {
  background: #06152b;
  color: #fff;
}

.tag--promo,
.tag--discount {
  background: #b42318;
  color: #fff;
}

.tag--discount {
  font-size: 0.92rem;
  padding: 11px 16px;
  letter-spacing: 0.04em;
}

.tag--default {
  background: #041124;
  color: #fff;
}

.pdp-gallery .product-tags {
  top: 14px;
  right: 14px;
  left: auto;
}

.pdp-gallery img,
.product-media img {
  object-position: center center;
}

.pdp-save.tag--discount {
  position: static;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 0.88rem;
  padding: 8px 14px;
  box-shadow: 0 6px 18px rgba(180, 35, 24, 0.28);
}

.pdp-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

/* ========== CAROUSEL MARQUEE v56 ========== */
.carousel.is-marquee {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

/* ========== REC + BESTSELLERS spacing v59 ========== */
.recommended {
  padding-bottom: 12px !important;
}

.bestsellers-section.content-section {
  padding-top: 8px;
  padding-bottom: 20px;
}

.bestsellers-section .section-head {
  margin-bottom: 8px;
}

.bestsellers-section .section-lead {
  margin: 0 0 10px;
}


/* ========== HOME SEARCH ========== */
.home-search-section {
  padding-top: 28px;
  padding-bottom: 48px;
}

html.is-searching .home-search-section {
  padding-top: 88px;
}

.home-search-subhead {
  margin: 28px 0 14px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.home-search-empty {
  margin: 8px 0 0;
}

/* Search product grid — same card size as Recommended (5 cols) */
.home-search-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.home-search-grid .product-card {
  min-width: 0;
}

.home-search-grid .product-media {
  max-height: none;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}

.home-search-grid .product-card h3 {
  margin-top: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-search-grid .card-shop {
  margin-top: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(6, 21, 43, 0.78);
}

.home-search-grid .price {
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .home-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .home-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* ========== PRODUCT MEDIA — soft bg + Ascend lift ========== */
.recommended .product-media,
.bestsellers-section .product-media,
.shop-grid .product-media,
.home-search-grid .product-media,
.cart-suggestions-grid .product-media,
.promo-products .product-media,
.new-grid .product-media {
  background: linear-gradient(165deg, #efeeea 0%, #e3e1db 100%);
}

.product-media--ascend,
.shop-card-media.product-media--ascend {
  background: #cbc8c6 !important;
}

.product-media--ascend img,
.shop-card-media.product-media--ascend img {
  filter: none;
  object-fit: cover;
  object-position: center center;
}

/* All products — home catalog */
.home-all-section.content-section {
  padding-bottom: 56px;
}

.home-all-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.home-all-sort select {
  min-width: 210px;
}

.home-all-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-all-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  will-change: transform, opacity;
}

.home-all-more svg {
  transition: transform 0.2s ease;
}

.home-all-more:hover svg,
.home-all-more:focus-visible svg {
  transform: translateY(3px);
}

.home-all-more.is-leaving {
  pointer-events: none;
  animation: home-all-more-leave 0.58s cubic-bezier(0.33, 0.02, 0.2, 1) forwards;
}

.home-all-more.is-enter {
  animation: home-all-more-enter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes home-all-more-leave {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(88px) scale(0.92);
  }
}

@keyframes home-all-more-enter {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-all-more.is-leaving,
  .home-all-more.is-enter {
    animation-duration: 0.22s !important;
  }
}

@media (max-width: 720px) {
  .home-all-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .home-all-sort select {
    width: 100%;
    min-width: 0;
  }
}

.home-all-boutiques-section,
#all-boutiques {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.home-all-boutiques-section .shop-count {
  margin: 0 0 18px;
}


/* ========== SOFT SECTION NAV ========== */
#all-products,
#all-boutiques,
#promo-picks,
#bestsellers-title,
#promo-title,
#boutiques-title,
#rec-title,
.bestsellers-section,
.promo-band,
.boutiques-section,
.recommended,
.home-all-section,
.home-all-boutiques-section {
  scroll-margin-top: calc(var(--header-h, 72px) + 20px);
}

html.is-soft-nav {
  cursor: progress;
}

section.is-section-arrive,
#promo-picks.is-section-arrive,
.promo-products.is-section-arrive {
  animation: reselp-section-arrive 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reselp-section-arrive {
  0% {
    box-shadow: inset 0 0 0 0 rgba(6, 21, 43, 0);
  }
  35% {
    box-shadow: inset 0 0 0 2px rgba(6, 21, 43, 0.14);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(6, 21, 43, 0);
  }
}

.is-arrive-card {
  animation: reselp-arrive-card 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--arrive-i, 0) * 45ms);
}

@keyframes reselp-arrive-card {
  from {
    opacity: 0.35;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Soften only — Windows Animation effects off must not kill UI motion */
@media (prefers-reduced-motion: reduce) {
  html.is-soft-nav,
  section.is-section-arrive,
  .is-arrive-card {
    animation-duration: 0.22s !important;
    animation-delay: 0.01s !important;
  }
}


/* ========== HOME CATEGORY STRIP ========== */
.recommended .home-cats {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto 10px;
  padding: 0;
  position: relative;
  z-index: 6;
  /* Keep hover lift/shadow from being clipped by section white */
  overflow: visible;
}

.home-cats {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.home-cats-row {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
  min-width: 0;
}
.home-cats-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.home-cats-track {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 2px 18px;
  margin: -8px 0 -6px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.home-cats-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 4px 0 10px;
}
.home-cats-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(6, 21, 43, 0.12);
  background: #fff;
  color: #06152b;
  box-shadow: 0 2px 8px rgba(6, 21, 43, 0.06);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.home-cats-arrow:hover,
.home-cats-arrow:focus-visible {
  background: #06152b;
  color: #fff;
  border-color: #06152b;
}
.home-cats-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.home-cat-chip--other {
  background: #fff;
  border-style: dashed;
  border-color: rgba(6, 21, 43, 0.22);
}
.home-cat-chip--other[aria-expanded="true"] {
  background: #06152b;
  color: #fff;
  border-style: solid;
  border-color: #06152b;
}
.home-cats-other {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 16px;
  background: #f7f8fa;
  border: 1px solid rgba(6, 21, 43, 0.08);
  animation: home-cats-other-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home-cats-other[hidden] {
  display: none !important;
}
@keyframes home-cats-other-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.home-cats-other-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.home-cats-other-tags .home-cat-chip {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.78rem;
  background: #fff;
}
@media (max-width: 820px) {
  .home-cats-row {
    flex-wrap: wrap;
  }
  .home-cats-viewport {
    order: 1;
    flex: 1 1 calc(100% - 96px);
  }
  .home-cats-arrow {
    order: 1;
  }
  .home-cats-actions {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0;
  }
}

.home-cats-track::-webkit-scrollbar {
  display: none;
}

.home-cat-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #06152b;
  background: #f4f5f7;
  border: 1px solid rgba(6, 21, 43, 0.1);
  box-shadow: 0 2px 8px rgba(6, 21, 43, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.28s ease;
  white-space: nowrap;
}

.home-cat-chip:hover,
.home-cat-chip:focus-visible {
  transform: translateY(-2px);
  background: #06152b;
  color: #fff;
  border-color: #06152b;
  /* Soft full shadow — room above/below inside track padding */
  box-shadow:
    0 8px 20px rgba(6, 21, 43, 0.2),
    0 2px 6px rgba(6, 21, 43, 0.1);
}

.home-cat-chip.is-active {
  background: #06152b;
  color: #fff;
  border-color: #06152b;
  box-shadow: 0 6px 16px rgba(6, 21, 43, 0.16);
}

.home-cat-chip--soft {
  background: rgba(6, 21, 43, 0.05);
}

/* Soft fade into the Recommended title — no hard white cut */
.recommended .home-cats::after {
  content: "";
  display: block;
  height: 12px;
  margin: 2px 0 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(244, 245, 247, 0.55) 45%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 720px) {
  .recommended .home-cats {
    margin-bottom: 8px;
  }
  .home-cats-track {
    padding: 10px 0 16px;
  }
  .home-cat-chip {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.78rem;
  }
}

/* Top boutiques — View all more visible */
.boutiques-section .view-all--emphasis,
.view-all.view-all--emphasis {
  padding: 11px 18px;
  font-size: 0.92rem;
  background: #06152b;
  color: #fff;
  border-color: #06152b;
  box-shadow: 0 8px 22px rgba(6, 21, 43, 0.22);
}

.boutiques-section .view-all--emphasis:hover,
.boutiques-section .view-all--emphasis:focus-visible,
.view-all.view-all--emphasis:hover,
.view-all.view-all--emphasis:focus-visible {
  background: #0a2240;
  color: #fff;
  border-color: #0a2240;
}

.boutiques-section .view-all--emphasis.is-expanded {
  background: #fff;
  color: #06152b;
  border-color: rgba(6, 21, 43, 0.16);
}

.boutiques-section .view-all--emphasis svg {
  transition: transform 0.25s ease;
}


/* Shop covers — true 16:9 assets, keep subject framed */
.boutique-hero[data-shop="ascend"] .boutique-hero-cover img,
.boutique-card[data-shop="ascend"] .boutique-cover img,
a[href*="id=ascend"] .boutique-cover img {
  object-position: center 40%;
}
.boutique-hero[data-shop="morgan-is-cool"] {
  min-height: clamp(260px, 30vw, 360px);
  background: #0a0a0a;
}
.boutique-hero[data-shop="morgan-is-cool"] .boutique-hero-cover img {
  /* Full graffiti visible in short hero — never chop MORGAN / IS / COOL */
  object-fit: contain;
  object-position: center center;
  opacity: 0.55;
}
.boutique-card[data-shop="morgan-is-cool"] .boutique-cover img,
a[href*="id=morgan"] .boutique-cover img {
  object-fit: cover;
  object-position: center 45%;
}
/* Morgan products — always keep subject framed (no head/bag crop) */
.product-media--morgan,
.shop-card-media.product-media--morgan {
  background: #141820 !important;
}
.product-media--morgan img,
.shop-card-media.product-media--morgan img,
.shop-grid .product-media img[src*="morgan-is-cool/products/"],
.home-search-grid .product-media img[src*="morgan-is-cool/products/"],
.home-all-grid .product-media img[src*="morgan-is-cool/products/"],
.home-cat-spotlight-grid .product-media img[src*="morgan-is-cool/products/"],
.carousel .product-media img[src*="morgan-is-cool/products/"],
.pdp-gallery img[src*="morgan-is-cool/products/"],
.pdp-main-img[src*="morgan-is-cool/products/"],
img[src*="morgan-is-cool/products/"] {
  object-fit: cover !important;
  object-position: center center !important;
}
/* Tote bag — keep full bag in frame (no crop on handles / text) */
.product-media img[src*="morgan-is-cool/products/m04-"],
.shop-card-media img[src*="morgan-is-cool/products/m04-"],
.pdp-gallery img[src*="morgan-is-cool/products/m04-"],
.pdp-main-img[src*="morgan-is-cool/products/m04-"],
img[src*="morgan-is-cool/products/m04-"] {
  object-fit: contain !important;
  object-position: center center !important;
}
.boutique-avatar[src*="ascend"],
.boutique-hero-avatar[src*="ascend"],
.boutique-avatar[src*="morgan"],
.boutique-hero-avatar[src*="morgan"] {
  object-fit: cover;
  background: #0a0a0a;
}


/* Category spotlight — grid (3 rows), same shell width as Recommended */
.home-cat-spotlight {
  margin: 4px 0 22px;
  padding: 0;
  max-width: 100%;
}
.home-cat-spotlight[hidden] {
  display: none !important;
}
.home-cat-spotlight .section-head {
  margin-bottom: 14px;
}
.home-cat-spotlight-grid {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.home-cat-spotlight-grid .product-media {
  max-height: none;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}
.home-cat-spotlight-more-wrap {
  max-width: var(--shell);
  width: 100%;
  margin: 18px auto 0;
}
@media (max-width: 1100px) {
  .home-cat-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 820px) {
  .home-cat-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}


.boutique-hero[data-shop="star-fond"] .boutique-hero-cover img,
.boutique-card[data-shop="star-fond"] .boutique-cover img,
a[href*="id=star-fond"] .boutique-cover img {
  object-position: center 40%;
}

/* Star Fond page hero: clean photo (no baked type) + readable UI copy */
.boutique-hero[data-shop="star-fond"] {
  background: #0a0a0a;
}
.boutique-hero[data-shop="star-fond"] .boutique-hero-cover img {
  opacity: 0.78;
  object-position: 72% center;
}
.boutique-hero[data-shop="star-fond"] .boutique-hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 16, 0.88) 0%, rgba(6, 10, 16, 0.62) 34%, rgba(6, 10, 16, 0.18) 58%, transparent 78%),
    linear-gradient(0deg, rgba(6, 10, 16, 0.45) 0%, transparent 42%);
  pointer-events: none;
}
.boutique-card[data-shop="star-fond"] .boutique-cover img,
a[href*="id=star-fond"] .boutique-cover img {
  object-position: center 38%;
}

.boutique-avatar[src*="star-fond"],
.boutique-hero-avatar[src*="star-fond"] {
  object-fit: cover;
  background: #000;
}


/* Star Fond — subject-reframed 4:5 (full head + tee, no side dead space) */
.product-media--star-fond,
.shop-card-media.product-media--star-fond {
  aspect-ratio: 4 / 5 !important;
  max-height: none !important;
  background: #e8e8e8 !important;
  overflow: hidden;
}
.product-media--star-fond img,
.shop-card-media.product-media--star-fond img,
.shop-grid .product-media img[src*="star-fond/products/"],
.home-search-grid .product-media img[src*="star-fond/products/"],
.home-all-grid .product-media img[src*="star-fond/products/"],
.home-cat-spotlight-grid .product-media img[src*="star-fond/products/"],
.carousel .product-media img[src*="star-fond/products/"],
.pdp-gallery img[src*="star-fond/products/"],
.pdp-thumb img[src*="star-fond/products/"],
.pdp-main-img[src*="star-fond/products/"],
img[src*="star-fond/products/"] {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
}
.pdp-gallery:has(img[src*="star-fond/products/"]),
.pdp-gallery-wrap:has(img[src*="star-fond/products/"]) .pdp-gallery {
  aspect-ratio: 4 / 5;
}

.pdp-pack-preview {
  margin: 10px 0 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  background: #f7f8fa;
}
.pdp-pack-preview[hidden] { display: none !important; }
.pdp-pack-preview-stage {
  aspect-ratio: 4 / 5;
  max-height: 280px;
  margin: 0 auto 10px;
  border-radius: 14px;
  overflow: hidden;
  background: #efeae2;
}
.pdp-pack-preview-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pdp-pack-preview-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.pdp-pack-preview-thumb {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 12px;
  border: 1.5px solid rgba(6, 21, 43, 0.12);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: #06152b;
  text-align: left;
}
.pdp-pack-preview-thumb img {
  width: 44px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.pdp-pack-preview-thumb.is-active,
.pdp-pack-preview-thumb[aria-selected="true"] {
  border-color: #06152b;
  box-shadow: 0 0 0 1px #06152b;
}
.pdp-pack-preview-hint {
  margin: 8px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(6, 21, 43, 0.5);
}

/* Star Fond tee packs — compact accordion */
.pdp-pack {
  margin: 0 0 16px;
  padding: 12px 0 2px;
  border-top: 1px solid rgba(6, 21, 43, 0.1);
}
.pdp-pack-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.pdp-pack-save {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  background: #f0f0f0;
  padding: 3px 7px;
  border-radius: 4px;
}
.pdp-pack-lede {
  margin: 0 0 10px;
  font-size: 0.8rem;
  color: rgba(6, 21, 43, 0.58);
}
.pdp-pack-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-pack-slot {
  border: 1px solid rgba(6, 21, 43, 0.12);
  border-radius: 10px;
  background: #fafafa;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.pdp-pack-slot.is-complete {
  border-color: rgba(17, 17, 17, 0.28);
  background: #fff;
}
.pdp-pack-slot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  margin: 0;
}
.pdp-pack-slot-head::-webkit-details-marker { display: none; }
.pdp-pack-slot-head::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid rgba(6, 21, 43, 0.45);
  border-bottom: 1.6px solid rgba(6, 21, 43, 0.45);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  flex: none;
  margin-left: 4px;
}
.pdp-pack-slot[open] .pdp-pack-slot-head::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.pdp-pack-slot-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.48);
  flex: none;
}
.pdp-pack-slot-value {
  flex: 1;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #111;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-pack-slot-body {
  padding: 0 10px 10px;
  border-top: 1px solid rgba(6, 21, 43, 0.08);
}
.pdp-pack-tees {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 2px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin: 0;
}
.pdp-pack-tee {
  flex: 0 0 52px;
  width: 52px;
  height: 68px;
  padding: 0;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
}
.pdp-pack-tee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #e8e8e8;
  aspect-ratio: auto;
  border-radius: 0;
}
.pdp-pack-tee.is-active,
.pdp-pack-tee[aria-selected="true"] {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}
.pdp-pack-sizes { margin-top: 2px; }
.pdp-pack-sizes .pdp-size-btn {
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  font-size: 0.75rem;
}
.pdp-pack.is-error .pdp-pack-slot:not(.is-complete) {
  border-color: #b91c1c;
}
.cart-item-pack {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.7);
  line-height: 1.35;
}
.cart-item-pack li + li { margin-top: 2px; }
.tag--pack {
  background: #111;
  color: #fff;
}


/* Demo honesty + cookie bar */
.tag--soldout {
  background: #111;
  color: #fff;
}
.tag--soon {
  background: #c4a574;
  color: #111;
}
.shop-card-sale-closed {
  margin: 6px 0 0;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(180, 83, 9, 0.12);
  color: #9a3412;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}
.shop-card.is-sale-closed {
  opacity: 0.96;
}
.pdp-unavailable-banner {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(180, 83, 9, 0.12);
  border: 1px solid rgba(180, 83, 9, 0.28);
  color: #9a3412;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}
.pdp-unavailable-banner span {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  color: #9a3412;
  opacity: 0.9;
}
.pdp-sale-closed {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid rgba(154, 52, 18, 0.22);
}
.pdp-sale-closed-label {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a3412;
}
.pdp-sale-closed-hint {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #9a3412;
  line-height: 1.4;
}
.seller-sale-box {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #f6f7f9;
  border: 1px solid rgba(6, 21, 43, 0.08);
  box-shadow: none;
}
.seller-sale-hint {
  margin: 0 0 12px;
  font-size: 0.84rem;
}
.seller-sale-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}
.seller-sale-label-field {
  margin: 0;
  min-width: 160px;
}
.seller-sale-label-field[hidden] {
  display: none !important;
}

.demo-note {
  display: none !important;
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.82);
  background: #041124;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #fff;
  background: #041124;
  box-shadow:
    0 22px 50px rgba(4, 17, 36, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  animation: cookieBarIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cookie-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 10px;
  right: auto;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.55));
  pointer-events: none;
}
@keyframes cookieBarIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-bar { animation-duration: 0.22s !important; }
}
.cookie-bar-inner {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}
.cookie-bar-title {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
}
.cookie-bar-text {
  margin: 0;
  max-width: 42ch;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.cookie-bar-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-bar-text a:hover { opacity: 0.85; }
.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-essential {
  border: 1.5px solid rgba(255, 255, 255, 0.38) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  font-weight: 700;
}
.cookie-essential:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}
.cookie-accept {
  border: 0 !important;
  background: #fff !important;
  color: #06152b !important;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.cookie-accept:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .cookie-bar { padding: 16px 16px 16px 20px; }
  .cookie-bar-inner { flex-direction: column; align-items: stretch; }
  .cookie-bar-actions { flex-direction: column; }
  .cookie-bar-actions .btn { width: 100%; justify-content: center; }
}

.auth-demo-note {
  margin: 10px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(6, 21, 43, 0.5);
}


/* Brand logo swap (Vision Rebel on visionrebel.2bgroups.com) */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  display: none;
  height: 48px;
  width: auto;
  max-width: min(380px, 70vw);
  object-fit: contain;
}
.logo-text { display: inline; }
html.brand-vision-rebel .logo-img { display: block; }
html.brand-vision-rebel .logo-text { display: none; }
html.brand-vision-rebel .footer-brand .logo-img { height: 34px; }
@media (max-width: 720px) {
  .logo-img { height: 36px; }
}

/* Vision Rebel — boutique card + page (brand DA banner, cream) */
.boutique-card a[href*="id=vision-rebels"] .boutique-cover img:first-child,
a[href*="id=vision-rebels"] .boutique-cover img:first-child {
  object-fit: cover;
  object-position: center center;
}

.boutique-card a[href*="id=vision-rebels"] .boutique-avatar,
a[href*="id=vision-rebels"] .boutique-avatar {
  width: 88px;
  height: 88px;
  padding: 0 !important;
  background: #f5f2ea;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 18px;
}

.boutique-hero[data-shop="vision-rebels"] {
  --shop-color: #f5f2ea;
  background: #f5f2ea;
  color: #111;
  min-height: clamp(300px, 46vh, 460px);
}

.boutique-hero[data-shop="vision-rebels"] .boutique-hero-cover img {
  opacity: 1;
  object-fit: contain !important;
  object-position: center 28% !important;
  width: 100%;
  height: 100%;
}

.boutique-hero[data-shop="vision-rebels"] .boutique-hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(245, 242, 234, 0.72) 68%, #f5f2ea 100%);
  pointer-events: none;
}

.boutique-hero[data-shop="vision-rebels"] .boutique-hero-inner,
.boutique-hero[data-shop="vision-rebels"] h1,
.boutique-hero[data-shop="vision-rebels"] .eyebrow,
.boutique-hero[data-shop="vision-rebels"] .boutique-stats {
  color: #111;
}

.boutique-hero[data-shop="vision-rebels"] .boutique-hero-tag,
.boutique-hero[data-shop="vision-rebels"] .boutique-hero-bio {
  color: rgba(17, 17, 17, 0.72);
}

.boutique-hero[data-shop="vision-rebels"] .page-back-btn {
  color: #111;
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.boutique-hero[data-shop="vision-rebels"] .page-back-btn:hover {
  background: #fff;
}

.boutique-hero-avatar[src*="vision-rebels"] {
  width: 112px;
  height: 112px;
  background: #f5f2ea;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  border: 3px solid rgba(255,255,255,0.92);
  border-radius: 22px;
}
.product-media--vision-rebels,
.shop-card-media.product-media--vision-rebels {
  background: #f3f3ee;
}
.product-media--vision-rebels img,
.shop-card-media.product-media--vision-rebels img,
.shop-grid .product-media img[src*="vision-rebels/products/"],
.home-search-grid .product-media img[src*="vision-rebels/products/"],
.home-all-grid .product-media img[src*="vision-rebels/products/"],
.pdp-gallery img[src*="vision-rebels/products/"] {
  object-fit: contain !important;
  object-position: center center !important;
}


/* ========== ACCOUNT STUDIO + DASH (v256) ========== */
body.auth-body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100dvh;
  height: auto;
  background: var(--navy, #06152b);
}

.page-auth {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--navy, #06152b);
}

.auth-shell--studio {
  position: relative;
  flex: 1 0 auto;
  min-height: calc(100dvh - var(--header-h, 64px));
  overflow: visible !important;
  display: grid;
  place-items: start center;
  align-content: start;
  padding: 28px 20px 56px;
  isolation: isolate;
}

.page-auth.is-seller-wide .auth-shell--studio {
  place-items: start center;
  min-height: calc(100dvh - var(--header-h, 64px));
  padding: 28px 20px 64px;
}

.page-auth > .site-footer {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-top: 0;
  background: #020814;
}

body.account-body .page-auth > .site-footer {
  display: none;
}

/* Photo only behind the form shell — not under the footer / overscroll */
.auth-studio-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.auth-studio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.auth-shell--studio .auth-glass {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: none;
  overflow: visible;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 60px rgba(6, 21, 43, 0.16);
  transition: box-shadow 0.25s ease;
}

.auth-shell--studio .auth-left-inner {
  width: 100%;
  box-sizing: border-box;
  padding: 28px 32px 32px;
  max-height: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-auth.is-seller-wide .auth-shell--studio .auth-glass {
  width: min(980px, calc(100vw - 40px));
}

.page-auth.is-seller-wide .auth-shell--studio .auth-left-inner {
  padding: 24px 32px 36px;
  justify-content: flex-start;
}

.page-auth.is-seller-wide .auth-title {
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  margin-bottom: 6px;
}

.page-auth.is-seller-wide .auth-lede {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.auth-title,
.auth-lede {
  transition: none;
}

[data-auth-guest].is-swap .auth-title,
[data-auth-guest].is-swap .auth-lede {
  opacity: 1;
  transform: none;
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.auth-form.is-morphing,
.auth-form.is-morph-in {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.auth-password-wrap {
  position: relative;
  display: grid;
}

.auth-password-wrap input {
  width: 100%;
  padding-right: 48px;
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(6, 21, 43, 0.45);
  cursor: pointer;
}

.auth-password-toggle:hover {
  color: var(--ink, #06152b);
  background: rgba(6, 21, 43, 0.05);
}

.auth-password-toggle svg[hidden] {
  display: none !important;
}

.auth-form.is-morphing {
  opacity: 0.25;
  transform: translateY(10px) scale(0.985);
  filter: blur(2px);
}

.auth-form.is-morph-in {
  animation: authFormIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes authFormIn {
  from {
    opacity: 0.2;
    transform: translateY(12px) scale(0.98);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.auth-seller-grid:not([hidden]),
[data-auth-name-wrap]:not([hidden]),
[data-auth-password-confirm-wrap]:not([hidden]),
.auth-type:not([hidden]) {
  animation: authReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes authReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-shell--studio .auth-glass,
  .auth-form,
  .auth-title,
  .auth-lede,
  .auth-mode .liquid-pill,
  .auth-type .liquid-pill {
    transition-duration: 0.22s !important;
    animation-duration: 0.22s !important;
  }
}

.auth-identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-auth.is-seller-wide .auth-identity-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.auth-oauth {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}
.auth-oauth[hidden] {
  display: none !important;
}
.auth-oauth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(6, 21, 43, 0.12);
  background: transparent;
  color: #06152b;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.auth-oauth-btn:hover {
  background: rgba(6, 21, 43, 0.04);
  border-color: rgba(6, 21, 43, 0.22);
}
.auth-oauth-btn svg {
  flex: none;
}
.auth-oauth-btn[hidden] {
  display: none !important;
}
.auth-oauth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.38);
}
.auth-oauth-divider::before,
.auth-oauth-divider::after {
  content: "";
  height: 1px;
  background: rgba(6, 21, 43, 0.1);
}

.auth-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.auth-form-actions .auth-submit,
.auth-form-actions .btn {
  flex: 1;
  justify-content: center;
  min-height: 50px;
}

.auth-seller-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin: 4px 0 0;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid rgba(6, 21, 43, 0.08);
}

.auth-seller-grid[hidden] {
  display: none !important;
}

.auth-seller-grid legend {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

.auth-field--wide { grid-column: 1 / -1; }

.auth-hint {
  margin: 0.2rem 0 0.55rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted, #6b7280);
}
.seller-photos-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 0.5rem;
  margin: 0.35rem 0 0.65rem;
}
.seller-photos-list:empty { display: none; }
.seller-photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 32, 0.12);
  background: #f3f4f6;
}
.seller-photo-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 18, 28, 0.72);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.seller-photo-remove:hover { background: rgba(15, 18, 28, 0.9); }
.seller-photos-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px dashed rgba(20, 24, 32, 0.28);
  background: transparent;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}
.seller-photos-add:hover { border-style: solid; background: rgba(20, 24, 32, 0.04); }
.seller-photos-add.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.auth-success {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  text-align: left;
}

.auth-success[hidden] {
  display: none !important;
}

.auth-success h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.auth-success p {
  margin: 0;
  color: rgba(6, 21, 43, 0.65);
  line-height: 1.5;
}

.auth-demo-note { display: none !important; }

.account-pending-banner {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.08);
}

.account-pending-banner h1 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.account-pending-banner p {
  margin: 0 0 8px;
  color: rgba(6, 21, 43, 0.65);
  line-height: 1.5;
}

body.account-body .page-auth {
  min-height: 100dvh;
  background: #f4f5f7;
}

.account-dash {
  padding: 28px 24px 64px;
}

.account-dash-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 24px;
  padding: 20px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.08);
  box-shadow: 0 10px 30px rgba(6, 21, 43, 0.04);
}

.account-sidebar-user {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6, 21, 43, 0.08);
}

.account-sidebar-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--navy, #0a172a);
  color: #fff;
  font-weight: 700;
}

.account-sidebar-user strong { display: block; font-size: 0.95rem; }
.account-sidebar-user span,
.account-sidebar-user em {
  display: block;
  font-size: 0.75rem;
  color: rgba(6, 21, 43, 0.5);
  font-style: normal;
}

.account-sidebar-nav {
  display: grid;
  gap: 4px;
}

.account-sidebar-link {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(6, 21, 43, 0.7);
  cursor: pointer;
}

.account-sidebar-link.is-active,
.account-sidebar-link:hover {
  background: rgba(6, 21, 43, 0.06);
  color: var(--ink);
}

.account-sidebar-logout {
  margin-top: 18px;
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(6, 21, 43, 0.45);
  cursor: pointer;
}

.account-main { min-width: 0; }

.account-page-header { margin-bottom: 22px; }
.account-page-header--row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.account-page-title {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
}

.account-page-subtitle {
  display: none !important;
}

.account-page-header--tight .account-page-title { margin-bottom: 0; }

.account-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.account-card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.08);
  box-shadow: 0 8px 24px rgba(6, 21, 43, 0.04);
}

.account-card--wide { grid-column: 1 / -1; }
.pdp-shipping-estimate {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.86rem;
  color: var(--muted, #6b7280);
}
.pdp-shipping-estimate strong { color: inherit; }
.checkout-ship-note {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted, #6b7280);
}
.account-table--shipping-matrix .account-table-head,
.account-table--shipping-matrix .account-table-row {
  grid-template-columns: 110px repeat(auto-fit, minmax(70px, 1fr));
  overflow-x: auto;
}
.boutique-card--sponsored {
  outline: 2px solid rgba(212, 175, 55, 0.55);
  outline-offset: -2px;
}
.boutique-sponsored-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #f7e6b0, #d4af37);
  color: #241c04;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
.account-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-end;
}
.account-card h3 { margin: 0 0 12px; font-size: 1rem; }
.account-card .muted { color: rgba(6, 21, 43, 0.5); font-size: 0.9rem; }

.account-info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(6, 21, 43, 0.06);
  font-size: 0.92rem;
}
.account-info-row span { color: rgba(6, 21, 43, 0.5); }

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin-bottom: 16px;
  align-items: start;
}

.account-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.account-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(6, 21, 43, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.account-ok {
  color: #1a6b4a;
  font-size: 0.86rem;
  font-weight: 600;
}

.account-text-btn {
  display: inline-block;
  margin-top: 8px;
  border: 0;
  background: none;
  padding: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.account-table { display: grid; gap: 0; }
.account-table-head,
.account-table-row {
  display: grid;
  grid-template-columns: 100px 110px 1fr 120px;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 21, 43, 0.08);
  font-size: 0.88rem;
}
.account-table-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

@media (max-width: 900px) {
  .account-dash-inner { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .account-card-grid,
  .account-form-grid,
  .auth-seller-grid,
  .page-auth.is-seller-wide .auth-identity-grid { grid-template-columns: 1fr; }
  .account-table-head,
  .account-table-row { grid-template-columns: 1fr 1fr; }
  .page-auth.is-seller-wide .auth-shell--studio .auth-glass { width: min(440px, 100%); }
}

/* —— Account Support / Withdrawals —— */
.account-support-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(260px, 340px) 1fr;
  align-items: start;
}
.account-support-list-scroll {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  margin: 12px 0 16px;
}
.account-support-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  cursor: pointer;
}
.account-support-item.is-active {
  border-color: #111;
  background: #f4f4f5;
}
.account-support-item .account-badge { align-self: flex-start; }
.account-badge--alert {
  background: #fee2e2;
  color: #991b1b;
}
.account-support-new { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 14px; }
.account-support-thread { min-height: 420px; display: flex; flex-direction: column; padding: 0 !important; overflow: hidden; }
.account-support-thread-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.account-support-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fafafa;
}
.account-support-bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}
.account-support-bubble--user { background: #fff; border: 1px solid rgba(0,0,0,0.08); }
.account-support-bubble--pro { margin-left: auto; background: #111; color: #fff; }
.account-support-meta { font-size: 11px; opacity: 0.65; margin-bottom: 4px; }
.account-support-reply {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.account-support-reply textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 10px 12px;
  font: inherit;
  resize: vertical;
}
@media (max-width: 900px) {
  .account-support-layout { grid-template-columns: 1fr; }
}

/* Seller pending / suspended product veil */
.seller-shop-card-media { position: relative; }
.seller-shop-card.is-pending,
.seller-shop-card.is-dimmed { opacity: 1; }
.seller-shop-pending-veil {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 8px;
  z-index: 2;
}
.seller-shop-pending-veil small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.85;
}
.seller-shop-pending-clock { font-size: 22px; line-height: 1; }
.seller-shop-card .shop-card-media { position: relative; }
.seller-shop-pending-veil.is-changes {
  background: rgba(91, 33, 182, 0.72);
  cursor: pointer;
  border: 0;
  width: 100%;
  font: inherit;
  color: #fff;
}
.seller-shop-pending-veil.is-changes:hover,
.seller-shop-pending-veil.is-changes:focus-visible {
  background: rgba(76, 29, 149, 0.84);
  outline: none;
}
.seller-shop-pending-veil.is-changes .seller-shop-pending-clock {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.35));
}

/* ========== CHECKOUT ========== */
.checkout-page {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(180, 140, 90, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(6, 21, 43, 0.06), transparent 50%),
    #f7f4ef;
}
.checkout-step-pill {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #06152b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.checkout-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}
.checkout-panel,
.checkout-summary {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(6,21,43,0.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(6,21,43,0.07);
  backdrop-filter: blur(10px);
}
.checkout-panel { padding: 28px 28px 32px; }
.checkout-summary { padding: 24px; position: sticky; top: 88px; }
.checkout-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(6,21,43,0.45);
}
.checkout-panel h1,
.checkout-success-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: #06152b;
}
.checkout-lede {
  margin: 12px 0 0;
  max-width: 36rem;
  color: rgba(6,21,43,0.62);
  font-size: 0.98rem;
}
.checkout-banner {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff4e8;
  color: #7a3e00;
  font-size: 0.9rem;
  font-weight: 600;
}
.checkout-form { margin-top: 28px; display: grid; gap: 22px; }
.checkout-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.checkout-form legend {
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(6,21,43,0.42);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-grid .auth-field--wide { grid-column: 1 / -1; }
.checkout-ship-list { display: grid; gap: 10px; margin-top: 14px; }
.checkout-ship-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(6,21,43,0.1);
  background: #fff;
  cursor: pointer;
}
.checkout-ship-card:has(input:checked) {
  border-color: #06152b;
  box-shadow: 0 0 0 1px #06152b;
}
.checkout-ship-body { display: grid; gap: 2px; }
.checkout-ship-body strong { font-size: 0.95rem; color: #06152b; }
.checkout-ship-body span { font-size: 0.82rem; color: rgba(6,21,43,0.5); }
.checkout-ship-price { font-weight: 800; tabular-nums: true; }
.checkout-pay-btn { width: 100%; height: 52px; font-size: 0.95rem; }
.checkout-trust {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(6,21,43,0.45);
}
.checkout-summary h2 {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(6,21,43,0.45);
}
.checkout-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checkout-lines li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: start;
}
.checkout-line-media {
  width: 56px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #efeae2;
  flex-shrink: 0;
}
.checkout-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.checkout-lines li.is-unavailable {
  opacity: 0.85;
}
.checkout-lines li.is-unavailable .checkout-line-media {
  filter: grayscale(0.35);
}
.checkout-line-blocked {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a3412;
}
.checkout-banner.is-warn {
  background: #fff7ed;
  border-color: #fdba74;
  color: #9a3412;
}
.checkout-line-copy { display: grid; gap: 2px; }
.checkout-line-copy strong { font-size: 0.92rem; color: #06152b; }
.checkout-line-copy span { font-size: 0.8rem; color: rgba(6,21,43,0.5); }
.checkout-line-shop { color: rgba(6,21,43,0.38) !important; }
.checkout-line-total { font-weight: 800; font-size: 0.92rem; }
.checkout-totals {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(6,21,43,0.08);
  display: grid;
  gap: 8px;
}
.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(6,21,43,0.62);
}
.checkout-totals-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(6,21,43,0.08);
  color: #06152b !important;
  font-size: 1.05rem !important;
}
.checkout-empty,
.checkout-success {
  max-width: 640px;
  margin: 48px auto;
  text-align: center;
  padding: 40px 24px;
}
.checkout-success-lede {
  margin: 14px auto 0;
  max-width: 28rem;
  color: rgba(6,21,43,0.62);
}
.checkout-order-id {
  margin: 22px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: #06152b;
}
.checkout-success-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(6,21,43,0.15);
  color: #06152b;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ACCOUNT v2 — hero + tabs (not the P1P sidebar), wishlist, OTP
   ═══════════════════════════════════════════════════════════════ */

/* Fix: display rules on these shells used to override the [hidden] attribute,
   so the dashboard rendered under the auth form. */
.auth-shell--studio[hidden],
.account-dash[hidden],
.auth-code[hidden],
.auth-form[hidden],
.auth-mode[hidden],
.auth-type[hidden],
.auth-success[hidden] {
  display: none !important;
}

/* OTP step — CSS lock so setMode/i18n cannot resurrect the password form */
[data-auth-guest][data-step="code"] .auth-form,
[data-auth-guest][data-step="code"] .auth-mode,
[data-auth-guest][data-step="code"] .auth-type,
[data-auth-guest][data-step="code"] .auth-success {
  display: none !important;
}
[data-auth-guest][data-step="code"] .auth-code {
  display: grid !important;
}

/* Guest login: no footer / mini-dock noise under the form */
body.auth-body .page-auth > .site-footer,
body.auth-body .mini-dock,
body.auth-booting .auth-shell--studio,
body.auth-booting .account-dash {
  display: none !important;
}


/* ── OTP code step ── */
.auth-code { display: grid; gap: 16px; justify-items: center; padding: 6px 0 4px; }
.auth-code-icon {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  background: var(--ink, #06152b); color: #fff;
  box-shadow: 0 12px 30px rgba(6, 21, 43, 0.22);
}
.auth-code-grid { display: flex; gap: 8px; align-items: center; }
.auth-code-sep { width: 10px; height: 2px; border-radius: 2px; background: rgba(6, 21, 43, 0.2); margin: 0 2px; }
.auth-code-digit {
  width: 46px; height: 56px; text-align: center;
  font: 700 1.5rem/1 "Manrope", ui-monospace, monospace;
  border-radius: 14px; border: 1.5px solid rgba(6, 21, 43, 0.14); background: #fff; color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s, transform .15s;
  caret-color: var(--ink);
}
.auth-code-digit:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(6, 21, 43, 0.08); transform: translateY(-1px); }
.auth-code.is-busy .auth-code-digit { opacity: .5; pointer-events: none; }
.auth-code.is-shake .auth-code-grid { animation: authShake .45s cubic-bezier(.36,.07,.19,.97) both; }
@keyframes authShake {
  10%, 90% { transform: translateX(-2px); } 20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); } 40%, 60% { transform: translateX(6px); }
}
.auth-code-hint { margin: 0; text-align: center; font-size: .82rem; color: rgba(6, 21, 43, 0.55); max-width: 30ch; }
.auth-code-error { margin: 0; text-align: center; }
.auth-code-error.is-ok { color: #1a6b4a; }
.auth-code-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.auth-code-link {
  border: 0; background: none; padding: 0; cursor: pointer;
  font: 700 .8rem "Manrope", sans-serif; color: var(--ink); text-decoration: underline; text-underline-offset: 3px;
}
.auth-code-link:disabled { color: rgba(6, 21, 43, 0.4); text-decoration: none; cursor: default; }

/* ── Dashboard shell ── */
body.account-body .page-auth { background: #f3f2ee; }
.account-dash { padding: 0 0 72px; }

.account-hero {
  position: relative; color: #fff;
  background:
    radial-gradient(900px 300px at 85% -20%, rgba(212, 175, 55, 0.22), transparent 60%),
    radial-gradient(700px 320px at 0% 110%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, #061428 0%, #0b1f3d 55%, #071a33 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.account-hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 32px 24px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.account-hero-id { display: flex; align-items: center; gap: 16px; min-width: 0; }
.account-hero-copy { min-width: 0; }
.account-hero-eyebrow {
  margin: 0 0 4px; font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62);
}
.account-hero-name {
  margin: 0; font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.08;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.account-hero-email { margin: 4px 0 0; font-size: .86rem; color: rgba(255,255,255,.7); }
.account-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.account-hero-btn {
  display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border-radius: 999px;
  background: #fff; color: var(--ink); font: 700 .76rem "Manrope", sans-serif; letter-spacing: .04em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .15s;
}
.account-hero-btn:hover { transform: translateY(-1px); }
.account-hero-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.account-hero-btn--ghost:hover { background: rgba(255,255,255,.08); }

.account-tabs {
  max-width: 1180px; margin: 0 auto; padding: 0 16px;
  display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
}
.account-tabs::-webkit-scrollbar { display: none; }
.account-tab {
  position: relative; flex: none; display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 13px 14px; border: 0; background: none; cursor: pointer;
  color: rgba(255,255,255,.62); font: 700 .78rem "Manrope", sans-serif; letter-spacing: .02em;
  transition: color .15s;
}
.account-tab svg { width: 16px; height: 16px; flex: none; }
.account-tab:hover { color: #fff; }
.account-tab.is-active { color: #fff; }
.account-tab.is-active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #f7e6b0, #d4af37);
}
.account-tab-count {
  font-style: normal; font-size: .66rem; padding: 2px 7px; border-radius: 999px; background: #d4af37; color: #241c04;
}

.account-main {
  max-width: 1180px; margin: 0 auto; padding: 26px 24px 0; min-width: 0;
  animation: acctFade .35s ease both;
}
.account-main.is-loading { opacity: .6; }
@keyframes acctFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ── Typography helpers ── */
.acct-eyebrow {
  margin: 0 0 6px; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(6, 21, 43, 0.45);
}
.acct-eyebrow--light { color: rgba(255,255,255,.6); }
.acct-h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.acct-welcome { margin-bottom: 22px; }
.acct-welcome h2 {
  margin: 0; font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -.01em;
}
.account-page-header .account-page-title { margin: 0 0 6px; }
.acct-link {
  border: 0; background: none; padding: 0; cursor: pointer; color: var(--ink);
  font: 700 .78rem "Manrope", sans-serif; text-decoration: none; opacity: .75;
}
.acct-link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.acct-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.acct-card-head .acct-eyebrow { margin: 0; }

/* ── Stats strip ── */
.acct-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 18px; }
.acct-stats--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.acct-stat {
  display: grid; gap: 2px; text-align: left; padding: 18px 20px; border-radius: 18px;
  background: #fff; border: 1px solid rgba(6, 21, 43, 0.08); box-shadow: 0 8px 24px rgba(6, 21, 43, 0.04);
  text-decoration: none; color: var(--ink); cursor: pointer; transition: transform .15s, box-shadow .15s;
  font-family: inherit;
}
.acct-stat:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(6, 21, 43, 0.08); }
.acct-stat--static { cursor: default; }
.acct-stat--static:hover { transform: none; box-shadow: 0 8px 24px rgba(6, 21, 43, 0.04); }
.acct-stat-label { font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(6, 21, 43, 0.45); }
.acct-stat-value { font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; font-family: var(--font-serif, Georgia, serif); }
.acct-stat-value--sm { font-size: 1.05rem; font-family: "Manrope", sans-serif; }
.acct-stat-sub { font-size: .78rem; color: rgba(6, 21, 43, 0.5); }

/* ── Grids ── */
.acct-grid { display: grid; gap: 16px; }
.acct-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.acct-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 18px; }
/* Become a seller: How it works top-right; logo / pitch / samples full-width underneath */
.acct-grid--seller {
  display: block;
}
.acct-grid--seller .account-card--wide {
  grid-column: auto;
}
.seller-apply-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 20px 24px;
  align-items: start;
  margin-bottom: 4px;
}
.seller-apply-main {
  min-width: 0;
}
.seller-apply-rest {
  margin-top: 8px;
  padding-top: 4px;
  clear: both;
}
.acct-grid--seller .acct-side-notes {
  float: none;
  width: auto;
  margin: 0;
  position: relative;
  z-index: 1;
}
.acct-grid--seller .acct-side-notes .account-card,
.acct-grid--seller .account-card--nested {
  position: static;
  margin: 0;
  background: #f6f7f9;
  border: 1px solid rgba(6, 21, 43, 0.08);
  box-shadow: none;
}
.account-card { border-radius: 22px; }
.account-info-row:last-child { border-bottom: 0; }
.account-info-row strong { text-align: right; max-width: 60%; overflow-wrap: anywhere; }

/* ── Empty states ── */
.acct-empty { display: grid; justify-items: center; text-align: center; gap: 10px; }
.acct-empty p { margin: 0; color: rgba(6, 21, 43, 0.6); max-width: 46ch; }
.acct-empty--inline { padding: 12px 0 4px; }
.acct-empty--inline .btn { margin-top: 4px; }
.acct-empty--big { padding: 48px 24px; }
.acct-empty--big h3 { margin: 4px 0 0; font-family: var(--font-serif, Georgia, serif); font-size: 1.5rem; font-weight: 600; }
.acct-empty-icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: #f3f2ee; color: var(--ink); }
.acct-empty-icon svg { width: 26px; height: 26px; }
.acct-empty-heart { color: rgba(6, 21, 43, 0.25); }
.acct-empty-heart svg { width: 28px; height: 28px; }
.acct-empty-heart--big { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: #fdeceb; color: #e5484d; }
.acct-empty-heart--big svg { width: 28px; height: 28px; }

/* ── Product tiles (wishlist / picks) ── */
.account-page-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: none;
}
.account-page-stack > .acct-picks {
  order: 99;
  width: 100%;
  margin-top: 28px;
  clear: both;
}
.acct-picks { margin-top: 26px; }
.acct-picks.bestsellers-section {
  padding: 0;
  max-width: none;
  display: block;
  width: 100%;
}
.acct-picks .carousel-wrap {
  max-width: none;
  width: 100%;
}
.acct-tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.acct-tile {
  display: grid; border-radius: 18px; background: #fff; border: 1px solid rgba(6, 21, 43, 0.08); overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.acct-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(6, 21, 43, 0.1); }
.acct-tile-media { position: relative; display: block; aspect-ratio: 4 / 5; background: #efece5; }
.acct-tile-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.acct-tile-badge {
  position: absolute; top: 10px; left: 10px; padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,.92);
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.acct-tile-body { display: grid; gap: 2px; padding: 12px 14px 14px; }
.acct-tile-name { font-weight: 700; font-size: .92rem; color: var(--ink); text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct-tile-shop { font-size: .76rem; color: rgba(6, 21, 43, 0.5); }
.acct-tile-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.acct-tile-actions { display: flex; gap: 6px; }
.acct-icon-btn {
  width: 36px; height: 36px; border-radius: 12px; border: 1px solid rgba(6, 21, 43, 0.12); background: #fff; color: var(--ink);
  display: grid; place-items: center; cursor: pointer; transition: background .15s, transform .15s, border-color .15s;
}
.acct-icon-btn:hover { background: #f3f2ee; }
.acct-icon-btn.is-pop { transform: scale(.92); background: var(--ink); color: #fff; }
.acct-icon-btn svg { width: 18px; height: 18px; }
.acct-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.acct-mini { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: #efece5; text-decoration: none; }
.acct-mini img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.acct-mini span {
  position: absolute; left: 6px; bottom: 6px; padding: 2px 7px; border-radius: 999px; background: rgba(255,255,255,.92);
  font-size: .68rem; font-weight: 800; color: var(--ink);
}
.acct-cart-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.acct-cart-list li { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: start; }
.acct-cart-list img { width: 40px; aspect-ratio: 4 / 5; height: auto; border-radius: 10px; object-fit: cover; object-position: center; background: #efece5; display: block; }
.acct-cart-name { display: grid; font-size: .9rem; font-weight: 600; }
.acct-cart-name small { font-weight: 500; color: rgba(6, 21, 43, 0.5); }
.acct-order-list { list-style: none; margin: 0; padding: 0; display: grid; }
.acct-order-list li { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(6, 21, 43, 0.06); }
.acct-order-list li:last-child { border-bottom: 0; }
.acct-order-id { display: grid; font-size: .88rem; }
.acct-order-id small { color: rgba(6, 21, 43, 0.5); }
.acct-order-right { display: flex; align-items: center; gap: 10px; }
.acct-order-right .account-badge { margin: 0; }
.account-table--orders .account-table-head,
.account-table--orders .account-table-row { grid-template-columns: 110px 150px 1fr 100px 120px; align-items: center; }
.account-table-row .account-badge { margin: 0; }
.account-badge--ok { background: #e6f4ec; color: #1a6b4a; }
.account-badge--info { background: #e8f0fb; color: #1d4f91; }

/* ── CTA band (become a seller) ── */
.acct-cta-band {
  margin-top: 18px; padding: 26px 28px; border-radius: 22px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(212, 175, 55, 0.3), transparent 60%),
    linear-gradient(120deg, #06152b, #12305a);
}
.acct-cta-band h3 { margin: 0 0 4px; font-family: var(--font-serif, Georgia, serif); font-size: 1.35rem; font-weight: 600; }
.acct-cta-band p { margin: 0; color: rgba(255,255,255,.72); font-size: .92rem; }
.acct-cta-btn { background: #fff !important; color: var(--ink) !important; }
.acct-side-notes .account-card { position: sticky; top: 24px; }
.acct-steps { margin: 0; padding: 0 0 0 1.2rem; display: grid; gap: 12px; }
.acct-steps li { display: grid; font-size: .9rem; }
.acct-steps li span { color: rgba(6, 21, 43, 0.55); font-size: .84rem; }

/* ── Settings ── */
.acct-settings { display: grid; gap: 16px; }
.acct-settings-card .acct-card-head { margin-bottom: 16px; }
.acct-form-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.acct-form-foot .auth-error, .acct-form-foot .account-ok { margin: 0; flex: 1; min-width: 120px; }
.acct-form-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.acct-form-actions .btn { margin-left: 0; min-height: 42px; }
.acct-form-actions .btn.is-validated {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}
.auth-field small.muted { display: block; margin-top: 4px; font-size: .74rem; color: rgba(6, 21, 43, 0.5); }
.auth-field-badge {
  display: inline-flex; align-items: center; height: 20px; padding: 0 8px; border-radius: 999px;
  font: 600 0.62rem/1 Manrope, system-ui, sans-serif; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(6, 21, 43, 0.55); background: rgba(6, 21, 43, 0.08);
}
.auth-field-badge.is-ok { color: #15803d; background: rgba(22, 163, 74, 0.12); }
.account-form-grid { align-items: start; }
.account-form-grid > .auth-field { min-width: 0; align-content: start; }
.account-form-grid > .auth-field > span:first-child { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; min-height: 1.15em; }
.acct-switch {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 14px 16px; margin-top: 10px;
  border-radius: 16px; border: 1px solid rgba(6, 21, 43, 0.08); background: #fafaf8; cursor: pointer;
}
.acct-switch input { position: absolute; opacity: 0; pointer-events: none; }
.acct-switch-track { position: relative; width: 44px; height: 26px; border-radius: 999px; background: rgba(6, 21, 43, 0.18); transition: background .2s; }
.acct-switch-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.2); transition: transform .2s; }
.acct-switch input:checked + .acct-switch-track { background: #16a34a; }
.acct-switch input:checked + .acct-switch-track .acct-switch-thumb { transform: translateX(18px); }
.acct-switch.is-locked { cursor: default; opacity: .8; }
.acct-switch-copy { display: grid; gap: 2px; font-size: .9rem; }
.acct-switch-copy small { color: rgba(6, 21, 43, 0.55); font-size: .8rem; }
.acct-danger { border-color: rgba(229, 72, 77, 0.28) !important; }
.acct-danger-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.acct-danger-form .auth-password-wrap { flex: 1; min-width: 220px; }
.acct-danger-btn { background: #fdeceb !important; color: #9b1c1c !important; border: 1px solid rgba(229, 72, 77, 0.35) !important; }
.acct-danger-btn:hover { background: #e5484d !important; color: #fff !important; }

/* ── Support polish ── */
.account-support-layout { grid-template-columns: minmax(280px, 360px) 1fr; gap: 18px; }
.account-support-list { display: grid; gap: 14px; }
.account-support-list-scroll { max-height: 340px; margin: 0; gap: 10px; }
.account-support-item { gap: 6px; padding: 12px 14px; border-radius: 14px; transition: border-color .15s, background .15s; }
.account-support-item:hover { border-color: rgba(6, 21, 43, 0.3); }
.account-support-item-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.account-support-item-top strong { font-size: .92rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-support-item-top .account-badge { margin: 0; flex: none; }
.account-support-item-preview { font-size: .82rem; color: rgba(6, 21, 43, 0.6); line-height: 1.4; }
.account-support-item-time { font-size: .72rem; color: rgba(6, 21, 43, 0.45); }
.account-support-new { border-top: 0; padding-top: 22px !important; display: grid; gap: 12px; }
.account-support-new .auth-field { margin: 0; }
.account-support-thread { min-height: 520px; border-radius: 22px; }
.account-support-thread-head { padding: 20px 22px; align-items: center; }
.account-support-thread-head h3 { margin: 0 0 4px; font-size: 1.05rem; }
.account-support-thread-head .muted { margin: 0; font-size: .82rem; }
.account-support-messages { gap: 12px; padding: 20px 22px; }
.account-support-bubble { padding: 12px 14px; border-radius: 16px; }
.account-support-bubble p { margin: 0; white-space: pre-wrap; }
.account-support-meta { margin-bottom: 6px; }
.account-support-reply { flex-direction: row; align-items: flex-end; padding: 16px 22px; }
.account-support-reply textarea { flex: 1; min-height: 48px; }
.account-support-closed { padding: 14px 22px; }
.account-support-empty { flex: 1; align-content: center; }

/* ── Pending seller banner ── */
.account-pending-banner {
  padding: 26px 28px; border-radius: 22px; margin-bottom: 18px;
  background: linear-gradient(135deg, #fff8e6, #fff); border: 1px solid rgba(212, 175, 55, 0.4);
}
.account-pending-banner.is-changes {
  background: linear-gradient(135deg, #f5f0ff, #fbf8ff);
  border-color: rgba(109, 40, 217, 0.28);
}
.account-pending-banner h2 { margin: 0 0 8px; font-family: var(--font-serif, Georgia, serif); font-size: 1.5rem; font-weight: 600; }
.account-pending-banner p { margin: 0 0 8px; color: rgba(6, 21, 43, 0.7); }
.account-changes-box {
  margin: 14px 0 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(109, 40, 217, 0.06);
  border: 1px solid rgba(109, 40, 217, 0.18);
}
.account-changes-box .acct-eyebrow { color: #6d28d9; }
.account-changes-msg {
  margin: 6px 0 0 !important;
  color: #2e1065 !important;
  white-space: pre-wrap;
  line-height: 1.5;
  font-weight: 500;
}
.account-badge--violet {
  background: #ede9fe;
  color: #5b21b6;
}
.account-mod-note {
  display: inline-block;
  margin-top: 4px;
  color: #5b21b6;
  font-weight: 500;
}

.account-pending-banner.is-refused {
  background: #fff;
  border-color: rgba(6, 21, 43, 0.12);
  border-left: 3px solid #9a3412;
}
.account-pending-banner.is-refused > .acct-eyebrow {
  color: #9a3412;
}
.account-refusal-shop {
  margin: 0 0 14px !important;
  color: rgba(6, 21, 43, 0.72) !important;
}
.account-refusal-reason {
  margin: 0 0 16px;
  padding: 0 0 0 14px;
  border: 0;
  border-left: 2px solid rgba(6, 21, 43, 0.18);
  background: none;
}
.account-refusal-reason-label {
  display: block;
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}
.account-refusal-reason p {
  margin: 0 !important;
  color: var(--ink) !important;
  white-space: pre-wrap;
  line-height: 1.55;
  font-weight: 500;
}
.account-refusal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 4px;
}
.account-refusal-note { margin-top: 12px !important; }
.account-contest-link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.account-contest-link:hover { color: #9a3412; }
.account-contest-link.is-open { color: #9a3412; }
.account-contest-wrap { margin-top: 14px; }
.account-contest-panel {
  margin-top: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(6, 21, 43, 0.1);
  border-radius: 0;
  background: none;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  animation: contestExpand .22s ease;
}
.account-contest-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}
@keyframes contestExpand {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

.auth-seller-section-label {
  margin: 4px 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

.seller-products {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.seller-product {
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  background: rgba(248, 249, 252, 0.85);
}
.seller-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.seller-product-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.5);
}
.seller-product-remove {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(6, 21, 43, 0.12);
  background: #fff;
  color: rgba(6, 21, 43, 0.55);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.seller-product-remove:hover { color: #b42318; border-color: rgba(180, 35, 24, 0.35); }
.seller-product-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.seller-add-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  margin: 4px 0 14px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1.5px dashed rgba(6, 21, 43, 0.22);
  background: transparent;
  color: #06152b;
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.seller-add-product:hover {
  background: rgba(6, 21, 43, 0.04);
  border-style: solid;
}
.seller-add-product span[aria-hidden] {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 560px) {
  .seller-product-prices { grid-template-columns: 1fr; }
}

.account-golive-slim {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.account-golive-slim:hover {
  border-color: rgba(6, 21, 43, 0.22);
  box-shadow: 0 6px 18px rgba(6, 21, 43, 0.06);
}
.account-golive-slim.is-complete { border-color: rgba(22, 163, 74, 0.35); }
.account-golive-slim-dot {
  width: 8px; height: 8px; flex: none; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.account-golive-slim.is-complete .account-golive-slim-dot { background: #16a34a; }
.account-golive-slim-copy {
  flex: 1 1 auto; min-width: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.account-golive-slim-copy strong {
  font-size: 0.88rem; font-weight: 700; color: #06152b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.account-golive-slim-copy em {
  font-style: normal; font-size: 0.75rem; color: #7a8494;
}
.account-golive-slim-track {
  display: none;
  width: 72px; height: 3px; flex: none; border-radius: 999px;
  background: #e5e7eb; overflow: hidden;
}
@media (min-width: 720px) {
  .account-golive-slim-track { display: block; }
}
.account-golive-slim-track span {
  display: block; height: 100%;
  background: #16a34a;
  border-radius: inherit;
}
.account-golive-slim-chevron {
  flex: none; font-size: 1.15rem; font-weight: 600; color: #9ca3af; line-height: 1;
}
.account-golive-slim.is-complete .account-golive-slim-chevron { color: #16a34a; }

.golive-modal {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center; padding: 20px;
}
.golive-modal[hidden] { display: none !important; }
.golive-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 21, 43, 0.45);
  backdrop-filter: blur(3px);
}
.golive-modal-card {
  position: relative; z-index: 1;
  width: min(420px, 100%);
  max-height: min(88vh, 640px);
  overflow: auto;
  padding: 28px 26px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(6, 21, 43, 0.22);
  animation: contestExpand .22s ease;
}
.golive-modal-card h2 {
  margin: 0 0 6px;
  font: 700 1.35rem/1.2 Manrope, system-ui, sans-serif;
  color: #06152b;
  letter-spacing: -0.02em;
  padding-right: 28px;
}
.golive-modal-lede {
  margin: 0 0 22px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #7a8494;
}
.golive-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border: 0; background: transparent;
  font-size: 1.35rem; line-height: 1; color: #9ca3af; cursor: pointer;
}
.golive-modal-close:hover { color: #06152b; }

.golive-stepper {
  list-style: none; margin: 0; padding: 0;
}
.golive-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  min-height: 0;
}
.golive-step-rail {
  display: flex; flex-direction: column; align-items: center;
}
.golive-step-dot {
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: #fff;
  background: #d1d5db;
}
.golive-step.is-done .golive-step-dot { background: #16a34a; }
.golive-step.is-current .golive-step-dot { background: #06152b; }
.golive-step-line {
  flex: 1 1 auto;
  width: 2px;
  min-height: 22px;
  margin: 4px 0;
  background: #e5e7eb;
  border-radius: 2px;
}
.golive-step-line.is-done { background: #16a34a; }
.golive-step-copy {
  padding-bottom: 18px;
}
.golive-step:last-child .golive-step-copy { padding-bottom: 6px; }
.golive-step-copy strong {
  display: block;
  margin: 0 0 3px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #06152b;
}
.golive-step-copy span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #9ca3af;
}
.golive-step.is-todo .golive-step-copy strong { color: #9ca3af; font-weight: 600; }
.golive-step.is-todo .golive-step-copy span { color: #c4c9d1; }
.golive-step.is-current .golive-step-copy span { color: #6b7280; }
.golive-step.is-pending .golive-step-dot { background: #d97706; color: #fff; font-size: 0.65rem; }
.golive-step.is-pending .golive-step-copy span { color: #92400e; }
.account-golive-slim.is-pending { border-color: rgba(217, 119, 6, 0.35); }
.account-golive-slim.is-pending .account-golive-slim-dot { background: #d97706; }
.golive-modal-error {
  margin: 12px 0 0;
  color: #b91c1c;
  font: 600 0.85rem Manrope, system-ui, sans-serif;
}

.golive-modal-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; margin-top: 18px;
  height: 48px; border: 0; border-radius: 12px;
  background: #06152b; color: #fff;
  font: 700 0.92rem Manrope, system-ui, sans-serif;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.golive-modal-cta:hover { background: #0a172a; transform: translateY(-1px); }
body.golive-modal-open,
html.golive-modal-open { overflow: hidden; overscroll-behavior: none; }

/* ── Account tab separator (personal → pro) ── */
.account-tab-sep {
  flex: none;
  align-self: stretch;
  width: 1px;
  margin: 10px 6px;
  background: rgba(255, 255, 255, 0.22);
}

/* ── Hero shop switcher ── */
.account-hero-shop { margin-top: 12px; }
.acct-shop-switch { position: relative; display: inline-block; width: min(280px, 100%); max-width: min(280px, 100%); min-width: min(220px, 100%); }
.acct-shop-trigger {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 8px 12px 8px 8px;
  border: 0; border-radius: 12px; background: #fff; color: #06152b;
  cursor: pointer; text-align: left; font: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.acct-shop-avatar {
  width: 36px; height: 36px; border-radius: 10px; object-fit: cover; flex: none;
  background: #eef1f5;
}
.acct-shop-avatar-ph {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: #06152b; color: #fff; font-weight: 700; font-size: 0.85rem;
}
.acct-shop-trigger-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.acct-shop-trigger-copy strong {
  font-size: 0.88rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.acct-shop-trigger-copy em {
  display: inline-flex; align-items: center; gap: 6px;
  font-style: normal; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #6b7280;
}
.acct-shop-menu-copy em {
  font-style: normal; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: #6b7280;
}
.acct-shop-chevron { color: #9ca3af; font-size: 0.75rem; }
.acct-shop-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: #d1d5db;
}
.acct-shop-dot.is-online { background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
.acct-shop-dot.is-pending { background: #d97706; box-shadow: 0 0 0 3px rgba(217,119,6,.18); }
.acct-shop-dot.is-suspended { background: #ea580c; box-shadow: 0 0 0 3px rgba(234,88,12,.18); }
.acct-shop-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 40;
  padding: 6px; border-radius: 14px; background: #fff; color: #06152b;
  box-shadow: 0 16px 40px rgba(6, 21, 43, 0.2);
  display: flex; flex-direction: column; gap: 2px;
}
.acct-shop-menu[hidden] { display: none !important; }
.acct-shop-menu-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 8px; border: 0; border-radius: 10px;
  background: transparent; cursor: pointer; text-align: left; font: inherit;
  color: #06152b;
}
.acct-shop-menu-item:hover { background: #f3f4f6; }
.acct-shop-menu-item img,
.acct-shop-menu-item .acct-shop-avatar-ph { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.acct-shop-menu-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.acct-shop-menu-copy strong { font-size: 0.84rem; font-weight: 700; color: #06152b; }
.acct-shop-menu-add {
  margin-top: 4px; padding: 10px; border: 1px dashed rgba(6,21,43,.2); border-radius: 10px;
  background: #fafafa; color: #06152b; font: 700 0.82rem Manrope, sans-serif; cursor: pointer;
}
.acct-shop-menu-add:hover { background: #f3f4f6; }

/* ── Global go-live host / bar ── */
.account-golive-host {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px 0;
}
.account-golive-host[hidden] { display: none !important; }
.account-golive-bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 12px 14px; border-radius: 16px; background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.1);
}
.account-golive-bar.is-complete { border-color: rgba(6, 21, 43, 0.18); }
.account-golive-bar.is-pending { border-color: rgba(217, 119, 6, 0.35); }
.account-golive-bar-left {
  display: flex; flex-direction: column; gap: 2px; min-width: 140px; max-width: 220px;
}
.account-golive-bar-left strong { font-size: 0.84rem; font-weight: 700; color: #06152b; line-height: 1.25; }
.account-golive-bar-count { font-size: 0.72rem; color: #7a8494; }
.account-golive-track {
  flex: 1 1 280px;
  display: flex; align-items: flex-start; justify-content: space-between;
  list-style: none; margin: 0; padding: 0; gap: 0; min-width: 0;
}
.account-golive-node {
  position: relative;
  display: flex; align-items: flex-start; flex: 1 1 0; min-width: 0;
}
.account-golive-node-btn {
  appearance: none; border: 0; background: transparent; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 100%; cursor: pointer; font: inherit; color: #6b7280;
}
.account-golive-dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.68rem; font-weight: 800;
  border: 2px solid #d1d5db; background: #fff; color: #9ca3af;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.account-golive-node-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: .02em;
  text-align: center; line-height: 1.2; max-width: 4.8rem;
}
.account-golive-connector {
  position: absolute; left: calc(50% + 14px); right: calc(-50% + 14px); top: 12px;
  height: 2px; background: #e5e7eb; pointer-events: none;
}
.account-golive-connector.is-done { background: #16a34a; }
.account-golive-connector.is-hot { background: linear-gradient(90deg, #16a34a 0%, #d1d5db 100%); }
.account-golive-node.is-done .account-golive-dot {
  background: #16a34a; border-color: #16a34a; color: #fff;
}
.account-golive-node.is-done .account-golive-node-label { color: #15803d; }
.account-golive-node.is-current .account-golive-dot {
  background: #fff; border-color: #06152b; color: #06152b;
  box-shadow: 0 0 0 4px rgba(6, 21, 43, 0.12);
}
.account-golive-node.is-current .account-golive-node-label { color: #06152b; font-weight: 800; }
.account-golive-node.is-pending .account-golive-dot {
  background: #fff7ed; border-color: #d97706; color: #b45309;
}
.account-golive-node.is-pending .account-golive-node-label { color: #b45309; }
.account-golive-node.is-focus .account-golive-dot {
  box-shadow: 0 0 0 4px rgba(6, 21, 43, 0.16);
}
.account-golive-bar-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.account-golive-next { white-space: nowrap; }
.account-golive-open {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(6,21,43,.12);
  background: #fff; font-size: 1rem; color: #06152b; cursor: pointer;
  display: grid; place-items: center;
}
.account-golive-open:hover { border-color: rgba(6,21,43,.28); background: #f8fafc; }
@media (max-width: 720px) {
  .account-golive-node-label { display: none; }
  .account-golive-bar-left { max-width: none; width: 100%; }
}

.golive-modal {
  position: fixed !important; inset: 0 !important; z-index: 200;
  display: grid; place-items: center; padding: 20px;
}
.golive-modal-backdrop {
  position: fixed !important; inset: 0 !important;
  background: rgba(6, 21, 43, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.golive-modal-card {
  max-height: min(85vh, 720px) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  width: min(460px, 100%);
}
.golive-step.is-clickable { cursor: pointer; }
.golive-step.is-clickable:hover .golive-step-copy strong { color: #0a172a; }
.golive-modal-foot {
  display: flex; flex-direction: column; gap: 8px; margin-top: 8px;
}
.golive-modal-foot .golive-modal-cta { margin-top: 0; }
.golive-modal-foot .btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Size chips ── */
.size-panel { margin: 4px 0 8px; }
.size-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip {
  appearance: none; min-width: 44px; height: 36px; padding: 0 12px;
  border-radius: 10px; border: 1.5px solid rgba(6,21,43,.14);
  background: #fff; color: #06152b; font: 700 0.8rem Manrope, sans-serif; cursor: pointer;
  transition: background .12s, border-color .12s, color .12s, box-shadow .12s;
}
.size-chip:hover { border-color: rgba(22, 163, 74, 0.45); }
.size-chip.is-selected {
  background: #16a34a;
  border-color: #15803d;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.18);
}
.size-chip:disabled { opacity: 0.5; cursor: not-allowed; }

/* Thin open-requests strip on Propose */
.propose-reqs-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.12);
  border-radius: 10px;
}
.propose-reqs-bar > strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.55);
  white-space: nowrap;
}
.propose-reqs-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  min-width: 0;
  flex: 1;
}
.propose-req-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  font-size: 0.78rem;
  color: #06152b;
  line-height: 1.2;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: default;
  font-family: inherit;
  text-align: left;
}
button.propose-req-chip.is-action { cursor: pointer; }
button.propose-req-chip.is-action:hover em { color: #5b21b6; }
.propose-req-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d97706;
  flex: none;
}
.propose-req-chip.is-action i { background: #7c3aed; }
.propose-req-chip > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 18ch;
  font-weight: 600;
}
.propose-req-chip em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}

/* ── Propose form ── */
.propose-form {
  display: flex; flex-direction: column; gap: 18px;
  padding: 22px 22px 20px !important;
}
.propose-form--multi {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.propose-products { display: flex; flex-direction: column; gap: 16px; }
.propose-product {
  display: flex; flex-direction: column; gap: 16px;
  padding: 20px 20px 18px !important;
}
.propose-product-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.propose-product-head strong {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.15rem; font-weight: 600;
}
.propose-product-remove {
  border: 1px solid rgba(6,21,43,0.14);
  background: #fff; color: rgba(6,21,43,0.65);
  border-radius: 999px; padding: 6px 12px;
  font: 700 0.75rem Manrope, sans-serif; cursor: pointer;
}
.propose-product-remove:hover { color: #b42318; border-color: rgba(180,35,24,0.35); }
.propose-photos .seller-pdp-thumbs { margin-top: 8px; }
.propose-photo-slots {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 140px));
  gap: 12px;
}
.propose-photo-slot,
.propose-photo-slots .seller-pdp-thumb,
.propose-photo-slots .seller-pdp-add-photo {
  width: 100% !important;
  height: 140px !important;
  aspect-ratio: auto;
}
.propose-photo-slots .seller-pdp-add-photo.is-required {
  border-color: rgba(6,21,43,0.45);
  border-style: dashed;
}
.propose-req { color: #b42318; }
.propose-add-bar {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  width: 100%; padding: 16px 18px;
  border-radius: 16px;
  border: 1.5px dashed rgba(6,21,43,0.28);
  background: rgba(255,255,255,0.7);
  color: #06152b; text-align: left; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.propose-add-bar:hover:not(:disabled) {
  border-color: #06152b;
  background: #fff;
  transform: translateY(-1px);
}
.propose-add-bar:disabled { opacity: 0.45; cursor: not-allowed; }
.propose-add-bar span[aria-hidden] {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; margin-bottom: 4px;
  border-radius: 999px; background: #06152b; color: #fff;
  font-size: 1.1rem; line-height: 1;
}
.propose-add-bar strong { font-size: 0.95rem; font-weight: 700; }
.propose-add-bar em { font-style: normal; font-size: 0.78rem; color: rgba(6,21,43,0.55); }
.propose-form .account-form-grid { margin: 0; }
.propose-form .btn-primary { align-self: flex-start; min-width: 160px; }
@media (max-width: 560px) {
  .propose-photo-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .propose-photo-slot,
  .propose-photo-slots .seller-pdp-thumb,
  .propose-photo-slots .seller-pdp-add-photo { height: 120px !important; }
}

/* ── Boutique overview on account overview ── */
.seller-boutique-overview { overflow: hidden; }
.seller-boutique-overview-media { gap: 18px !important; }
.seller-boutique-overview-cover img {
  width: 100%; height: 140px; object-fit: cover; display: block;
}
.seller-boutique-overview-avatar {
  width: 72px; height: 72px; border-radius: 16px; object-fit: cover;
  border: 3px solid #fff; margin-top: -36px; margin-left: 14px;
  box-shadow: 0 4px 14px rgba(6,21,43,.15); background: #fff;
}

/* ── PDP: add to cart + wishlist heart ── */
.pdp-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: stretch;
  margin: 0;
}
.pdp-actions .qty-stepper {
  flex: 0 0 auto;
}
.pdp-actions .pdp-add-cart {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pdp-actions .pdp-wish-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 7.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: visible;
  padding: 0 16px;
  border: 1.5px solid rgba(6, 21, 43, 0.16);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, background .2s, color .2s;
}
.pdp-add-cart svg { width: 18px; height: 18px; flex: none; }
.pdp-btn-label {
  display: inline-grid;
  justify-items: center;
  align-items: center;
  line-height: 1.15;
}
.pdp-btn-label > span {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: opacity 0.18s ease;
}
.pdp-btn-label [data-label-done] {
  opacity: 0;
  pointer-events: none;
}
.pdp-add-cart.is-done .pdp-btn-label [data-label-idle],
.pdp-wish-btn.is-on .pdp-btn-label [data-label-idle] {
  opacity: 0;
}
.pdp-add-cart.is-done .pdp-btn-label [data-label-done],
.pdp-wish-btn.is-on .pdp-btn-label [data-label-done] {
  opacity: 1;
}
.pdp-wish-btn .wish-heart {
  width: 18px;
  height: 18px;
  flex: none;
  position: relative;
  z-index: 1;
}
.pdp-wish-btn .wish-heart path { fill: transparent; stroke: currentColor; transition: fill .25s, stroke .25s; }
.pdp-wish-btn:hover { border-color: rgba(229, 72, 77, 0.6); color: #e5484d; }
.pdp-wish-btn.is-on { border-color: #e5484d; color: #e5484d; background: #fff5f5; }
.pdp-wish-btn.is-on .wish-heart path { fill: #e5484d; stroke: #e5484d; }
.pdp-wish-btn.is-beat .wish-heart { animation: heartBeat .75s cubic-bezier(.22,1,.36,1) both; }
.pdp-wish-btn.is-burst::before,
.pdp-wish-btn.is-burst::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 72, 77, 0.5);
  pointer-events: none;
  animation: wishRing 0.65s ease-out both;
}
.pdp-wish-btn.is-burst::after {
  animation-delay: 0.08s;
  border-color: rgba(229, 72, 77, 0.28);
}
@keyframes heartBeat {
  0% { transform: scale(1); }
  15% { transform: scale(1.45); }
  32% { transform: scale(0.9); }
  48% { transform: scale(1.22); }
  100% { transform: scale(1); }
}
@keyframes wishRing {
  0% { transform: scale(0.5); opacity: 0.85; }
  100% { transform: scale(2.8); opacity: 0; }
}
.acct-icon-btn--wish .wish-heart path { fill: transparent; stroke: currentColor; transition: fill .25s, stroke .25s; }
.acct-icon-btn--wish:hover { color: #e5484d; border-color: rgba(229, 72, 77, 0.5); }
.acct-icon-btn--wish.is-on { color: #e5484d; border-color: rgba(229, 72, 77, 0.5); background: #fff5f5; }
.acct-icon-btn--wish.is-on .wish-heart path { fill: #e5484d; stroke: #e5484d; }
.acct-icon-btn--wish.is-beat .wish-heart { animation: heartBeat .75s cubic-bezier(.22,1,.36,1) both; }
@media (max-width: 820px) {
  .pdp-buy-box {
    padding: 12px 0 4px;
  }
  .pdp-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 48px;
    gap: 8px;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .pdp-actions .qty-stepper {
    flex: none;
    width: auto;
    min-height: 48px;
  }
  .pdp-actions .qty-stepper button {
    width: 40px;
    height: 48px;
  }
  .pdp-actions .pdp-add-cart,
  .pdp-actions .btn {
    flex: none;
    width: auto;
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.88rem;
  }
  .pdp-actions .pdp-wish-btn {
    flex: none;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    padding: 0;
    gap: 0;
  }
  .pdp-wish-btn .pdp-btn-label {
    display: none !important;
  }

  .pdp-pack {
    margin: 0 0 12px;
    padding: 10px 0 0;
  }
  .pdp-pack-lede {
    font-size: 0.76rem;
    margin-bottom: 8px;
  }
  .pdp-pack-slot-head {
    padding: 10px 10px;
    gap: 6px;
  }
  .pdp-pack-slot-label {
    font-size: 0.62rem;
  }
  .pdp-pack-slot-value {
    font-size: 0.72rem;
  }
  .pdp-pack-tees {
    gap: 8px;
    padding: 8px 0 6px;
    scroll-snap-type: x proximity;
  }
  .pdp-pack-tee {
    flex: 0 0 58px;
    width: 58px;
    height: 74px;
  }
  .pdp-pack-sizes .pdp-size-btn {
    min-width: 40px;
    height: 36px;
    font-size: 0.78rem;
  }

  .product-card h3 {
    font-size: 0.86rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card .price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 8px;
    font-size: 0.9rem;
  }
  .product-card .price s {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(6, 21, 43, 0.45);
  }
  .recommended .carousel,
  .bestsellers-section .carousel,
  .carousel {
    scroll-snap-type: x proximity;
  }
}

/* Button Validated / Sending micro-feedback */
.btn.is-sending {
  pointer-events: none;
  opacity: 0.85;
}
.btn.is-validated {
  pointer-events: none;
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
  box-shadow: none !important;
  animation: btnValidated 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.iban-save-btn.is-validated {
  min-width: 5.75rem;
}
@keyframes btnValidated {
  0% { transform: scale(0.97); }
  40% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .btn.is-validated,
  .pdp-wish-btn.is-beat .wish-heart,
  .pdp-wish-btn.is-burst::before,
  .pdp-wish-btn.is-burst::after {
    animation-duration: 0.22s !important;
  }
}

@media (max-width: 1000px) {
  .acct-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .acct-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .acct-grid--3 { grid-template-columns: 1fr; }
  .acct-grid--seller { display: block; }
  .seller-apply-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .acct-grid--seller .acct-side-notes {
    float: none;
    width: 100%;
    margin: 0;
    order: -1;
  }
  .seller-apply-top .acct-side-notes {
    order: -1;
  }
  .acct-side-notes .account-card { position: static; }
}
@media (max-width: 760px) {
  .account-hero-inner { padding: 24px 18px 14px; }
  .account-hero-name { white-space: normal; }
  .account-main { padding: 22px 16px 0; }
  .acct-grid--2 { grid-template-columns: 1fr; }
  .acct-stats, .acct-stats--3 { grid-template-columns: 1fr 1fr; }
  .account-table--orders .account-table-head { display: none; }
  .account-table--orders .account-table-row { grid-template-columns: 1fr 1fr; }
  .account-support-reply { flex-direction: column; align-items: stretch; }
  .auth-code-digit { width: 40px; height: 50px; font-size: 1.3rem; }
}

/* ========== SELLER DASHBOARD · SHOP (front-like preview + product page) ========== */
.seller-shop-notice {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(6, 21, 43, 0.08);
  background: #fff;
  color: #06152b;
}
.seller-shop-notice.is-ok { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.seller-shop-notice.is-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.seller-shop-notice.is-info { background: #f5f3ff; border-color: #ddd6fe; color: #4c1d95; }

.seller-shop-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(700px 260px at 90% -10%, rgba(255,255,255,0.14), transparent 60%),
    linear-gradient(135deg, var(--shop-color, #041124), #06152b);
  box-shadow: 0 18px 44px rgba(6, 21, 43, 0.14);
}
.seller-shop-hero-cover { position: absolute; inset: 0; }
.seller-shop-hero-cover img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.seller-shop-hero-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,17,36,0.15), rgba(4,17,36,0.85));
}
.seller-shop-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 22px;
  align-items: end;
  padding: 44px 32px 28px;
  min-height: 220px;
}
.seller-shop-hero-avatar {
  width: 96px; height: 96px;
  border-radius: 24px;
  object-fit: cover;
  background: #fff;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.seller-shop-hero-avatar--placeholder {
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: #06152b;
}
.seller-shop-hero-text { min-width: 0; }
.seller-shop-hero-text h3 {
  display: inline-flex; align-items: center; gap: 0.35em;
  margin: 4px 0 6px;
  font-family: var(--font-serif); font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 600;
}
.seller-shop-hero-tag { margin: 0 0 6px; font-weight: 600; opacity: 0.92; }
.seller-shop-hero-bio { margin: 0 0 12px; max-width: 60ch; font-size: 0.92rem; opacity: 0.8; }
.seller-shop-hero .boutique-stats { margin: 0; }
.seller-shop-hero-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  font-family: inherit;
}
.seller-shop-hero-link:hover { background: rgba(255,255,255,0.24); transform: translateY(-1px); }
.seller-shop-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  justify-self: end;
  align-self: end;
}
.seller-shop-hero-edit {
  background: rgba(255,255,255,0.92);
  color: #041124;
  border-color: rgba(255,255,255,0.95);
}
.seller-shop-hero-edit:hover { background: #fff; color: #041124; }

.seller-look-page {
  width: 100%;
  max-width: none;
  padding-bottom: 28px;
}
.seller-look-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 32px;
  margin-bottom: 22px;
}
.seller-look-head .account-page-title { margin: 0; }
.seller-look-head-sub {
  margin: 0;
  max-width: 44ch;
  line-height: 1.45;
}

.seller-shop-identity {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: none;
  padding-bottom: 88px;
}
.seller-shop-identity.is-locked { opacity: 0.78; }

.seller-look-layout {
  display: grid;
  gap: 16px;
  width: 100%;
}
.seller-look-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: 100%;
}
.seller-look-fields {
  display: grid;
  gap: 14px;
  padding: 20px 22px 18px;
  margin: 0;
  min-width: 0;
}
.seller-look-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.seller-look-fields-grid .auth-field--wide {
  grid-column: 1 / -1;
}
.seller-look-fields .auth-field { margin: 0; }

.seller-shop-identity .auth-hint {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.5);
  line-height: 1.35;
}
.seller-look-media {
  display: grid;
  gap: 10px;
  margin: 0;
  min-width: 0;
  padding: 16px 18px 18px;
  box-sizing: border-box;
}
.seller-look-media-head span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.55);
}
.seller-look-drop {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  width: 100%;
  min-height: 148px;
  padding: 22px 16px;
  border-radius: 16px;
  border: 1.5px dashed rgba(6, 21, 43, 0.22);
  background: linear-gradient(180deg, #f7f6f2 0%, #efece6 100%);
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.seller-look-drop:hover {
  border-color: rgba(6, 21, 43, 0.4);
  background: #fff;
}
.seller-look-drop strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #06152b;
}
.seller-look-drop em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.5);
}
.seller-look-drop--logo {
  min-height: 168px;
  aspect-ratio: 1;
  height: auto;
}
.seller-look-media .seller-photos-list:not(:empty) {
  display: grid;
}
.seller-look-media--banner .seller-look-drop {
  min-height: 160px;
}
.seller-look-media--banner .seller-photo-thumb {
  width: 100%;
  max-width: none;
  min-height: 160px;
  aspect-ratio: 21 / 7;
  border-radius: 14px;
}
.seller-look-media--logo .seller-photo-thumb {
  width: 100%;
  max-width: none;
  aspect-ratio: 1;
  border-radius: 16px;
}
.seller-look-media--banner .seller-photos-list--banner:not(:empty) + .seller-look-drop,
.seller-look-media--logo .seller-photos-list:not(:empty) + .seller-look-drop {
  display: none;
}

.seller-look-preview {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 240px;
  width: 100%;
  background:
    radial-gradient(700px 260px at 90% -10%, rgba(255,255,255,0.14), transparent 60%),
    linear-gradient(135deg, var(--shop-color, #041124), #06152b);
  color: #fff;
  box-shadow: 0 18px 44px rgba(6, 21, 43, 0.14);
}
.seller-look-preview-cover {
  position: absolute;
  inset: 0;
}
.seller-look-preview-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.seller-look-preview-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 36, 0.15) 0%, rgba(4, 17, 36, 0.82) 100%);
}
.seller-look-preview-cover-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.04) 10px,
      rgba(255, 255, 255, 0.04) 20px
    );
}
.seller-look-preview-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  min-height: 240px;
  padding: 36px 32px 28px;
}
.seller-look-preview-avatar {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: 2.1rem;
  font-weight: 600;
}
.seller-look-preview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-look-preview-text {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.seller-look-preview-text strong {
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.seller-look-preview-text span {
  font-size: 0.95rem;
  opacity: 0.88;
}

.seller-shop-identity-actions {
  position: sticky;
  bottom: 16px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(6, 21, 43, 0.1);
  box-shadow: 0 10px 30px rgba(6, 21, 43, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .seller-look-row {
    grid-template-columns: 1fr;
  }
  .seller-look-drop--logo {
    aspect-ratio: auto;
    min-height: 140px;
    max-width: 220px;
  }
  .seller-look-fields-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .seller-look-preview-inner { padding: 26px 18px 20px; min-height: 200px; }
  .seller-shop-identity-actions { bottom: 10px; }
  .seller-look-drop--logo { max-width: none; }
}
.seller-photos-list--banner .seller-photo-thumb {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 7;
  height: auto;
}
.seller-photos-list--banner .seller-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seller-shop-products { max-width: none; padding: 30px 0 0; }
.seller-shop-products .shop-toolbar { align-items: center; }

.seller-shop-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seller-shop-card {
  position: relative;
  padding: 0;
  border: 0;
  cursor: grab;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}
.seller-shop-card.is-no-drag { cursor: default; }
.seller-shop-card:active:not(.is-no-drag) { cursor: grabbing; }
.seller-shop-card.is-dragging { opacity: 0.35; transform: scale(0.98); }
.seller-shop-card.is-dimmed .shop-card-media img { filter: brightness(0.72); }
.seller-shop-hint { margin: 6px 0 0; font-size: 0.72rem; }
.seller-shop-edit {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #06152b;
  box-shadow: 0 6px 18px rgba(6, 21, 43, 0.2);
  cursor: pointer;
  opacity: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.seller-shop-edit:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(6, 21, 43, 0.28);
}
.seller-shop-card:hover .seller-shop-edit { opacity: 1; }
.seller-shop-card-body {
  padding: 10px 2px 4px;
}
.seller-shop-sale-chip {
  display: inline-flex;
  margin: 6px 0 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.seller-shop-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.seller-shop-action {
  appearance: none;
  border: 1px solid rgba(6, 21, 43, 0.14);
  background: #fff;
  color: #06152b;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.1;
}
.seller-shop-action:hover {
  border-color: rgba(6, 21, 43, 0.35);
  background: #f7f8fa;
}
.seller-shop-action.is-on {
  background: #06152b;
  border-color: #06152b;
  color: #fff;
}
.seller-shop-action.is-muted {
  color: rgba(6, 21, 43, 0.62);
}
.seller-shop-sale-label {
  display: block;
  margin-top: 8px;
}
.seller-shop-sale-label select {
  width: 100%;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(6, 21, 43, 0.14);
  background: #fff;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
}
.seller-shop-add-tile {
  cursor: default;
  min-height: 100%;
}
.seller-shop-add-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; width: 100%; min-height: 280px; padding: 24px 16px;
  border-radius: 18px;
  border: 1.5px dashed rgba(6,21,43,0.28);
  background: rgba(255,255,255,0.55);
  color: #06152b; text-align: center; cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.seller-shop-add-btn:hover {
  border-color: #06152b;
  background: rgba(6,21,43,0.03);
  transform: translateY(-2px);
}
.seller-shop-add-plus {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: #06152b; color: #fff;
  font-size: 1.6rem; font-weight: 500; line-height: 1;
}
.seller-shop-add-btn strong {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
}
.seller-shop-add-btn span:last-child {
  max-width: 14rem; font-size: 0.78rem; color: rgba(6,21,43,0.55); line-height: 1.35;
}
.seller-shop-card.is-drop-before::before,
.seller-shop-card.is-drop-after::after {
  content: "";
  position: absolute; top: 4%; bottom: 4%;
  width: 3px; border-radius: 3px;
  background: #06152b;
}
.seller-shop-card.is-drop-before::before { left: -11px; }
.seller-shop-card.is-drop-after::after { right: -11px; }
.seller-shop-card-open { display: block; cursor: pointer; outline: none; }
.seller-shop-card-open:focus-visible .shop-card-media { outline: 2px solid #06152b; outline-offset: 3px; }
.seller-shop-card .shop-card-media { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.seller-shop-card:hover .shop-card-media { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(6,21,43,0.14); }
.seller-shop-drag {
  position: absolute;
  right: 10px;
  bottom: 10px;
  top: auto;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #06152b;
  box-shadow: 0 4px 12px rgba(6,21,43,0.15);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.seller-shop-card:hover .seller-shop-drag { opacity: 1; }
.seller-shop-card .product-tags {
  z-index: 4;
  top: 10px;
  right: 10px;
  max-width: calc(100% - 64px);
}
.seller-shop-update-pill {
  position: absolute; left: 10px; bottom: 10px;
  padding: 4px 9px; border-radius: 999px;
  background: #4c1d95; color: #fff;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.seller-shop-empty { text-align: center; padding: 48px 24px; }
.seller-shop-empty strong { display: block; font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 6px; }
.seller-shop-empty .btn { margin-top: 14px; }

.seller-shop-savebar {
  position: fixed; left: 50%; bottom: 22px; z-index: 40;
  display: flex; align-items: center; gap: 18px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: #06152b; color: #fff;
  box-shadow: 0 18px 44px rgba(6,21,43,0.32);
  font-size: 0.9rem; font-weight: 600;
  transform: translate(-50%, 24px); opacity: 0; pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), opacity 0.2s ease;
}
.seller-shop-savebar.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.seller-shop-savebar > div { display: flex; gap: 8px; }
.seller-shop-savebar .btn { min-height: 38px; padding: 0 16px; border-radius: 999px; }
.seller-shop-savebar .auth-btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.seller-shop-savebar .btn-primary { background: #fff; color: #06152b; }

/* Product page inside the dashboard */
.seller-pdp-nav .pdp-breadcrumb .acct-link { font: inherit; color: inherit; }
.seller-pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.seller-pdp-gallery { position: sticky; top: 24px; }
.seller-pdp-main {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5; border-radius: 20px; background: #f0f0f0;
}
.seller-pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.seller-pdp-main-empty { display: grid; place-items: center; height: 100%; color: rgba(6,21,43,0.4); font-weight: 600; }
.seller-pdp-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.seller-pdp-thumb {
  position: relative; width: 78px; height: 78px;
  border-radius: 14px; overflow: hidden;
  border: 2px solid transparent; background: #f0f0f0;
  cursor: pointer; transition: border-color 0.15s ease, transform 0.15s ease;
}
.seller-pdp-thumb:hover { transform: translateY(-1px); }
.seller-pdp-thumb.is-active { border-color: #06152b; }
.seller-pdp-thumb.is-dragging { opacity: 0.4; }
.seller-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.seller-pdp-thumb-cover {
  position: absolute; left: 6px; bottom: 6px;
  padding: 2px 7px; border-radius: 999px;
  background: rgba(6,21,43,0.85); color: #fff;
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.seller-pdp-thumb-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,0.92); color: #06152b;
  font-size: 15px; line-height: 1; font-weight: 700; cursor: pointer;
  opacity: 0; transition: opacity 0.15s ease;
}
.seller-pdp-thumb:hover .seller-pdp-thumb-remove { opacity: 1; }
.seller-pdp-add-photo {
  display: grid; place-items: center; align-content: center; gap: 2px;
  width: 78px; height: 78px; border-radius: 14px;
  border: 1.5px dashed rgba(6,21,43,0.25); color: rgba(6,21,43,0.65);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.seller-pdp-add-photo span[aria-hidden] { font-size: 1.3rem; line-height: 1; }
.seller-pdp-add-photo:hover { border-color: #06152b; background: rgba(6,21,43,0.03); }
.seller-pdp-add-photo.is-busy { opacity: 0.5; pointer-events: none; }
.seller-pdp-hint { margin: 10px 0 0; font-size: 0.8rem; }

.seller-pdp-info { display: grid; gap: 14px; }
.seller-pdp-status { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 0.84rem; }
.seller-pdp-status .account-badge { margin-top: 0; }
.seller-pdp-name input { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; min-height: 54px; }
.seller-pdp-info .account-form-grid { margin-bottom: 0; }
.seller-pdp-save { margin-left: 6px; font-style: normal; font-weight: 800; color: #b42318; }
.seller-pdp.is-locked input:disabled,
.seller-pdp.is-locked select:disabled,
.seller-pdp.is-locked textarea:disabled { background: rgba(6,21,43,0.03); color: rgba(6,21,43,0.7); cursor: not-allowed; }
.seller-pdp-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 6px; }
.seller-pdp-actions .btn:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; transform: none; }
.seller-pdp-footnote { margin: 0; font-size: 0.8rem; text-align: right; }

@media (max-width: 1000px) {
  .seller-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .seller-pdp { grid-template-columns: 1fr; }
  .seller-pdp-gallery { position: static; }
}
@media (max-width: 640px) {
  .seller-shop-hero-inner { grid-template-columns: 1fr; gap: 14px; padding: 28px 20px 22px; text-align: left; }
  .seller-shop-hero-avatar { width: 64px; height: 64px; border-radius: 16px; }
  .seller-shop-hero-avatar--placeholder { font-size: 1.7rem; }
  .seller-shop-hero-text h3 { font-size: 1.45rem; }
  .seller-shop-hero .boutique-stats { justify-content: flex-start; }
  .seller-shop-hero-actions { justify-self: start; width: 100%; max-width: 280px; }
  .seller-shop-hero-link { justify-self: start; }
  .seller-shop-products .shop-toolbar { text-align: left; }
  .seller-shop-products .shop-toolbar { flex-wrap: wrap; }
  .seller-shop-savebar { left: 16px; right: 16px; transform: translateY(24px); border-radius: 20px; flex-wrap: wrap; }
  .seller-shop-savebar.is-visible { transform: none; }
  .seller-pdp-actions { flex-direction: column-reverse; }
  .seller-pdp-actions .btn { width: 100%; }
}

/* Shop status sub-tabs + lifecycle bar */
.seller-shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(6, 21, 43, 0.04);
  border: 1px solid rgba(6, 21, 43, 0.08);
}
.seller-shop-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(6, 21, 43, 0.62);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.seller-shop-tab:hover { color: #06152b; background: rgba(255,255,255,0.7); }
.seller-shop-tab.is-active {
  background: #041124;
  color: #fff;
  box-shadow: 0 6px 16px rgba(4, 17, 36, 0.18);
}
.seller-shop-tab-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(6, 21, 43, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
}
.seller-shop-tab.is-active .seller-shop-tab-count {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.seller-shop-status-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  background: #fff;
}
.seller-shop-status-bar strong { display: block; margin-bottom: 2px; font-size: 0.95rem; }
.seller-shop-status-bar .muted { margin: 0; font-size: 0.84rem; max-width: 52ch; }
.seller-shop-status-bar .account-inline-actions { margin-top: 0; }
.seller-shop-status-bar.is-active { border-color: rgba(16, 185, 129, 0.35); background: #ecfdf5; }
.seller-shop-status-bar.is-suspended { border-color: rgba(245, 158, 11, 0.4); background: #fffbeb; }
.seller-shop-status-bar.is-deleted { border-color: rgba(239, 68, 68, 0.3); background: #fef2f2; }
@media (max-width: 640px) {
  .seller-shop-tabs { flex-direction: column; }
  .seller-shop-tab { width: 100%; justify-content: space-between; }
  .seller-shop-status-bar .account-inline-actions { width: 100%; }
  .seller-shop-status-bar .btn { flex: 1; justify-content: center; }
}

/* Withdrawals layout */
.withdraw-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.withdraw-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 88px;
}
.withdraw-balance {
  padding: 18px 18px 16px;
}
.withdraw-balance-value {
  display: block;
  margin: 4px 0 6px;
  font-family: var(--font-serif, Georgia, serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}
.withdraw-balance .muted { margin: 0 0 14px; font-size: 0.84rem; }
.withdraw-balance-meta {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(6, 21, 43, 0.08);
  display: grid;
  gap: 8px;
}
.withdraw-balance-meta li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(6, 21, 43, 0.62);
}
.withdraw-balance-meta strong { color: var(--ink); font-weight: 700; }
.withdraw-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(6, 21, 43, 0.1);
  background: #fff;
}
.withdraw-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(6, 21, 43, 0.68);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.withdraw-menu-item:hover { color: #06152b; background: rgba(6, 21, 43, 0.04); }
.withdraw-menu-item.is-active {
  background: #041124;
  color: #fff;
}
.withdraw-menu-item em {
  font-style: normal;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(6, 21, 43, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
}
.withdraw-menu-item.is-active em {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.withdraw-main { min-width: 0; }
.withdraw-panel .acct-card-head { margin-bottom: 14px; }
.withdraw-form .account-form-grid { margin-bottom: 4px; }
.withdraw-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.withdraw-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(6, 21, 43, 0.08);
  background: rgba(6, 21, 43, 0.02);
}
.withdraw-row strong { display: block; font-size: 1.05rem; }
.withdraw-row .muted { display: block; margin-top: 2px; font-size: 0.8rem; }
.withdraw-row code {
  font-size: 0.82rem;
  color: rgba(6, 21, 43, 0.7);
  background: transparent;
}
.withdraw-iban-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.withdraw-iban-cell code {
  font-size: 0.82rem;
  color: rgba(6, 21, 43, 0.7);
  word-break: break-all;
}
.withdraw-iban-eye {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.auth-field .auth-password-wrap + .muted,
.auth-field .auth-password-wrap ~ .muted {
  display: block;
  margin-top: 6px;
}
input[data-iban-input].is-iban-masked {
  -webkit-text-security: disc;
  text-security: disc;
}
.iban-field-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.iban-field-row .auth-password-wrap {
  flex: 1;
  min-width: 0;
}
.iban-save-btn {
  flex: none;
  align-self: stretch;
  min-width: 5.75rem;
  min-height: 44px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  border-radius: 12px;
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 1px solid #111 !important;
  cursor: pointer;
  box-shadow: none !important;
}
.iban-save-btn:hover {
  background: #222 !important;
  border-color: #222 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.iban-save-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}
.iban-save-btn.is-validated {
  background: #111 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.auth-field .iban-save-btn,
.auth-field .iban-save-btn span {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
input[data-iban-locked] {
  cursor: default;
  background: rgba(6, 21, 43, 0.04);
}
@media (max-width: 860px) {
  .withdraw-layout { grid-template-columns: 1fr; }
  .withdraw-side { position: static; }
  .withdraw-menu { flex-direction: row; flex-wrap: wrap; }
  .withdraw-menu-item { flex: 1 1 auto; min-width: 140px; }
}
@media (max-width: 560px) {
  .withdraw-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "amount status"
      "iban iban";
  }
  .withdraw-row > div:first-child { grid-area: amount; }
  .withdraw-row > .withdraw-iban-cell { grid-area: iban; }
  .withdraw-row > :last-child { grid-area: status; justify-self: end; }
}

/* Ads layout */
.ads-page {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-height: 280px;
}
.ads-lede {
  margin: 8px 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(6, 21, 43, 0.62);
}
.ads-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 !important;
  overflow: hidden;
}
.ads-kpis > div {
  padding: 12px 14px;
  border-right: 1px solid rgba(6, 21, 43, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ads-kpis > div:last-child { border-right: 0; }
.ads-kpis span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.48);
}
.ads-kpis strong {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #06152b;
  line-height: 1.1;
}
.ads-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.12);
  border-radius: 12px;
  overflow: hidden;
}
.ads-tab {
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(6, 21, 43, 0.1);
  background: transparent;
  color: #06152b;
  font: 700 0.86rem Manrope, sans-serif;
  padding: 10px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ads-tab:last-child { border-right: 0; }
.ads-tab:hover { background: #f6f4ef; }
.ads-tab.is-active { background: #041124; color: #fff; }
.ads-tab em {
  font-style: normal;
  min-width: 1.4em;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(6, 21, 43, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}
.ads-tab.is-active em { background: rgba(255,255,255,0.18); color: #fff; }
.ads-panel[hidden] { display: none !important; }
.ads-packages {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 160px;
  visibility: visible !important;
  opacity: 1 !important;
}
.ads-package {
  position: relative;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
  padding: 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(6, 21, 43, 0.14);
  background: #fff !important;
  color: #06152b;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ads-package input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ads-package:hover { border-color: rgba(6, 21, 43, 0.28); }
.ads-package.is-selected {
  border-color: #041124;
  box-shadow: 0 10px 28px rgba(4, 17, 36, 0.08);
}
.ads-package.is-featured { background: linear-gradient(180deg, #fffaf0 0%, #fff 55%) !important; }
.ads-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ads-package-place {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.5);
}
.ads-package-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: #041124;
  color: #fff;
}
.ads-package-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #06152b;
  line-height: 1.25;
}
.ads-package-desc {
  margin: 0;
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(6, 21, 43, 0.62);
}
.ads-package-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}
.ads-package-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #06152b;
}
.ads-list { display: flex; flex-direction: column; gap: 10px; }
.ads-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(6, 21, 43, 0.08);
  background: rgba(6, 21, 43, 0.02);
}
.ads-row-main { min-width: 0; }
.ads-row-main strong { display: block; font-size: 0.98rem; }
.ads-row-main .muted { display: block; margin-top: 2px; font-size: 0.8rem; }
.ads-row-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ads-row-price { font-size: 1rem; }
@media (max-width: 980px) {
  .ads-packages { grid-template-columns: 1fr; }
  .ads-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ads-kpis > div:nth-child(2n) { border-right: 0; }
  .ads-kpis > div:nth-child(-n+2) { border-bottom: 1px solid rgba(6, 21, 43, 0.1); }
}
@media (max-width: 560px) {
  .ads-row { flex-direction: column; align-items: flex-start; }
  .ads-row-meta { width: 100%; justify-content: space-between; }
}

/* Seller dashboard */
.dash-shell { display: flex; flex-direction: column; gap: 12px; }
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 14px;
  overflow: hidden;
}
.dash-kpi {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(6, 21, 43, 0.1);
  background: #fff;
}
.dash-kpi:last-child { border-right: 0; }
.dash-kpi > span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.48);
}
.dash-kpi > strong {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #06152b;
}
.dash-kpi-status { font-size: 1.15rem !important; }
.dash-kpi > em {
  font-style: normal;
  font-size: 0.76rem;
  color: rgba(6, 21, 43, 0.55);
}
.dash-panel--sales {
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 14px;
  padding: 12px 14px 10px;
  min-width: 0;
}
.dash-panel--sales .dash-panel-head {
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.dash-sales-head-text { min-width: 0; }
.dash-sales-head-text h3 { margin: 0; }
.dash-sales-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 0;
  flex-wrap: wrap;
}
.dash-sales-meta strong {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #06152b;
}
.dash-sales-meta span {
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.55);
}
.dash-range {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: #f6f4ef;
  flex: none;
}
.dash-range-btn {
  border: 0;
  background: transparent;
  color: rgba(6, 21, 43, 0.62);
  font: 700 0.72rem/1 Manrope, system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}
.dash-range-btn:hover { color: #06152b; }
.dash-range-btn.is-active {
  background: #06152b;
  color: #fff;
}
.dash-panel-body--sales { position: relative; }
.dash-sales-wrap {
  position: relative;
  width: 100%;
}
.dash-sales-chart {
  width: 100%;
  height: auto;
  display: block;
  min-height: 150px;
  overflow: visible;
}
.dash-sales-dot {
  fill: #06152b;
  stroke: #fff;
  stroke-width: 1.5;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.12s ease;
}
.dash-sales-hit {
  cursor: pointer;
}
.dash-sales-point.is-active .dash-sales-dot {
  transform: scale(1.55);
}
.dash-sales-tip {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, calc(-100% - 12px));
  padding: 7px 10px;
  border-radius: 8px;
  background: #06152b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(6, 21, 43, 0.22);
}
.dash-sales-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #06152b;
  border-bottom: 0;
}
.dash-sales-grid {
  stroke: rgba(6, 21, 43, 0.06);
  stroke-width: 1;
}
.dash-sales-axis {
  stroke: rgba(6, 21, 43, 0.14);
  stroke-width: 1;
}
.dash-sales-empty {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.dash-charts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 14px;
  overflow: hidden;
}
.dash-panel {
  padding: 12px 14px 14px;
  background: #fff;
  border: 0;
  border-right: 1px solid rgba(6, 21, 43, 0.1);
  border-radius: 0;
  min-width: 0;
}
.dash-panel:last-child { border-right: 0; }
.dash-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(6, 21, 43, 0.1);
}
.dash-panel-head h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #06152b;
}
.dash-panel-body--split {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 0;
}
.dash-panel-body--stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.dash-donut, .dash-ring { width: 100px; height: 100px; flex: none; }
.dash-colchart { width: 100%; max-width: none; height: 118px; display: block; }
.dash-chart-label { font-size: 10px; font-weight: 700; fill: #4b5563; font-family: Manrope, sans-serif; }
.dash-chart-val { font-size: 9px; font-weight: 800; fill: #06152b; font-family: Manrope, sans-serif; }
.dash-donut-num {
  font-size: 18px;
  font-weight: 800;
  fill: #06152b;
  font-family: Manrope, sans-serif;
}
.dash-donut-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: #9ca3af;
  font-family: Manrope, sans-serif;
}
.dash-ring-pct {
  font-size: 15px;
  font-weight: 800;
  fill: #06152b;
  font-family: Manrope, sans-serif;
}
.dash-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.dash-legend--row {
  flex-direction: column;
  gap: 5px;
}
.dash-legend li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(6, 21, 43, 0.72);
  line-height: 1.2;
}
.dash-legend i {
  width: 10px; height: 10px; border-radius: 3px;
  display: block;
}
.dash-legend strong { color: #06152b; font-weight: 800; font-variant-numeric: tabular-nums; }
.dash-next { flex: 1; min-width: 0; }
.dash-next strong { display: block; font-size: 1rem; margin: 2px 0 4px; line-height: 1.25; }
.dash-next .muted { margin: 0; font-size: 0.78rem; line-height: 1.35; }
.dash-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 14px;
  overflow: hidden;
}
.dash-tool {
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(6, 21, 43, 0.1);
  background: transparent;
  color: #06152b;
  font: 700 0.84rem Manrope, sans-serif;
  padding: 10px 14px;
  cursor: pointer;
  flex: 1 1 auto;
  text-align: center;
}
.dash-tool:last-child { border-right: 0; }
.dash-tool:hover { background: #f6f4ef; }
.dash-shops {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(6, 21, 43, 0.14);
  border-radius: 14px;
}
.dash-shops-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(6, 21, 43, 0.45);
}
.dash-shop-list { display: flex; flex-wrap: wrap; gap: 8px; }
.dash-shop-chip {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(6, 21, 43, 0.18);
  background: transparent;
  border-radius: 0;
  padding: 6px 2px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #06152b;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  box-shadow: none;
}
.dash-shop-chip strong { font-size: 0.9rem; }
.dash-shop-chip span { font-size: 0.75rem; color: #6b7280; }
.dash-shop-chip.is-active { border-bottom-color: #06152b; }
.dash-shop-chip:hover { border-bottom-color: #06152b; }
@media (max-width: 980px) {
  .dash-charts { grid-template-columns: 1fr; }
  .dash-panel { border-right: 0; border-bottom: 1px solid rgba(6, 21, 43, 0.1); }
  .dash-panel:last-child { border-bottom: 0; }
  .dash-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dash-kpi:nth-child(2n) { border-right: 0; }
  .dash-kpi:nth-child(-n+2) { border-bottom: 1px solid rgba(6, 21, 43, 0.1); }
}
@media (max-width: 520px) {
  .dash-kpis { grid-template-columns: 1fr; }
  .dash-kpi { border-right: 0; border-bottom: 1px solid rgba(6, 21, 43, 0.1); }
  .dash-kpi:last-child { border-bottom: 0; }
  .dash-panel-body--split { flex-direction: column; align-items: flex-start; }
  .dash-toolbar { flex-direction: column; }
  .dash-tool { border-right: 0; border-bottom: 1px solid rgba(6, 21, 43, 0.1); text-align: left; }
  .dash-tool:last-child { border-bottom: 0; }
}


/* Add shop modal */
body.add-shop-modal-open,
html.add-shop-modal-open { overflow: hidden; }
.add-shop-modal {
  position: fixed; inset: 0; z-index: 220;
  display: grid; place-items: center; padding: 20px;
}
.add-shop-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(6, 21, 43, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.add-shop-modal-card {
  position: relative; z-index: 1;
  width: min(520px, 100%);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: #fff;
  color: #06152b;
  box-shadow: 0 24px 60px rgba(6, 21, 43, 0.28);
}
.add-shop-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border: 0; border-radius: 10px;
  background: #f3f4f6; color: #06152b; font-size: 1.35rem; line-height: 1;
  cursor: pointer;
}
.add-shop-modal-close:hover { background: #e5e7eb; }
.add-shop-modal-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end;
  margin-top: 16px;
}
.add-shop-modal .account-form-grid { margin: 0; }

/* Product admin-response modal (reuse add-shop shell) */
.product-changes-modal .account-changes-box { margin-top: 4px; }
.product-changes-modal .add-shop-modal-card { width: min(480px, 100%); }


/* Partner dashboard — orders by country */
.dash-panel--map .dash-panel-body--map {
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .dash-panel--map .dash-panel-body--map {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}
.dash-world {
  width: 100%;
  min-height: 180px;
  border-radius: 14px;
  background: #f3f6fb;
  overflow: hidden;
}
.dash-world-svg { display: block; width: 100%; height: auto; }
.dash-country-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.dash-country-list li { display: grid; gap: 4px; }
.dash-country-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.dash-country-row strong { font-weight: 700; color: #06152b; }
.dash-country-row span { color: #64748b; tabular-nums: true; font-variant-numeric: tabular-nums; }
.dash-country-bar {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #06152b;
  max-width: 100%;
}


/* Dedicated shop subdomain — Vision Rebel front header size + shop logo left;
   on scroll header slides away and Apple liquid mini-dock appears top-right */
html.shop-storefront {
  --header-h: 68px;
  --shop-pad: clamp(20px, 4vw, 48px);
  --shop-ink: #101a2c;
  --shop-navy: #173254;
  --shop-line: rgba(36, 74, 120, 0.12);
  --shop-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
/* Seller boutiques: no site header — mini-dock only */
html.shop-storefront body.shop-storefront,
html.shop-storefront .page.page-shop {
  padding-top: 0 !important;
}
html.shop-storefront .site-header,
html.shop-storefront .site-header.is-solid,
html.shop-storefront .site-header.is-brand,
html.shop-storefront .site-header.is-away {
  display: none !important;
}
html.shop-storefront .mini-dock {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
html.shop-storefront .mini-dock.is-visible {
  opacity: 1 !important;
}
html.shop-storefront .site-header {
  position: fixed !important;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h) !important;
  min-height: var(--header-h) !important;
  max-height: var(--header-h);
  flex: none !important;
  flex-wrap: nowrap !important;
  gap: 18px;
  padding: 0 var(--shop-pad) !important;
  row-gap: 0 !important;
  background: rgba(255, 255, 255, 0.94);
  color: var(--shop-ink);
  border-bottom: 1px solid var(--shop-line);
  box-shadow: 0 1px 0 rgba(36, 74, 120, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform-origin: right center;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    background 0.25s ease;
}
html.shop-storefront .site-header.is-solid {
  background: #ffffff;
}
html.shop-storefront .site-header.is-away {
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
}
html.shop-storefront .site-header .nav { display: none !important; }
html.shop-storefront .site-header [data-lang-menu] { display: none !important; }
html.shop-storefront .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  color: var(--shop-navy);
  max-width: min(52vw, 280px);
}
html.shop-storefront .logo-img {
  display: block !important;
  height: 36px !important;
  width: auto !important;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}
html.shop-storefront .logo-text {
  display: inline !important;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: var(--shop-navy);
  overflow: hidden;
  text-overflow: ellipsis;
}
html.shop-storefront .logo-img + .logo-text { display: none !important; }
html.shop-storefront .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
html.shop-storefront .header-actions .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--shop-ink);
  background: transparent;
  transition: background 0.2s var(--shop-ease), color 0.2s;
}
html.shop-storefront .header-actions .icon-btn:hover {
  background: rgba(11, 18, 32, 0.06);
  color: var(--shop-navy);
}
html.shop-storefront .header-actions .cart-badge {
  top: 4px;
  right: 4px;
  background: var(--shop-navy);
  color: #fff;
}
html.shop-storefront .shop-burger {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.06);
  color: var(--shop-ink);
  cursor: pointer;
  padding: 0;
}
html.shop-storefront .shop-burger:hover {
  background: rgba(11, 18, 32, 0.1);
}
html.shop-storefront .shop-burger span {
  display: block;
  width: 16px;
  height: 1.7px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 2px;
}
html.shop-storefront .shop-drawer {
  position: fixed;
  inset: calc(var(--header-h) + 8px) 12px auto 12px;
  z-index: 49;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--shop-line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: none;
  gap: 4px;
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.12);
}
html.shop-storefront .shop-drawer.is-open { display: grid; }
html.shop-storefront .shop-drawer a {
  padding: 12px;
  border-radius: 12px;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(11, 18, 32, 0.82);
  text-decoration: none;
}
html.shop-storefront .shop-drawer a:hover {
  background: rgba(11, 18, 32, 0.06);
  color: var(--shop-ink);
}
@media (max-width: 900px) {
  html.shop-storefront .site-header {
    height: var(--header-h) !important;
    min-height: var(--header-h) !important;
    padding: 0 16px !important;
    flex-wrap: nowrap !important;
  }
  html.shop-storefront .logo-img {
    height: 30px !important;
  }
  html.shop-storefront .logo-text {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }
}
html.shop-storefront .footer-col a[href*="reseller"],
html.shop-storefront .footer-col a[href*="boutiques"] {
  display: none !important;
}
html.shop-storefront .boutique-hero-nav[hidden] { display: none !important; }


/* Shop storefront: brand-colored header + liquid dock always visible */
html.shop-storefront .site-header,
html.shop-storefront .site-header.is-solid,
html.shop-storefront .site-header.is-brand {
  background: color-mix(in srgb, var(--shop-storefront-color, #173254) 92%, #ffffff) !important;
  color: #fff !important;
  border-bottom-color: color-mix(in srgb, var(--shop-storefront-color, #173254) 70%, #000) !important;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--shop-storefront-color, #173254) 28%, transparent) !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
html.shop-storefront .site-header .logo-text,
html.shop-storefront .site-header .icon-btn,
html.shop-storefront .site-header .shop-burger {
  color: #fff !important;
}
html.shop-storefront .site-header .icon-btn:hover {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
}
html.shop-storefront .site-header .cart-badge {
  background: #fff;
  color: var(--shop-storefront-color, #173254);
}
html.shop-storefront .site-header.is-away {
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
html.shop-storefront .mini-dock {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}
html.shop-storefront .mini-dock-panel {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

/* Tote Bag Canvas — keep full bag framed */
.product-media:has(img[src*="morgan-is-cool/products/m04-"]),
.shop-card-media:has(img[src*="morgan-is-cool/products/m04-"]),
.pdp-gallery:has(img[src*="morgan-is-cool/products/m04-"]) {
  background: #f3f4f6 !important;
}
.product-media img[src*="morgan-is-cool/products/m04-"],
.shop-card-media img[src*="morgan-is-cool/products/m04-"],
.pdp-gallery img[src*="morgan-is-cool/products/m04-"],
.pdp-main-img[src*="morgan-is-cool/products/m04-"],
.carousel .product-media img[src*="morgan-is-cool/products/m04-"],
img[src*="morgan-is-cool/products/m04-"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #f3f4f6 !important;
  padding: 6% !important;
  box-sizing: border-box !important;
}

/* === shop storefront: no header === */
html.shop-storefront .site-header {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
html.shop-storefront body.shop-storefront,
html.shop-storefront .page.page-shop {
  padding-top: 0 !important;
}

/* === Seller theme (from catalog.theme) === */
html.shop-storefront.has-shop-page-bg,
html.shop-storefront.has-shop-page-bg body {
  background: var(--shop-page-bg, #fff) !important;
}
html.shop-storefront .boutique-hero {
  min-height: var(--shop-banner-h, clamp(200px, 26vh, 300px));
}
html.shop-storefront .boutique-products .shop-grid {
  grid-template-columns: repeat(var(--shop-per-row, 3), minmax(0, 1fr));
}
html.shop-storefront.shop-hide-names .boutique-products .shop-card h3 {
  display: none !important;
}
html.shop-storefront.shop-hide-prices .boutique-products .shop-card .price {
  display: none !important;
}
@media (max-width: 720px) {
  html.shop-storefront .boutique-products .shop-grid {
    grid-template-columns: repeat(var(--shop-per-row-m, 1), minmax(0, 1fr));
  }
}

/* Windows: kill remaining liquid glass blur (janky / dead) */
html.is-windows .liquid-glass,
html.is-windows .liquid-card,
html.is-windows .mini-dock-panel,
html.is-windows .vr-liquid-pill,
html.is-windows .vr-liquid-float,
html.is-windows [class*="glass"] {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Account customize iframe — hide chrome noise */
html.vr-preview-mode #reselp-cookie,
html.vr-preview-mode .cookie-bar {
  display: none !important;
}

/* FORCE Windows / reduce-motion soft UI — never binary */
@media (prefers-reduced-motion: reduce) {
  .site-header, .mini-dock, .mini-dock-panel, .mini-dock-expand,
  .liquid-pill, .liquid-card, .liquid-btn, .product-card, .shop-card,
  .btn, .vr-liquid-pill, .vr-liquid-float {
    animation-duration: 0.28s !important;
    transition-duration: 0.22s !important;
  }
}
html.is-windows .liquid-glass,
html.is-windows .liquid-card,
html.is-windows .mini-dock-panel,
html.is-windows .vr-liquid-pill,
html.is-windows .vr-liquid-float {
  /* opaque fallback already elsewhere — keep motion */
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}


/* Account My Shop iframe preview — hide trust ticks while editing */
html.vr-preview-mode .cert-badge,
html.vr-preview-mode [data-cert-badge] {
  display: none !important;
}


/* Banner height → typography always scales */
html.shop-storefront .boutique-hero {
  min-height: var(--shop-banner-h, 220px) !important;
  height: auto;
}
html.shop-storefront .boutique-hero-inner {
  padding: var(--shop-banner-pad, 10px 36px 18px) !important;
  gap: calc(14px * var(--shop-banner-type, 0.86));
  align-items: center;
}
html.shop-storefront .boutique-hero-avatar {
  width: var(--shop-banner-avatar, 64px) !important;
  height: var(--shop-banner-avatar, 64px) !important;
  border-radius: calc(var(--shop-banner-avatar, 64px) * 0.25) !important;
}
html.shop-storefront .boutique-hero h1 {
  font-size: calc(clamp(1.55rem, 2.6vw, 2.15rem) * var(--shop-banner-type, 0.86)) !important;
  margin: 2px 0 6px !important;
  line-height: 1.12 !important;
}
html.shop-storefront .boutique-hero .eyebrow {
  font-size: calc(0.72rem * var(--shop-banner-type, 0.86)) !important;
  letter-spacing: 0.12em;
}
html.shop-storefront .boutique-hero-tag {
  font-size: calc(0.95rem * var(--shop-banner-type, 0.86)) !important;
  margin: 0 0 6px !important;
}
html.shop-storefront .boutique-hero-bio {
  font-size: calc(0.88rem * var(--shop-banner-type, 0.86)) !important;
  line-height: 1.45 !important;
  margin: 0 0 8px !important;
  max-width: 56ch;
}
html.shop-storefront .boutique-hero .boutique-stats {
  font-size: calc(0.82rem * var(--shop-banner-type, 0.86)) !important;
  gap: calc(10px * var(--shop-banner-type, 0.86)) calc(16px * var(--shop-banner-type, 0.86));
}
html.shop-storefront .boutique-owner-pill {
  font-size: calc(0.78rem * var(--shop-banner-type, 0.86)) !important;
  padding: calc(4px * var(--shop-banner-type, 0.86)) calc(10px * var(--shop-banner-type, 0.86)) !important;
}
html.shop-storefront[data-banner-size="small"] .boutique-hero-bio {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 720px) {
  html.shop-storefront .boutique-hero-inner {
    padding: calc(12px * var(--shop-banner-type, 0.86)) 16px calc(16px * var(--shop-banner-type, 0.86)) !important;
  }
  html.shop-storefront .boutique-hero-avatar {
    width: calc(var(--shop-banner-avatar, 64px) * 0.85) !important;
    height: calc(var(--shop-banner-avatar, 64px) * 0.85) !important;
  }
}
