/** Shopify CDN: Minification failed

Line 2425:0 Expected "}" to go with "{"

**/
/* ============================================================
   SAUNII V2 Ã¢â‚¬â€ Shopify Theme Stylesheet
   Luxury Handbag Brand
   Fonts: GFS Didot (display), Alice (body)
   Palette: burgundy accents on clean white backgrounds
   ============================================================ */

/* --- Font Face Fallbacks --- */
@font-face {
  font-family: 'GFS Didot';
  font-display: swap;
}
@font-face {
  font-family: 'Alice';
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --burgundy: #3e041b;
  --gold: #B8902A;
  --cream: #F5F0E8;
  --sand: #C4AB82;
  --espresso: #2A1A0E;
  --dark: #1A0A10;
--font-display: 'Instrument Serif', Georgia, serif;
--font-body: 'Manrope', Arial, sans-serif;

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  background: #ffffff;
  background-color: #ffffff;
  background-image: none;
  color: var(--espresso);
  line-height: 1.6;
  min-height: 100vh;
}
@media (max-width: 768px) {
  body {
    background: #ffffff;
    background-color: #ffffff;
    background-image: none;
  }
}
/* Lock body scroll only while the coming-soon overlay is actually visible */
body.coming-soon-active { overflow: hidden; }
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
a:hover, button:hover, [role="button"]:hover, input[type="submit"]:hover {
  opacity: 0.55;
}
/* Exclude elements that have their own hover states */
.header__hamburger:hover, .header__icon:hover, .mobile-menu__link:hover,
.product-gallery__thumb:hover, .product-page__add:hover, .btn-cta:hover,
.coming-soon__notify:hover, .cart-drawer__checkout:hover { opacity: 1; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
ul, ol {
  list-style: none;
}
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Accessibility utility Ã¢â‚¬â€ visually hide an element while keeping it
   readable for screen readers (used for SEO-only headings). --- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Custom Cursor (site-wide) --- */
*, *::before, *::after {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%232A1A0E' d='M7 2l12 11.2-5.8.5 3.3 7.3-2.2 1-3.2-7.4L7 18.5z'/%3E%3C/svg%3E") 4 2, auto;
}
a, button, [role="button"], input[type="submit"], .product-card {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%232A1A0E' d='M7 2l12 11.2-5.8.5 3.3 7.3-2.2 1-3.2-7.4L7 18.5z'/%3E%3C/svg%3E") 4 2, pointer;
}


/* --- Buttons --- */
.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: 1px solid #000;
  color: #000;
  background: transparent;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  text-align: center;
}
.btn-cta:hover {
  background: #000;
  color: var(--cream);
}
/* Dark context buttons (popup, coming-soon) */
.popup .btn-cta,
.coming-soon .btn-cta {
  border-color: var(--cream);
  color: var(--cream);
}
.popup .btn-cta:hover,
.coming-soon .btn-cta:hover {
  background: var(--cream);
  color: var(--burgundy);
}


/* ============================================================
   HEADER Ã¢â‚¬â€ hamburger left, logo center, bag icon right
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: 0;
}
.site-header::after,
.site-header::before { content: none; }

/* ----------------------------------------------------------
   Inner-page scroll clipping
   On every page except the home and the coming-soon overlay,
   the body locks and <main> becomes the scrollable region.
   A mask-image keeps the top strip (where the fixed header
   sits) invisible Ã¢â‚¬â€ anything that scrolls into that band is
   clipped out, so content never appears behind the logo.
   The header itself is unchanged: still transparent, still
   showing the page background through it.
   ---------------------------------------------------------- */
body:not(.template-index):not(.coming-soon-active) {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}
body:not(.template-index):not(.coming-soon-active) > #main-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* Hard cutoff at the bottom of the fixed header (Ã¢â€°Ë†105px desktop).
     Above the cutoff: transparent (clipped). Below: opaque. */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, transparent 105px, #000 105px);
          mask-image: linear-gradient(to bottom, transparent 0, transparent 105px, #000 105px);
}
@media (max-width: 768px) {
  body:not(.template-index):not(.coming-soon-active) > #main-content {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, transparent 88px, #000 88px);
            mask-image: linear-gradient(to bottom, transparent 0, transparent 88px, #000 88px);
  }
}
.header__inner {
  width: 100%;
  padding: 1.25rem 2rem;
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left,
.header__right {
  display: flex;
  align-items: center;
}
.header__right {
  justify-content: flex-end;
}
.header__logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-img {
  height: 65px;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo-img {
    height: 50px;
  }
}

/* Hamburger Ã¢â‚¬â€ always visible, larger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: none;
  border: none;
  padding: 4px;
  width: 48px;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 3.5px;
  background: #000;
  border-radius: 999px;
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
  .header__hamburger { width: 40px; gap: 10px; }
  .header__hamburger span { height: 3px; }
}

/* Header icons */
.header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  position: relative;
}
.header__bag-icon {
  width: 52px;
  height: 52px;
  color: #000;
  transition: transform 0.3s;
  /* Render the merchant's uploaded icon as-is Ã¢â‚¬â€ no filters that could
     fill in interior negative space and obscure the artwork. */
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header__bag-icon { width: 44px; height: 44px; }
}
.header__icon:hover .header__bag-icon {
  transform: scale(1.08);
}
/* Translucent bubble around the cart count */
.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}


