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

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  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;
}

/* ========== 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;
}

.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;
  inset: 0 0 0 38%;
  pointer-events: none;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  image-rendering: -webkit-optimize-contrast;
}

.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: 1280px;
  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 {
  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: 1280px;
  margin: 0 auto 14px;
}

.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: 3px;
  font-size: 0.84rem;
  color: rgba(6,21,43,0.65);
}

.carousel-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

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

.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: 1;
  max-height: 132px;
  border-radius: 10px;
  background: #f0f0f0;
  overflow: hidden;
}

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

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

.price {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(6,21,43,0.7);
}

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

  .product-media { max-height: none; aspect-ratio: 1; }

  .carousel-nav {
    display: none;
  }

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

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

  .bestsellers-section .carousel {
    grid-auto-columns: minmax(148px, 42%);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .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; right: 10px; left: auto; }
  .mini-dock-panel { border-radius: 20px; }
  .mini-dock-panel.is-open,
  .mini-dock-panel:focus-within {
    width: min(220px, calc(100vw - 24px));
  }
  .mini-dock-panel.is-open .mini-dock-expand,
  .mini-dock-panel:focus-within .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: 56px 44px;
  background: #fff;
}

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

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

@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: calc((100% - 1 * 10px) / 2);
  }
}

.section-lead {
  margin: -4px 0 28px;
  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: 48px 44px 56px;
  background: #f6f7f9;
}

.promo-inner {
  max-width: 1280px;
  margin: 0 auto 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-inner {
  max-width: 1280px;
  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: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
}

.footer-bottom p { margin: 0; }

/* ========== 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;
}

.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: 1;
  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: 12px 0 4px;
  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) ========== */
.mini-dock {
  position: fixed;
  top: 18px;
  right: 18px;
  left: auto;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(12px, -8px, 0) scale(0.72);
  filter: blur(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}

.mini-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
    transform 0.7s cubic-bezier(0.34, 1.45, 0.64, 1) 0.1s,
    filter 0.55s ease 0.1s;
}

.mini-dock-panel {
  width: 92px;
  overflow: hidden;
  border-radius: 22px;
  /* Apple liquid — more frost so behind content softens */
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(6, 21, 43, 0.04),
    0 1px 2px rgba(6, 21, 43, 0.06),
    0 10px 28px rgba(6, 21, 43, 0.14),
    0 0 0 1px rgba(6, 21, 43, 0.06);
  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:hover,
.mini-dock-panel:focus-within,
.mini-dock-panel.is-open {
  width: 220px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 14px 40px rgba(6, 21, 43, 0.18),
    0 0 0 1px rgba(6, 21, 43, 0.08);
}

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

.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:hover .mini-dock-expand,
.mini-dock-panel:focus-within .mini-dock-expand,
.mini-dock-panel.is-open .mini-dock-expand {
  max-height: 160px;
  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); }

@media (max-width: 820px) {
  .mini-dock { top: 12px; right: 12px; left: auto; }
  .mini-dock-panel:hover,
  .mini-dock-panel:focus-within,
  .mini-dock-panel.is-open { width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .mini-dock,
  .mini-dock-panel,
  .mini-dock-expand,
  .liquid-pill,
  .liquid-card,
  .liquid-btn {
    transition: none !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;
}

.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.86);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
  }
}

/* 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;
}

.liquid-pill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 10px;
  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;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
    width 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
    height 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.2s ease;
}

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

.shop-cats {
  position: relative;
}

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

.shop-cat.is-active {
  background: transparent;
  color: #fff;
}

.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: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1px 0 #fff,
    0 4px 14px rgba(6, 21, 43, 0.08),
    0 0 0 1px rgba(6, 21, 43, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.2s ease;
}

.view-all:hover {
  transform: translateY(-1px) scale(1.02);
  background: rgba(255, 255, 255, 0.92);
}

.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.75rem;
  color: rgba(6, 21, 43, 0.5);
  font-weight: 500;
}

.shop-card .price { margin: 0; font-weight: 700; font-size: 0.92rem; }
.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: 14px;
  bottom: -18px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

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

.boutique-body h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

.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-hero {
  position: relative;
  color: #fff;
  background: var(--shop-color, var(--navy));
  overflow: hidden;
}

.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: 48px 44px 40px;
  display: flex;
  gap: 22px;
  align-items: flex-end;
}

.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: 6px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
}

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

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

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

/* ========== PRODUCT DETAIL ========== */
.pdp-page,
.cart-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 44px 80px;
  flex: 1;
  width: 100%;
}

.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-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 {
  color: #c9a227;
  letter-spacing: 1px;
  font-size: 0.92rem;
}

.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: block;
  font-size: 0.98rem;
}

.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;
  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-price {
  margin: 0 0 6px;
  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-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 10px;
  color: rgba(6, 21, 43, 0.78);
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 48ch;
}

.pdp-desc-more {
  margin: 0 0 22px;
  color: rgba(6, 21, 43, 0.58);
  line-height: 1.6;
  font-size: 0.92rem;
  max-width: 50ch;
}

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

.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-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;
  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: 1fr 300px;
  gap: 28px;
  align-items: start;
}

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

.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(6, 21, 43, 0.08);
  background: #fff;
}

.cart-thumb {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f2f5;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-info h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.cart-line {
  margin: 0;
  font-weight: 700;
  min-width: 72px;
  text-align: right;
}

.cart-summary {
  padding: 22px;
  border-radius: 18px;
  background: rgba(10, 23, 42, 0.04);
  border: 1px solid rgba(6, 21, 43, 0.08);
  position: sticky;
  top: 24px;
}

.cart-summary h2 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 18px;
  font-size: 1.1rem;
}

.cart-summary .btn { width: 100%; justify-content: center; }

.cart-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: rgba(6, 21, 43, 0.5);
  text-align: center;
}

@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; }
  .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-row {
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "thumb info"
      "thumb qty"
      "thumb line";
  }
  .cart-thumb { grid-area: thumb; width: 72px; height: 72px; }
  .cart-info { grid-area: info; }
  .qty-field { grid-area: qty; width: fit-content; }
  .cart-line { grid-area: line; text-align: left; }
}

/* ========== 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; }
}


/* ========== LARGE SCREENS — keep same look, stop ultra-wide stretch ========== */
@media (min-width: 1600px) {
  .site-header {
    padding-left: max(44px, calc((100vw - 1440px) / 2));
    padding-right: max(44px, calc((100vw - 1440px) / 2));
  }

  .hero {
    padding-left: max(44px, calc((100vw - 1440px) / 2));
    padding-right: max(44px, calc((100vw - 1440px) / 2));
  }

  .hero-stage {
    left: max(38%, calc((100vw - 1440px) / 2 + 520px));
    right: max(0px, calc((100vw - 1440px) / 2));
  }

  .recommended,
  .content-section,
  .promo-band,
  .reseller-band,
  .site-footer {
    padding-left: max(44px, calc((100vw - 1440px) / 2));
    padding-right: max(44px, calc((100vw - 1440px) / 2));
  }

  .shop-hero,
  .shop-layout,
  .pdp-page,
  .cart-page,
  .boutique-products,
  .boutique-hero-inner,
  .sr-hero,
  .sr-layout {
    padding-left: max(44px, calc((100vw - 1440px) / 2));
    padding-right: max(44px, calc((100vw - 1440px) / 2));
  }
}

/* Mini-dock solid base only when backdrop-filter unavailable (Windows fallback) */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .mini-dock-panel {
    background: rgba(255, 255, 255, 0.94);
  }
}