/* ============================================================
   FULLSCREEN MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* Frosted-glass: semi-translucent cream tint over a heavy blur of
     whatever sits behind the menu (the home / coming-soon / inner page).
     This is what gives the menu its soft beige look while still letting
     the page bleed through subtly. */
  background: rgba(220, 210, 198, 0.72);
  -webkit-backdrop-filter: blur(32px) saturate(1.15);
  backdrop-filter: blur(32px) saturate(1.15);
}
/* Optional menu bg image (Header section Ã¢â€ â€™ Menu Background) sits inside
   the bg div as a faint, heavily blurred decorative layer Ã¢â‚¬â€ it adds soft
   warmth/colour but never reads as artwork. */
.mobile-menu__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  filter: blur(36px) brightness(1.02) saturate(0.9);
  transform: scale(1.2);
}
.mobile-menu__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Menu top bar Ã¢â‚¬â€ match main header padding/sizing exactly */
.mobile-menu__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}
/* Close X icon Ã¢â‚¬â€ built from two crossed lines, matching hamburger weight */
.mobile-menu__close {
  position: relative;
  width: 44px;
  height: 32px;
  background: none;
  border: none;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}
.mobile-menu__close::before,
.mobile-menu__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 999px;
}
.mobile-menu__close::before { transform: translateY(-50%) rotate(45deg); }
.mobile-menu__close::after  { transform: translateY(-50%) rotate(-45deg); }
@media (max-width: 768px) {
  .mobile-menu__close { width: 38px; height: 28px; }
}

.mobile-menu__logo img {
  height: 65px;
  width: auto;
}
@media (max-width: 768px) {
  .mobile-menu__logo img { height: 50px; }
}

/* Menu nav links Ã¢â‚¬â€ bold, big, pure black */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu__link {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.01em;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .mobile-menu__nav { gap: 1.7rem; }
  .mobile-menu__link { font-size: 1.9rem; }
}
.mobile-menu__link:hover {
  opacity: 0.35;
}


/* ============================================================
   HERO VIDEO SECTION
   ============================================================ */
/* HOME HERO Ã¢â‚¬â€ full viewport leather bg + large centered logo */
.home-hero {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Heavy soft blur so the underlying image reads as a backdrop, not artwork.
     Same look as the lockpage so the home swap feels seamless. */
  filter: blur(14px) brightness(0.95) saturate(0.95);
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .home-hero__bg img {
    transform: scale(1.1);
  }
}
/* Hide giant Saunii logo from homepage hero */
.home-hero__logo {
  display: none !important;
}

/* Hide header center logo on the home page (preview + Shopify) */
body.is-home .header__logo,
body.template-index .header__logo {
  visibility: hidden;
}

/* ============================================================
   COLLECTION / SHOP PAGE
   ============================================================ */

.collection-page {
  background: #ffffff;
  padding: 9rem 2rem 4rem;
}

.collection-page__title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: #3e041b;
  margin-bottom: 2.5rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}


/* ============================================================
   PRODUCT CARDS (collection page)
   ============================================================ */
.product-card {
  display: block;
  color: #000;
  text-decoration: none;
  width: 100%;
}
.product-card__images {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
}
.product-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.product-card__img--back {
  opacity: 0;
}
.product-card:hover .product-card__img--front {
  opacity: 0;
}
.product-card:hover .product-card__img--back {
  opacity: 1;
}
.product-card__info {
  padding: 1rem 0;
  text-align: center;
}
.product-card__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .product-card__name {
    font-size: 1.1rem;
  }
}
.product-card__price {
  font-size: 0.9rem;
  color: #000;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .product-card__price {
    font-size: 0.95rem;
  }
}


/* ============================================================
   PRODUCT PAGE Ã¢â‚¬â€ gallery on top, details centered below
   ============================================================ */
.product-page {
  background: transparent;
  /* Push the whole module clear of the fixed header Ã¢â‚¬â€ the title used to
     visually merge with the bag/hamburger row */
  padding: 9rem 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-page { padding: 7.5rem 1rem 3rem; }
}

/* Desktop only: two-column layout Ã¢â‚¬â€ gallery left, details (title,
   subtitle, price, qty, Add To Cart, info links) right. Mobile
   layout is unchanged: gallery on top, details centered below. */
@media (min-width: 769px) {
  .product-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3rem;
    align-items: start;
  }
  .product-page__gallery {
    margin-bottom: 0;
  }
  .product-page__details {
    text-align: left;
    max-width: none;
    margin: 0;
    padding-top: 0;
    position: sticky;
    top: 9rem;
  }
}

/* Gallery: thumbs (left) + main image (right). */
.product-page__gallery {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .product-page__gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Thumbnail strip Ã¢â‚¬â€ bigger thumbs that flow with the page rather than
   scroll inside an internal container. With five thumbs at 140Ãƒâ€”182px
   the column naturally extends below the fold; the page scroll reveals
   the rest, so nothing gets clipped. */
.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (max-width: 768px) {
  .product-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    order: 2;
    padding: 0 0 4px;
    -webkit-overflow-scrolling: touch;
  }
}
.product-gallery__thumb {
  width: 140px;
  height: 182px;
  border: 2px solid transparent;
  border-radius: 10px;
  opacity: 0.7;
  overflow: hidden;
  transition: opacity 0.3s, border-color 0.3s;
  cursor: pointer;
  background: none;
  padding: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .product-gallery__thumb { width: 72px; height: 94px; border-radius: 6px; }
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumb.active {
  opacity: 1;
  border-color: #000;
}

/* Main image Ã¢â‚¬â€ taller portrait crop, not square */
.product-gallery__main {
  width: 100%;
}
.product-gallery__main img,
.product-gallery__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* Details Ã¢â‚¬â€ centered, flowing below the gallery (not in a side column) */
.product-page__details {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 0.5rem;
}
.product-page__title {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 0.1rem;
}
.product-page__subtitle {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.product-page__price {
  font-size: 1rem;
  color: #000;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .product-page__title { font-size: 1.9rem; }
  .product-page__subtitle { font-size: 1.15rem; }
  .product-page__price { font-size: 0.95rem; margin-bottom: 1rem; }
}

/* Quantity counter Ã¢â‚¬â€ pill */
.product-page__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 999px;
  max-width: 180px;
  margin: 0 auto 0.85rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-page__qty { max-width: 150px; }
}
.product-page__qty button {
  width: 40px;
  height: 36px;
  font-size: 1rem;
  color: #000;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.product-page__qty button:hover {
  opacity: 0.6;
}
.product-page__qty input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  color: #000;
  font-family: var(--font-body);
  font-size: 1rem;
  -moz-appearance: textfield;
}
.product-page__qty input::-webkit-outer-spin-button,
.product-page__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add To Cart Ã¢â‚¬â€ pill, solid black */
.product-page__add {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 0.65rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  background: #000;
  color: var(--cream);
  border: none;
  border-radius: 999px;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .product-page__add { max-width: 280px; padding: 0.75rem 1.5rem; font-size: 0.85rem; }
}
.product-page__add:hover {
  opacity: 0.7;
}
.product-page__add:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Info links Ã¢â‚¬â€ sit immediately under the add-to-cart button (small gap),
   leaving open space below */
.product-page__info-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .product-page__info-links { gap: 0.75rem; flex-wrap: wrap; }
}
.product-page__info-links a,
.product-page__info-link {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: #000;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
.product-page__info-links a:hover,
.product-page__info-link:hover {
  opacity: 0.5;
}

   /* ============================================================
   PRODUCT INFO DRAWER
   Details / Fabric & Care / Size
   Original working structure + dark frosted blur
   ============================================================ */

/* Keep the product info links clickable */
.product-page__info-links,
.product-page__info-link,
[data-drawer-trigger] {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

/* Hidden full-screen wrapper — original working behavior */
.product-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;

  opacity: 0;
  pointer-events: none;

  background: transparent;
  transition: opacity 0.35s ease;
}

/* Open state — original working behavior */
.product-drawer.open,
.product-drawer.is-open,
.product-drawer.active {
  opacity: 1;
  pointer-events: all;
}

/* Overlay behind the drawer */
.product-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(0, 0, 0, 0.35);
}

.product-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;

  width: 50%;
  max-width: 600px;

  /* Same burgundy glass color as menu */
  background: rgba(92, 18, 38, 0.28) !important;
  background-color: rgba(92, 18, 38, 0.28) !important;
  background-image: none !important;

  -webkit-backdrop-filter: blur(34px) saturate(140%) !important;
  backdrop-filter: blur(34px) saturate(140%) !important;

  color: #ffffff !important;
  border-left: 1px solid rgba(255, 255, 255, 0.18);

  padding: 2.75rem 2.5rem 3rem;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) transparent;

  transform: translateX(100%);
  transition: transform 0.4s ease;
}

/* Slide in — original working selector */
.product-drawer.open .product-drawer__panel,
.product-drawer.is-open .product-drawer__panel,
.product-drawer.active .product-drawer__panel {
  transform: translateX(0);
}

.product-drawer__panel::-webkit-scrollbar {
  width: 6px;
}

.product-drawer__panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

/* Close X */
.product-drawer__close {
  position: absolute;
  top: 0.4rem;
  left: 0.85rem;

  font-size: 3rem;
  font-weight: 300;
  line-height: 1;

  color: #ffffff;
  background: transparent;
  border: none;
  box-shadow: none;

  padding: 0.15rem 0.4rem;
  cursor: pointer;
  z-index: 5;
}

/* Drawer title */
.product-drawer__title {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;

  margin: 0.75rem 0 1.25rem;
  padding-top: 0;
  text-align: center;

  background: transparent;
}

/* Drawer content */
.product-drawer__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  background: transparent;
}

.product-drawer__content * {
  color: #ffffff;
  background: transparent;
}

.product-drawer__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.product-drawer__content li {
  margin-bottom: 0.4rem;
}

/* Mobile — original behavior, slides from bottom */
@media (max-width: 768px) {
  .product-drawer__panel {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    max-width: none;
    max-height: 82vh;

    padding: 2.5rem 1.5rem 2rem;

    border-radius: 22px 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);

   background: rgba(92, 18, 38, 0.28) !important;
background-color: rgba(92, 18, 38, 0.28) !important;
background-image: none !important;

-webkit-backdrop-filter: blur(34px) saturate(140%) !important;
backdrop-filter: blur(34px) saturate(140%) !important;

    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

  .product-drawer.open .product-drawer__panel,
  .product-drawer.is-open .product-drawer__panel,
  .product-drawer.active .product-drawer__panel {
    transform: translateY(0);
  }

  .product-drawer__close {
    top: 0.25rem;
    left: 0.6rem;
    font-size: 2.4rem;
  }

  .product-drawer__title {
    font-size: 2.4rem;
  }
}
/* ============================================================
   LOOKBOOK PAGE Ã¢â‚¬â€ True Bricklay/Masonry with staggered heights
   ============================================================ */
.lookbook-page {
  background: transparent;
  padding: 9rem 1.5rem 4rem;
  box-sizing: border-box;
  /* Page (not viewport) flow Ã¢â‚¬â€ long lists overflow vertically and the
     normal page scrollbar reveals more rows. */
  min-height: 100vh;
  overflow: visible;
}
.lookbook-page__title { display: none; }

.lookbook-grid {
  column-count: 5;
  column-gap: 12px;
  /* "balance" preserves the bricklay/staggered look. The page itself is
     scrollable: as more image blocks get added in the theme editor, the
     grid naturally extends below the fold and the visitor scrolls. */
  column-fill: balance;
  max-width: 1400px;
  margin: 0 auto;
}
.lookbook-grid__cell {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  border-radius: 8px;
  overflow: hidden;
}
.lookbook-grid__cell img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Force varied aspect ratios across cells for bricklay staggering */
.lookbook-grid__cell:nth-child(7n+1) img { aspect-ratio: 3 / 4; height: auto; }
.lookbook-grid__cell:nth-child(7n+2) img { aspect-ratio: 4 / 5; height: auto; }
.lookbook-grid__cell:nth-child(7n+3) img { aspect-ratio: 2 / 3; height: auto; }
.lookbook-grid__cell:nth-child(7n+4) img { aspect-ratio: 1 / 1; height: auto; }
.lookbook-grid__cell:nth-child(7n+5) img { aspect-ratio: 3 / 5; height: auto; }
.lookbook-grid__cell:nth-child(7n+6) img { aspect-ratio: 4 / 3; height: auto; }
.lookbook-grid__cell:nth-child(7n+7) img { aspect-ratio: 5 / 7; height: auto; }

@media (max-width: 1024px) {
  .lookbook-grid { column-count: 4; }
}
@media (max-width: 768px) {
  /* Mobile: full bricklay scroll with 4 columns */
  .lookbook-page {
    max-height: none;
    overflow: visible;
    padding: 7rem 0.5rem 2rem;
  }
  .lookbook-grid {
    column-count: 4;
    column-gap: 6px;
    max-width: 100%;
  }
  .lookbook-grid__cell { margin-bottom: 6px; border-radius: 4px; }
  .lookbook-grid__cell img { border-radius: 4px; }
}
@media (max-width: 480px) {
  .lookbook-grid {
    column-count: 4;
    column-gap: 4px;
  }
  .lookbook-grid__cell { margin-bottom: 4px; }
}


/* ============================================================
   COMING SOON PAGE Ã¢â‚¬â€ fixed overlay with card-based email/phone flow
   ============================================================ */
.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem;
  /* Cream backstop, not burgundy Ã¢â‚¬â€ overrides the body's site-wide
     burgundy so any 1-frame gap before the bg image paints stays
     visually consistent with the coming-soon palette. */
  background: #d8cabb;
}
.coming-soon__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  /* Cream fallback so even a 1-frame gap before the image paints
     never lets the body's burgundy show through on iOS. */
  background: #d8cabb;
}
.coming-soon__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(8px) brightness(0.9);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  /* Mobile uses a pre-rotated portrait image (see coming-soon-bg-mobile.jpg).
     Anchored top:0/left:0 + 100% sizing + scale(1.4) zooms further into the
     source's lighter middle band so it reads taller, while the explicit
     positioning guarantees full edge-to-edge coverage on iOS Safari. */
  .coming-soon__bg img {
    filter: blur(4px) brightness(0.92);
    transform: scale(1.4);
  }
}

/* All content above bg */
.coming-soon__top,
.coming-soon__logo,
.cs-card {
  position: relative;
  z-index: 1;
}

/* Decorative flower icon Ã¢â‚¬â€ top right */
.coming-soon__top {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
}
.coming-soon__top img { width: 28px; height: 28px; opacity: 0.8; }

/* Logo Ã¢â‚¬â€ large, dominant on the lockpage */
.coming-soon__logo {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
.coming-soon__logo img {
  height: 380px;
  width: auto;
  max-width: 90vw;
}
@media (max-width: 768px) {
  .coming-soon__logo img { height: 280px; }
}
@media (max-width: 480px) {
  .coming-soon__logo img { height: 220px; }
}

/* Card container Ã¢â‚¬â€ frosted glass, more rectangular (less round) corners */
.cs-card {
  background: rgba(204, 192, 182, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 2.25rem 2.5rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .cs-card {
    padding: 1.25rem 1rem;
    max-width: 90%;
  }
}
.cs-card__title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.25rem;
}
.cs-card__sub {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #000;
  margin: -0.5rem 0 1.25rem;
  text-align: center;
}
.cs-card__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.cs-card__legal {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #000;
  margin-top: 1rem;
}
.cs-card__legal a {
  text-decoration: underline;
  color: #000;
}
.cs-card__resend {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #000;
}
.cs-card__resend a {
  color: #000;
  text-decoration: underline;
}
.cs-card__resend a:hover { opacity: 0.7; }

/* Phone row Ã¢â‚¬â€ country-code select + tel input side-by-side */
.cs-phone-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.cs-phone-cc {
  flex: 0 0 auto;
  padding: 0.9rem 0.5rem 0.9rem 0.6rem;
  background: transparent;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  font-family: var(--font-body);
  font-size: 0.9rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  max-width: 110px;
  /* room for the dropdown chevron we paint via background-image */
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}
.cs-phone-row .cs-input {
  flex: 1;
  min-width: 0;
}

/* Code input Ã¢â‚¬â€ large centered digits */
.cs-input--code {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  padding-left: 0.5rem; /* offset the letter-spacing so it looks centered */
}

@media (max-width: 768px) {
  .cs-phone-cc {
    font-size: 0.8rem;
    padding: 0.65rem 1.25rem 0.65rem 0.5rem;
    border-width: 1.5px;
    max-width: 88px;
  }
  .cs-input--code {
    font-size: 1.2rem;
    letter-spacing: 0.4em;
  }
  .cs-card__sub {
    font-size: 0.8rem;
    margin: -0.25rem 0 0.85rem;
  }
}

/* Shared input Ã¢â‚¬â€ softly squared with black border */
.cs-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: transparent;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
}
.cs-input:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}
.cs-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
/* Kill the browser's yellow autofill background Ã¢â‚¬â€ keep the card cream + black text */
.cs-input:-webkit-autofill,
.cs-input:-webkit-autofill:hover,
.cs-input:-webkit-autofill:focus,
.cs-input:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0 1000px rgba(204, 192, 182, 1) inset;
  box-shadow: 0 0 0 1000px rgba(204, 192, 182, 1) inset;
  caret-color: #000;
  transition: background-color 5000s ease-in-out 0s;
}

/* Error state Ã¢â‚¬â€ mauve/pink background matching reference */
.cs-input--error {
  background: rgba(140, 95, 110, 0.75);
  border-color: rgba(140, 95, 110, 0.85);
  color: var(--burgundy);
}
.cs-input--error::placeholder {
  color: var(--burgundy);
  opacity: 0.85;
}

/* Submit button Ã¢â‚¬â€ softly squared, solid black */
.cs-submit {
  padding: 0.85rem 3rem;
  background: #000;
  color: var(--cream);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
}
.cs-submit:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .cs-card__title {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .cs-card__form {
    gap: 0.85rem;
  }
  .cs-input {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    border-width: 1.5px;
  }
  .cs-submit {
    padding: 0.65rem 2.25rem;
    font-size: 0.8rem;
  }
}

/* Error text */
.cs-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* "see you soon." success text */
.cs-seeyou {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--espresso);
  letter-spacing: 0.03em;
}

/* ============================================================
   POLICY / GENERIC PAGES
   ============================================================ */
.policy-page {
  background: transparent;
  padding: 9rem 2rem 4rem;
}
.policy-page__inner {
  max-width: 720px;
  margin: 0 auto;
}
.policy-page__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
}
.policy-page__content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000;
  text-align: center;
}
.policy-page__content h3 { text-align: center; }
.policy-page__content ul,
.policy-page__content ol {
  list-style-position: inside;
  text-align: left;
  display: inline-block;
}
.policy-page__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #000;
  margin: 2rem 0 0.75rem;
}
.policy-page__content a {
  color: #000;
  text-decoration: underline;
}
.policy-page__content a:hover {
  opacity: 0.7;
}
.policy-page__content p {
  margin-bottom: 1rem;
}
.policy-page__content ul,
.policy-page__content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-page__content li {
  margin-bottom: 0.4rem;
}
/* Mobile: top padding mirrors the product page so the title clears the
   fixed header on every inner page consistently */
@media (max-width: 768px) {
  .policy-page { padding: 7.5rem 1rem 3rem; }
  .policy-page__title { font-size: 1.4rem; margin-bottom: 1.25rem; }
  .policy-page__content { font-size: 0.78rem; line-height: 1.6; }
  .policy-page__content h3 { font-size: 0.9rem; margin: 1.25rem 0 0.4rem; }
  .policy-page__content p { margin-bottom: 0.65rem; }
  .policy-page__content li { margin-bottom: 0.25rem; }
}


/* ============================================================
   ACCOUNT PAGES
   ============================================================ */
.account-page {
  background: transparent;
  padding: 9rem 2rem;
}
.account-box {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 3rem;
  border-radius: 12px;
}
.account-box__title {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.account-box label {
  display: block;
  font-size: 0.8rem;
  color: #000;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.account-box input[type="text"],
.account-box input[type="email"],
.account-box input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid #000;
  color: #000;
  font-family: var(--font-body);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  transition: opacity 0.3s;
}
.account-box input:focus {
  outline: none;
  border-color: #000;
}
.account-box__submit {
  display: block;
  width: 100%;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #000;
  color: var(--cream);
  border: 1px solid #000;
  border-radius: 999px;
  transition: opacity 0.3s;
  cursor: pointer;
  margin-top: 0.5rem;
}
.account-box__submit:hover { opacity: 0.7; }
.account-box a {
  color: #000;
  font-size: 0.85rem;
  text-decoration: underline;
}

/* Account / cart table (order history, your bag) Ã¢â‚¬â€ pure black words and lines */
.account-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.account-table th {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding: 0.85rem 0.5rem;
  text-align: left;
}
.account-table td {
  font-size: 0.9rem;
  color: #000;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid #000;
}
.account-table a {
  color: #000;
  text-decoration: none;
}

/* Cart page (fallback) Ã¢â‚¬â€ soft pill checkout, black type */
.cart-page__title { color: #000; }
.cart-page__empty {
  text-align: center;
  color: #000;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.cart-page__cta-row { text-align: center; margin-top: 2rem; }
.cart-page__footer {
  text-align: right;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cart-page__subtotal {
  color: #000;
  font-size: 1.05rem;
  margin: 0;
}
.cart-page__subtotal strong { font-weight: 700; }
.cart-page__checkout {
  /* btn-cta is already a pill; this just guarantees the cart page checkout
     uses the soft-edged variant the client asked for */
  border-radius: 999px;
  margin: 0;
}
@media (max-width: 768px) {
  .cart-page__footer { justify-content: center; gap: 1rem; }
}


/* ============================================================
   CART DRAWER Ã¢â‚¬â€ slides from right
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  pointer-events: none;
}
.cart-drawer.open {
  pointer-events: all;
}
.cart-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cart-drawer.open .cart-drawer__overlay {
  opacity: 1;
}
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 520px;
  /* Semi-translucent cream Ã¢â‚¬â€ page shows softly through */
  background: rgba(245, 240, 232, 0.45);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  color: #000;
  padding: 3rem 1.5rem 2rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.45) transparent;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer__panel::-webkit-scrollbar { width: 8px; }
.cart-drawer__panel::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.45);
  border-radius: 999px;
}
.cart-drawer__panel::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
}
.cart-drawer.open .cart-drawer__panel {
  transform: translateX(0);
}
@media (max-width: 768px) {
  .cart-drawer__panel {
    top: auto; left: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .cart-drawer.open .cart-drawer__panel {
    transform: translateY(0);
  }
}
.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 0;
}
/* Close X Ã¢â‚¬â€ same size as title, sits inline next to it */
.cart-drawer__close {
  position: relative;
  top: 0;
  font-size: 2.8rem;
  font-weight: 300;
  color: #000;
  background: none;
  border: none;
  line-height: 1;
  padding: 0 0.15rem 0 0;
  cursor: pointer;
}
.cart-drawer__title {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .cart-drawer__title { font-size: 2.4rem; }
  .cart-drawer__close { font-size: 2.2rem; }
}
.cart-drawer__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cart-drawer__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Translucent black card for each cart item */
.cart-drawer__card {
  display: flex;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.85rem;
  color: var(--cream);
}
.cart-drawer__card-img {
  width: 120px;
  flex-shrink: 0;
}
.cart-drawer__card-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
}
.cart-drawer__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.cart-drawer__card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.cart-drawer__card-variant {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.6);
  margin-bottom: 0.5rem;
}
.cart-drawer__card-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(245,240,232,0.3);
  border-radius: 20px;
  max-width: 140px;
  margin: 0 auto 0.5rem;
}
.cart-drawer__qty-btn {
  width: 36px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--cream);
  background: none; border: none;
}
.cart-drawer__qty-num {
  font-size: 0.85rem;
  color: var(--cream);
  min-width: 30px;
  text-align: center;
}
.cart-drawer__card-price {
  font-size: 0.9rem;
  color: var(--cream);
}
.cart-drawer__footer {
  padding-top: 1.5rem;
  margin-top: auto;
  text-align: center;
}
.cart-drawer__subtotal {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
.cart-drawer__checkout {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background: #000;
  color: var(--cream);
  border: none;
  border-radius: 999px;
  text-align: center;
  transition: opacity 0.3s;
}
.cart-drawer__checkout:hover {
  opacity: 0.7;
}
.cart-drawer__empty {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
  padding: 4rem 0;
}


/* ============================================================
   EMAIL POPUP Ã¢â‚¬â€ transparent glass
   ============================================================ */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup.active {
  opacity: 1;
  pointer-events: all;
}
.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.popup__box {
  position: relative;
  z-index: 1;
  background: rgba(26, 10, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 420px;
  width: 90%;
  padding: 3rem 2.5rem;
  border-radius: 4px;
  text-align: center;
}
@media (max-width: 768px) {
  .popup__box {
    max-width: 320px;
    padding: 2.5rem 1.5rem;
  }
}
.popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.3rem;
  color: var(--cream);
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.popup__close:hover {
  opacity: 1;
}
.popup__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}
.popup__subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.popup__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 0;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.popup__input:focus {
  outline: none;
  border-color: var(--gold);
}
.popup__input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}
.popup__submit {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.popup__submit:hover {
  background: var(--cream);
  color: var(--burgundy);
}
.popup__terms {
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 1.5rem;
  line-height: 1.5;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border-top: 1px solid rgba(62, 4, 27, 0.08);
  padding: 3rem 2rem 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.footer__heading {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer__list {
  list-style: none;
  padding: 0;
}
.footer__list li {
  margin-bottom: 0.5rem;
}
.footer__list a {
  font-size: 0.85rem;
  color: rgba(42, 26, 14, 0.6);
  transition: color 0.3s, opacity 0.3s;
}
.footer__list a:hover {
  color: var(--espresso);
  opacity: 1;
}
.footer__contact {
  font-size: 0.85rem;
  color: rgba(42, 26, 14, 0.5);
  line-height: 1.7;
}
.footer__contact a {
  color: rgba(42, 26, 14, 0.5);
  transition: color 0.3s;
}
.footer__contact a:hover {
  color: var(--espresso);
}

/* Footer bottom bar */
.footer__bottom {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(42, 26, 14, 0.4);
  border-top: 1px solid rgba(42, 26, 14, 0.08);
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.footer__logo {
  height: 35px;
  width: auto;
  margin: 0 auto 0.75rem;
}
.footer__bottom a {
  color: rgba(42, 26, 14, 0.4);
  transition: color 0.3s;
}
.footer__bottom a:hover {
  color: var(--gold);
}


/* ============================================================
   RESPONSIVE Ã¢â‚¬â€ additional breakpoints
   ============================================================ */
@media (max-width: 640px) {
  /* Inner pages share the same top padding so the heading always clears
     the fixed header Ã¢â‚¬â€ never sits visually under the logo */
  .collection-page,
  .product-page,
  .policy-page {
    padding-top: 7.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 3rem;
  }
  .coming-soon__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .collection-page__title {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
  }
  .product-page__title {
    font-size: 1.6rem;
  }
  .product-drawer__title {
    font-size: 2rem;
  }
  .coming-soon__title {
    font-size: 1.3rem;
  }
  .account-box {
    padding: 2rem 1.5rem;
  }
}
/* Product drawer text — white */
.product-drawer__panel,
.product-drawer__title,
.product-drawer__content,
.product-drawer__content *,
.product-drawer__close,
.product-drawer__panel p,
.product-drawer__panel li,
.product-drawer__panel span,
.product-drawer__panel a,
.product-drawer__panel button {
  color: #ffffff !important;
}
/* MOBILE ONLY — make product cards open on first tap, no hover image swap */
@media screen and (max-width: 768px) {
  .product-card:hover .product-card__img--front,
  .product-card__img--front {
    opacity: 1 !important;
  }

  .product-card:hover .product-card__img--back,
  .product-card__img--back {
    opacity: 0 !important;
  }

  .product-card__img--back {
    display: none !important;
  }

  .product-card {
    touch-action: manipulation !important;
    cursor: pointer !important;
  }

  .product-card__images,
  .product-card__info,
  .product-card__name,
  .product-card__price,
  .product-card img {
    pointer-events: none !important;
  }
}
/* ============================================================
   FORCE SAUNII FOOTER WHITE
   ============================================================ */

.site-footer,
.site-footer .footer__inner,
.site-footer .footer__bottom,
.shopify-section-group-footer-group,
.shopify-section-group-footer-group .shopify-section,
#shopify-section-footer {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}
footer,
footer.site-footer,
body footer,
main + footer,
.shopify-section-group-footer-group {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}
/* COLLECTION PAGE AND FOOTER — WHITE */
.collection-page,
.collection-page__inner,
.collection-page + *,
.site-footer,
.shopify-section-group-footer-group {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}
/* ============================================================
   PRODUCT PAGE — SAUNII BURGUNDY
   ============================================================ */

/* Product title */
.product-page__title {
  color: #3e041b !important;
}

/* Subtitle / Selling Fast */
.product-page__subtitle {
  color: #3e041b !important;
}

/* Price */
.product-page__price {
  color: #3e041b !important;
}

/* Product description text */
.product-page__details p {
  color: #3e041b !important;
}

/* Quantity selector border */
.product-page__qty {
  border-color: #3e041b !important;
}

/* Quantity minus, number, and plus */
.product-page__qty button,
.product-page__qty input {
  color: #3e041b !important;
}

/* Add to Cart button */
.product-page__add {
  background: #3e041b !important;
  color: #ffffff !important;
}

/* Details / Fabric & Care / Size links */
.product-page__info-links a,
.product-page__info-link {
  color: #3e041b !important;
}

/* Active thumbnail border */
.product-gallery__thumb.active {
  border-color: #3e041b !important;
}
/* ============================================================
   PRODUCT DRAWERS — BURGUNDY FROSTED GLASS
   ============================================================ */

.product-drawer__panel {
  background: rgba(62, 4, 27, 0.28) !important;
  background-color: rgba(62, 4, 27, 0.28) !important;
  background-image: none !important;

  -webkit-backdrop-filter: blur(38px) saturate(145%) !important;
  backdrop-filter: blur(38px) saturate(145%) !important;

  border-left: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* Make all drawer wording white */
.product-drawer__panel,
.product-drawer__title,
.product-drawer__content,
.product-drawer__content *,
.product-drawer__close,
.product-drawer__panel p,
.product-drawer__panel li,
.product-drawer__panel span,
.product-drawer__panel a,
.product-drawer__panel button {
  color: #ffffff !important;
}

/* Slightly softer overlay behind the drawer */
.product-drawer__overlay {
  background: rgba(0, 0, 0, 0.18) !important;
}

/* Mobile drawer uses the same burgundy glass */
@media (max-width: 768px) {
  .product-drawer__panel {
    background: rgba(62, 4, 27, 0.28) !important;
    background-color: rgba(62, 4, 27, 0.28) !important;
    background-image: none !important;

    -webkit-backdrop-filter: blur(38px) saturate(145%) !important;
    backdrop-filter: blur(38px) saturate(145%) !important;

    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  }
}
/* ============================================================
   COLLECTION PAGE — RESPONSIVE GRID FIX
   ============================================================ */

/* Tablet: two products per row */
@media screen and (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem !important;
  }
}

/* Mobile: one large centered product */
@media screen and (max-width: 600px) {
  .collection-page {
    width: 100% !important;
    min-height: 100dvh !important;

    padding-top: 7.5rem !important;
    padding-right: 20px !important;
    padding-bottom: 3rem !important;
    padding-left: 20px !important;

    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
  }

  .collection-page__inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  .collection-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;

    width: 100% !important;
    max-width: 500px !important;

    margin: 0 auto !important;
    gap: 2.5rem !important;
  }

  .collection-grid .product-card {
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 auto !important;
  }

  .collection-grid .product-card__images {
    width: 100% !important;
    max-width: none !important;

    aspect-ratio: 4 / 5 !important;

    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .collection-grid .product-card__img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
  }

  .collection-grid .product-card__info {
    width: 100% !important;

    padding: 1.25rem 0 0 !important;

    text-align: center !important;
  }

  .collection-grid .product-card__name {
    width: 100% !important;

    margin: 0 !important;

    color: #3e041b !important;

    font-size: 1.35rem !important;
    line-height: 1.2 !important;

    text-align: center !important;
    white-space: normal !important;
  }

  .collection-grid .product-card__price {
    margin-top: 0.55rem !important;

    color: #3e041b !important;

    font-size: 1rem !important;
    line-height: 1.2 !important;

    text-align: center !important;
  }
}
/* ============================================================
   SAUNII GLOBAL TYPOGRAPHY
   Instrument Serif headings + Manrope everywhere else
   ============================================================ */

/* Everything else — Manrope */
body,
p,
span,
a,
button,
input,
select,
textarea,
label,
li,
small,
strong,
em,
nav,
.product-page__subtitle,
.product-page__price,
.product-page__demand,
.product-page__qty,
.product-page__qty-btn,
.product-page__qty-input,
.product-page__add,
.product-page__info-link,
.product-drawer__content,
.mobile-menu__link,
.coming-soon__shop-now,
.product-card__price,
.footer__list,
.footer__contact,
.footer__bottom {
  font-family: var(--font-body) !important;
}

/* Main headings — Instrument Serif */
h1,
h2,
h3,
h4,
h5,
h6,
.collection-page__title,
.product-card__name,
.product-page__title,
.product-drawer__title,
.footer__heading {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
}

/* Modern button and navigation weight */
button,
.product-page__add,
.product-page__info-link,
.mobile-menu__link,
.coming-soon__shop-now {
  font-weight: 500 !important;
}

/* Body copy */
p,
li,
.product-drawer__content,
.product-page__demand {
  font-weight: 400 !important;
}
/* ============================================================
   PRODUCT CATALOG — BLACK WORDING
   Desktop + mobile
   ============================================================ */

.collection-page .product-card__name,
.collection-page .product-card__name:visited,
.collection-page .product-card__name:hover,
.collection-page .product-card__name:focus,
.collection-page .product-card__name:active {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;

  font-family: "Instrument Serif", Georgia, serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.collection-page .product-card__price,
.collection-page .product-card__price * {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;

  font-family: "Manrope", Arial, sans-serif !important;
}
