/* ============================================================
   ECLARE — MAIN CSS
   ============================================================ */

/* ── TOKENS ── */
:root {
  --ivory:        #EBDAC0;
  --ivory-light:  #F8F5EF;
  --ivory-mid:    #F2EBE0;
  --burgundy:     #6D0200;
  --deep:         #35030F;
  --gold:         #BC9B3F;
  --gold-soft:    #D4B55F;
  --nude:         #C88D79;
  --charcoal:     #1A1A1A;
  --mid:          #666;
  --light:        #aaa;
  --border:       rgba(0,0,0,0.08);
  --px:           1.5rem;
  --sec:          5rem;
  --r-xs:         4px;
  --r-sm:         8px;
  --r-md:         12px;
  --r-lg:         16px;
  --nav-h:        64px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; margin: 0; padding: 0; }
body { margin: 0 !important; padding: 0 !important; font-family: 'Jost', sans-serif; background: #fff; color: var(--charcoal); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { font-family: 'Jost', sans-serif; cursor: pointer; border: none; background: none; -webkit-appearance: none; }
input, select, textarea { font-family: 'Jost', sans-serif; }
ul { list-style: none; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--burgundy);
  text-align: center;
  padding: 0.6rem var(--px);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(235,218,192,0.88);
  font-weight: 400;
}

/* ── NAV ── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--px);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  min-height: var(--nav-h);
}
.nav-left { display: flex; align-items: center; gap: 0.8rem; flex: 1 1 0; min-width: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; z-index: 2; }
.hamburger span { display: block; width: 20px; height: 1px; background: var(--charcoal); transition: all 0.3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
.nav-desktop ul { display: flex; gap: 1.8rem; }
.nav-desktop a { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); opacity: 0.72; transition: opacity 0.2s; }
.nav-desktop a:hover { opacity: 1; color: var(--gold); }
.nav-desktop .has-sub { position: relative; }
.nav-sub { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: #fff; border: 0.5px solid var(--border); border-radius: var(--r-md); padding: 0.5rem; min-width: 200px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); z-index: 400; margin-top: 8px; }
.has-sub { position: relative; }
.has-sub:hover .nav-sub { display: block; }
.nav-sub li a { display: block; padding: 0.55rem 1.2rem; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; transition: all 0.2s; }
.nav-sub li a:hover { opacity: 1; color: var(--gold); background: var(--ivory-light); }
.nav-logo { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 0 0 auto; }
.nav-logo svg { width: 22px; fill: var(--gold); }
.nav-logo span { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; letter-spacing: 0.28em; color: var(--deep); text-transform: lowercase; }
.nav-right { display: flex; align-items: center; gap: 1rem; flex: 1 1 0; min-width: 0; justify-content: flex-end; }
.nav-icon-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; position: relative; }
.nav-icon-btn svg { width: 19px; height: 19px; stroke: var(--charcoal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0.72; transition: opacity 0.2s, stroke 0.2s; }
.nav-icon-btn:hover svg { opacity: 1; stroke: var(--gold); }
.cart-badge { position: absolute; top: 2px; right: 2px; background: var(--burgundy); color: #fff; font-size: 0.7rem; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 500; }
.nav-signin { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); opacity: 0.7; transition: opacity 0.2s; white-space: nowrap; }
.nav-signin:hover { opacity: 1; }

/* ── SEARCH BAR ── */
.search-bar { position: fixed; top: 0; left: 0; right: 0; background: #fff; z-index: 400; padding: 1.2rem var(--px); border-bottom: 0.5px solid var(--border); transform: translateY(-120%); transition: transform 0.3s ease; }
.search-bar.open { transform: translateY(0); }
.search-inner { max-width: 680px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; }
.search-inner form { flex: 1; display: flex; border: 0.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.search-inner input { flex: 1; padding: 0.85rem 1rem; border: none; outline: none; font-size: 0.85rem; }
.search-inner button[type="submit"] { padding: 0.85rem 1rem; background: var(--deep); border: none; }
.search-inner button[type="submit"] svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.search-close { font-size: 1.1rem; color: var(--mid); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }

/* ── DRAWER ── */
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(340px, 90vw);
  background: var(--deep); z-index: 300;
  transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 299; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.5rem 1.2rem; border-bottom: 0.5px solid rgba(188,155,63,0.18); }
.drawer-logo { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.drawer-logo svg { width: 20px; fill: var(--gold); }
.drawer-logo span { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; letter-spacing: 0.28em; color: var(--ivory-light); text-transform: lowercase; }
.drawer-close { color: rgba(235,218,192,0.4); font-size: 1.1rem; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.drawer-nav { flex: 1; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 0; }
.drawer-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: rgba(235,218,192,0.88); padding: 0.8rem 0; transition: color 0.2s; }
.drawer-nav a:hover { color: var(--gold); }
.drawer-div { height: 0.5px; background: rgba(188,155,63,0.18); margin: 0.2rem 0; }
.drawer-footer { padding: 1.5rem; border-top: 0.5px solid rgba(188,155,63,0.18); display: flex; gap: 1.5rem; }
.drawer-footer a { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(235,218,192,0.38); transition: color 0.2s; }
.drawer-footer a:hover { color: var(--gold); }

/* ── SECTION UTILITIES ── */
.section { padding: var(--sec) var(--px); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { margin-bottom: 3rem; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.overline { display: block; font-size: 0.72rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; font-weight: 400; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem,5vw,2.8rem); font-weight: 300; color: var(--deep); line-height: 1.15; }
.section-title em { font-style: italic; color: var(--burgundy); }
.section-title.light { color: #fff; }
.link-text { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); border-bottom: 0.5px solid var(--charcoal); padding-bottom: 2px; opacity: 0.6; transition: all 0.2s; white-space: nowrap; min-height: 44px; display: flex; align-items: flex-end; background: none; border-top: none; border-left: none; border-right: none; }
.link-text:hover { opacity: 1; color: var(--gold); border-color: var(--gold); }

/* ── BUTTONS ── */
.btn-dark { background: var(--deep); color: #fff; padding: 0.95rem 2.2rem; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; border-radius: var(--r-xs); transition: background 0.3s; min-height: 48px; font-weight: 400; display: inline-flex; align-items: center; justify-content: center; border: none; }
.btn-dark:hover { background: var(--burgundy); }
.btn-gold { background: var(--gold); color: var(--deep); padding: 0.95rem 2.2rem; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; border-radius: var(--r-xs); transition: background 0.3s; min-height: 48px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; border: none; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline { background: none; border: 0.5px solid rgba(26,26,26,0.28); color: var(--charcoal); padding: 0.95rem 2.2rem; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; border-radius: var(--r-xs); transition: all 0.3s; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { background: none; border: 0.5px solid var(--gold); color: var(--gold); padding: 0.95rem 2.2rem; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; border-radius: var(--r-xs); transition: all 0.3s; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline-gold:hover { background: var(--gold); color: var(--deep); }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; background: var(--ivory-light); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: transparent; pointer-events: none; }
.hero-content { position: relative; z-index: 10; padding: 5rem var(--px) 5rem calc(var(--px) + 3.5rem); max-width: 620px; }
.hero-tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; font-weight: 400; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,7vw,5.2rem); line-height: 1.02; font-weight: 300; color: var(--deep); margin-bottom: 1.4rem; }
.hero-title em { font-style: italic; color: var(--burgundy); }
.hero-body { font-size: 0.8rem; line-height: 2; color: var(--mid); font-weight: 300; max-width: 380px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; padding-right: 8%; pointer-events: none; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.32; }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--charcoal); }
.hero-scroll-line { width: 1px; height: 30px; background: var(--gold); animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0%,100%{opacity:0.2;transform:scaleY(0.3)} 55%{opacity:1;transform:scaleY(1)} }

/* ── MARQUEE ── */
.marquee { background: var(--ivory-mid); border-top: 0.5px solid rgba(188,155,63,0.2); border-bottom: 0.5px solid rgba(188,155,63,0.2); padding: 0.85rem 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marqueeMove 24s linear infinite; }
.mq-item { display: inline-flex; align-items: center; gap: 1.8rem; padding: 0 2rem; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mid); flex-shrink: 0; }
.mq-dot { color: var(--gold); font-size: 0.7rem; }
@keyframes marqueeMove { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── IMAGE CAROUSEL ── */
.carousel { position: relative; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4/5; background: var(--ivory-mid); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); height: 100%; }
.carousel-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-placeholder { width: 100%; height: 100%; background: var(--ivory-mid); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: rgba(188,155,63,0.3); font-style: italic; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.88); border: 0.5px solid var(--border); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: background 0.2s; }
.carousel-btn:hover { background: #fff; }
.carousel-btn svg { width: 16px; height: 16px; stroke: var(--charcoal); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }
.carousel-dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.carousel-dot.active { background: #fff; transform: scale(1.3); }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.products-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.products-grid .product-card,
.products-grid.cols-4 .product-card { width: 100%; }
.products-grid .product-image,
.products-grid.cols-4 .product-image { aspect-ratio: 4/5; }
.product-card { cursor: pointer; }
.product-image { background: var(--ivory-light); border-radius: var(--r-lg); aspect-ratio: 4/5; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; border: 0.5px solid var(--border); transition: box-shadow 0.3s; margin-bottom: 1.1rem; }
.product-card:hover .product-image { box-shadow: 0 8px 32px rgba(0,0,0,0.09); }
.product-image { position: relative; overflow: hidden; }
.product-img-main { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.55s ease; position: absolute; inset: 0; }
.product-img-hover { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.55s ease; position: absolute; inset: 0; opacity: 0; }
.product-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; color: rgba(188,155,63,0.3); font-size: 1.1rem; font-style: italic; padding: 1rem; text-align: center; }
.product-card:hover .product-img-main { opacity: 0; }
.product-card:hover .product-img-hover { opacity: 1; }
.product-badge { position: absolute; top: 0.9rem; left: 0.9rem; background: var(--burgundy); color: var(--ivory-light); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.28rem 0.65rem; border-radius: var(--r-xs); }
.product-badge.out { background: var(--mid); }
.product-badge.preorder { background: var(--gold); color: var(--deep); }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--deep); margin-bottom: 0.22rem; }
.product-sub { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); margin-bottom: 0.75rem; }
.product-price { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.price-mvr { font-size: 0.9rem; color: var(--charcoal); font-weight: 400; }
.price-sale { font-size: 0.95rem; color: var(--burgundy); font-weight: 600; }
.price-was { font-size: 0.82rem; color: var(--light); font-weight: 300; text-decoration: line-through; text-decoration-color: var(--burgundy); margin-left: 0.3rem; }
.price-usd { font-size: 0.78rem; color: var(--light); font-weight: 300; }
.price-original { font-size: 0.82rem; color: var(--light); font-weight: 300; text-decoration: line-through; }
.sale-badge { font-size: 0.7rem; background: var(--burgundy); color: #fff; padding: 0.18rem 0.5rem; border-radius: var(--r-xs); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.sale-tag { background: var(--burgundy) !important; right: 0.9rem; left: auto !important; }
.product-actions { display: flex; gap: 0.45rem; align-items: stretch; }
.btn-add { flex: 1; background: var(--deep); color: #fff; padding: 0.85rem 1rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; border-radius: var(--r-xs); transition: background 0.3s; min-height: 44px; border: none; cursor: pointer; }
.btn-add:hover { background: var(--burgundy); }
.btn-add:disabled { background: var(--light); cursor: not-allowed; }

/* Wishlist icon button next to Add to Cart in product card */
.btn-wish { flex-shrink: 0; width: 44px; min-height: 44px; padding: 0; background: #fff; border: 0.5px solid var(--border); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease; }
.btn-wish:hover { border-color: var(--burgundy); background: rgba(109, 2, 0, 0.04); }
.btn-wish svg { width: 17px; height: 17px; stroke: var(--charcoal); fill: none; stroke-width: 1.6; stroke-linejoin: round; transition: all 0.25s ease; }
.btn-wish:hover svg { stroke: var(--burgundy); }
.btn-wish.active { background: rgba(109, 2, 0, 0.06); border-color: var(--burgundy); }
.btn-wish.active svg { stroke: var(--burgundy); fill: var(--burgundy); }

/* Wishlist heart overlay on image corner */
.product-image-wrap { position: relative; }
.btn-wish-overlay { position: absolute; top: 0.7rem; left: 0.7rem; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.92); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; box-shadow: 0 2px 6px rgba(0,0,0,0.08); transition: background 0.2s, transform 0.15s; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.btn-wish-overlay:hover { background: #fff; transform: scale(1.08); }
.btn-wish-overlay svg { width: 15px; height: 15px; stroke: var(--charcoal); fill: none; stroke-width: 1.5; stroke-linecap: round; transition: all 0.2s; }
.btn-wish-overlay.active svg { fill: var(--burgundy); stroke: var(--burgundy); }

/* "What's included" line */
.product-included { font-size: 0.72rem; color: var(--gold); font-style: italic; margin: -0.5rem 0 0.85rem 0; line-height: 1.4; letter-spacing: 0.02em; }

/* Detail page version */
.pi-included { font-size: 0.85rem; color: var(--gold); font-style: italic; margin: 0.4rem 0 1.25rem; letter-spacing: 0.02em; line-height: 1.5; }

/* ── POPUP / MODAL ── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.48); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup-box { background: #fff; border-radius: var(--r-lg); max-width: 480px; width: 100%; overflow: hidden; transform: translateY(20px); transition: transform 0.3s; }
.popup-overlay.open .popup-box { transform: translateY(0); }
.popup-img { aspect-ratio: 16/9; overflow: hidden; background: var(--ivory-mid); }
.popup-img img { width: 100%; height: 100%; object-fit: cover; }
.popup-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--deep), var(--burgundy)); }
.popup-img-placeholder svg { width: 40px; fill: rgba(188,155,63,0.6); }
.popup-body { padding: 2rem 2rem 1.5rem; text-align: center; }
.popup-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--deep); margin-bottom: 0.5rem; }
.popup-body p { font-size: 0.78rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.5rem; }
.popup-code { background: var(--ivory-mid); border: 0.5px solid rgba(188,155,63,0.3); border-radius: var(--r-sm); padding: 0.8rem 1.5rem; display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; letter-spacing: 0.25em; color: var(--burgundy); margin-bottom: 1.5rem; }
.popup-close-link { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light); border-bottom: 0.5px solid var(--light); padding-bottom: 1px; cursor: pointer; background: none; display: inline-block; margin-top: 0.8rem; }

/* ── INTRO GRID ── */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-body { font-size: 0.8rem; line-height: 2.1; color: var(--mid); font-weight: 300; margin-top: 1.2rem; }
.carousel-wrapper { padding-bottom: 2rem; }

/* ── STORY / VIDEO ── */
.story { background: var(--deep); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.video-placeholder { aspect-ratio: 4/5; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(188,155,63,0.2); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; overflow: hidden; transition: border-color 0.3s; }
.video-placeholder:hover { border-color: rgba(188,155,63,0.5); }
.video-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg,rgba(109,2,0,0.18) 0%,transparent 60%); }
.play-btn { width: 58px; height: 58px; border-radius: 50%; border: 0.5px solid rgba(188,155,63,0.5); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; transition: all 0.3s; }
.video-placeholder:hover .play-btn { background: rgba(188,155,63,0.12); border-color: var(--gold); }
.play-btn svg { width: 15px; height: 15px; fill: var(--gold); margin-left: 3px; }
.video-label { position: absolute; bottom: 1.2rem; left: 1.4rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(235,218,192,0.35); z-index: 2; }
.story-text p { font-size: 0.78rem; line-height: 2.1; color: rgba(235,218,192,0.45); font-weight: 300; margin-top: 1.2rem; margin-bottom: 2.2rem; }

/* ── PROMISE CARDS ── */
.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.promise-card { background: var(--ivory-light); border: 0.5px solid rgba(188,155,63,0.15); border-radius: var(--r-md); padding: 2.5rem 2rem; text-align: center; }
.promise-icon { width: 44px; height: 44px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.promise-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.promise-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--deep); margin-bottom: 0.7rem; }
.promise-desc { font-size: 0.72rem; line-height: 1.95; color: var(--mid); font-weight: 300; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { cursor: pointer; }
.blog-thumb { aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; transition: opacity 0.3s; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-card:hover .blog-thumb { opacity: 0.9; }
.blog-thumb.bt1 { background: linear-gradient(145deg,var(--burgundy),var(--deep)); }
.blog-thumb.bt2 { background: linear-gradient(145deg,#7a5a20,#4a2e0a); }
.blog-thumb.bt3 { background: linear-gradient(145deg,var(--nude),#8a5040); }
.blog-thumb-label { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: rgba(235,218,192,0.22); text-align: center; font-style: italic; padding: 1.2rem; line-height: 1.35; }
.blog-tag { display: block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--deep); font-weight: 400; line-height: 1.45; margin-bottom: 0.5rem; }
.blog-date { font-size: 0.72rem; color: var(--light); letter-spacing: 0.06em; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--burgundy); padding: var(--sec) var(--px); text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle,var(--gold) 1px,transparent 1px); background-size: 28px 28px; }
.nl-inner { position: relative; z-index: 2; max-width: 500px; margin: 0 auto; }
.nl-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,8vw,2.8rem); font-weight: 300; color: var(--ivory-light); margin-bottom: 0.7rem; line-height: 1.15; }
.nl-inner p { font-size: 0.76rem; color: rgba(235,218,192,0.48); line-height: 1.9; margin-bottom: 2.2rem; font-weight: 300; }
.email-row { display: flex; border-radius: var(--r-sm); overflow: hidden; border: 0.5px solid rgba(188,155,63,0.28); }
.email-input { flex: 1; background: rgba(255,255,255,0.07); border: none; color: var(--ivory-light); padding: 1rem 1.3rem; font-size: 0.76rem; outline: none; min-height: 52px; }
.email-input::placeholder { color: rgba(235,218,192,0.28); }
.email-btn { background: var(--gold); color: var(--deep); border: none; padding: 1rem 1.8rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; transition: background 0.3s; white-space: nowrap; min-height: 52px; }
.email-btn:hover { background: var(--gold-soft); }
.nl-note { font-size: 0.72rem; color: rgba(235,218,192,0.22); margin-top: 1rem; letter-spacing: 0.05em; }

/* ── REGISTER STRIP ── */
.register-strip { background: var(--ivory-mid); padding: 3.5rem var(--px); border-top: 0.5px solid rgba(188,155,63,0.18); }
.register-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.register-text h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem,4vw,2rem); font-weight: 300; color: var(--deep); margin-bottom: 0.3rem; }
.register-text p { font-size: 0.7rem; color: var(--mid); }
.register-perks { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.perk { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); display: flex; align-items: center; gap: 0.4rem; }
.perk::before { content: '✦'; color: var(--gold); font-size: 0.7rem; }

/* ── FOOTER ── */
footer { background: var(--deep); padding: 5rem var(--px) 2.5rem; border-top: 0.5px solid rgba(188,155,63,0.1); }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand svg { width: 22px; fill: var(--gold); display: block; margin-bottom: 0.6rem; }
.footer-brand-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1rem; letter-spacing: 0.28em; color: var(--ivory-light); text-transform: lowercase; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.78rem; color: rgba(235,218,192,0.28); line-height: 1.9; font-weight: 300; max-width: 220px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.2rem; }
.social-icon { width: 34px; height: 34px; border: 0.5px solid rgba(188,155,63,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.social-icon:hover { border-color: var(--gold); }
.social-icon svg { width: 15px; height: 15px; stroke: rgba(235,218,192,0.4); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(188,155,63,0.5); margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col li a { font-size: 0.78rem; color: rgba(235,218,192,0.28); font-weight: 300; transition: color 0.2s; letter-spacing: 0.04em; }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom { border-top: 0.5px solid rgba(188,155,63,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p, .footer-bottom a { font-size: 0.72rem; color: rgba(235,218,192,0.18); letter-spacing: 0.08em; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 2rem; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.5rem; font-weight: 400; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.9rem 1rem; border: 0.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 0.85rem; color: var(--charcoal); background: #fff; outline: none;
  transition: border-color 0.2s; font-family: 'Jost', sans-serif; min-height: 48px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-hint { font-size: 0.74rem; color: var(--light); margin-top: 0.4rem; }
.form-error { font-size: 0.74rem; color: var(--burgundy); margin-top: 0.4rem; }

/* ── ALERTS ── */
.alert { padding: 1rem 1.2rem; border-radius: var(--r-sm); font-size: 0.78rem; margin-bottom: 1.2rem; }
.alert-success { background: #f0fdf4; color: #166534; border: 0.5px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 0.5px solid #fecaca; }
.alert-info    { background: var(--ivory-light); color: var(--deep); border: 0.5px solid rgba(188,155,63,0.3); }

/* ── CHECKOUT ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start; }
.checkout-section { background: #fff; border: 0.5px solid var(--border); border-radius: var(--r-md); padding: 2rem; margin-bottom: 1.5rem; }
.checkout-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--deep); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 0.5px solid var(--border); }

/* Delivery zone selector cards */
.zone-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.zone-card { position: relative; display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 1.1rem; border: 0.5px solid var(--border); border-radius: var(--r-sm); cursor: pointer; transition: border-color 0.2s, background 0.2s; background: #fff; }
.zone-card:hover { border-color: var(--gold); }
.zone-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.zone-card:has(input:checked) { border-color: var(--gold); background: var(--ivory-light); box-shadow: inset 0 0 0 1px var(--gold); }
.zone-card-title { font-size: 0.78rem; font-weight: 500; color: var(--deep); letter-spacing: 0.02em; }
.zone-card-sub { font-size: 0.78rem; color: var(--mid); line-height: 1.4; }
@media (max-width: 540px) {
  .zone-options { grid-template-columns: 1fr; }
}

/* Bank-transfer instruction line */
.transfer-instruction {
  background: var(--ivory-light);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.transfer-instruction strong {
  color: var(--deep);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Sticky mobile checkout total bar — desktop hidden, mobile fixed bottom */
.mobile-checkout-bar { display: none; }
@media (max-width: 768px) {
  .mobile-checkout-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-top: 0.5px solid var(--border);
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  }
  .mobile-checkout-bar-info {
    display: flex; flex-direction: column; gap: 0.05rem; flex: 1; min-width: 0;
  }
  .mobile-checkout-bar-label {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light);
  }
  .mobile-checkout-bar-total {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--deep); letter-spacing: 0.01em;
  }
  .mobile-checkout-bar-btn {
    flex-shrink: 0; padding: 0.85rem 1.4rem; font-size: 0.74rem; letter-spacing: 0.18em;
  }
  /* Make sure the page content doesn't sit underneath the sticky bar */
  .checkout-page { padding-bottom: 5.5rem !important; }
}
.order-summary { background: var(--ivory-light); border: 0.5px solid rgba(188,155,63,0.2); border-radius: var(--r-md); padding: 2rem; position: sticky; top: calc(var(--nav-h) + 1rem); width: 100%; box-sizing: border-box; }
.order-summary h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--deep); margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; font-size: 0.78rem; }
.summary-row.total { border-top: 0.5px solid rgba(188,155,63,0.3); margin-top: 0.5rem; padding-top: 1rem; font-size: 0.95rem; font-weight: 500; color: var(--deep); }
.summary-divider { height: 0.5px; background: var(--border); margin: 0.5rem 0; }
.bank-box { background: var(--ivory-light); border: 0.5px solid rgba(188,155,63,0.3); border-radius: var(--r-sm); padding: 1.2rem; margin: 1.2rem 0; }
.bank-box .bank-num { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; letter-spacing: 0.1em; color: var(--deep); }
.btn-copy { background: var(--gold); color: var(--deep); border: none; border-radius: var(--r-xs); padding: 0.4rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; margin-left: 0.8rem; transition: background 0.2s; vertical-align: middle; }
.btn-copy:hover { background: var(--gold-soft); }
.shipping-update { font-size: 0.78rem; color: var(--gold); margin-top: 0.3rem; min-height: 1.2em; }

/* ── BUNDLE UPSELL ── */
.bundle-box { background: var(--ivory-light); border: 0.5px solid rgba(188,155,63,0.3); border-radius: var(--r-md); padding: 1.5rem; margin-top: 2rem; }
.bundle-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--deep); margin-bottom: 1rem; }
.bundle-item { display: flex; align-items: center; gap: 1rem; }
.bundle-img { width: 64px; height: 64px; border-radius: var(--r-sm); background: #fff; border: 0.5px solid var(--border); overflow: hidden; flex-shrink: 0; }
.bundle-img img { width: 100%; height: 100%; object-fit: cover; }
.bundle-discount-badge { background: var(--burgundy); color: #fff; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: var(--r-xs); display: inline-block; margin-bottom: 0.4rem; }

/* ── PAGE HEADER ── */
.page-header { background: var(--ivory-light); padding: 4rem var(--px) 3rem; border-bottom: 0.5px solid var(--border); text-align: center; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,6vw,3.5rem); font-weight: 300; color: var(--deep); margin-bottom: 0.6rem; }
.page-header p { font-size: 0.8rem; color: var(--mid); max-width: 480px; margin: 0 auto; line-height: 1.9; }

/* ── ACCOUNT ── */
.account-grid { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
.account-nav { background: var(--ivory-light); border-radius: var(--r-md); overflow: hidden; }
.account-nav a { display: flex; align-items: center; gap: 0.8rem; padding: 0.95rem 1.3rem; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); opacity: 0.65; transition: all 0.2s; border-left: 2px solid transparent; }
.account-nav a:hover { opacity: 1; background: var(--ivory-mid); }
.account-nav a.active { opacity: 1; border-left-color: var(--gold); background: var(--ivory-mid); color: var(--deep); }
.account-nav svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.points-badge { background: var(--gold); color: var(--deep); font-size: 0.74rem; font-weight: 500; padding: 0.2rem 0.6rem; border-radius: 20px; margin-left: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .account-grid { grid-template-columns: 1fr; }
  .products-grid.cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-grid .story-text { order: -1; }
}
@media (max-width: 768px) {
  :root { --px: 1.1rem; --sec: 3.5rem; }
  .nav-desktop { display: none; }
  .nav-signin { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-overlay { background: transparent; }
  .hero-content { padding: 2.5rem var(--px) 5rem; max-width: 100%; }
  .hero-body { max-width: 100%; }
  .hero-cta { flex-direction: column; }
  .btn-dark, .btn-outline, .btn-gold { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .promise-grid { grid-template-columns: 1fr; gap: 1rem; }
  .promise-card { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.5rem; text-align: left; }
  .promise-icon { margin: 0; flex-shrink: 0; }
  .promise-text { flex: 1; min-width: 0; }
  .promise-title { margin-bottom: 0.4rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .email-row { flex-direction: column; border-radius: 0; border: none; overflow: visible; }
  .email-input { border: 0.5px solid rgba(188,155,63,0.28); border-radius: var(--r-sm); }
  .email-btn { border-radius: var(--r-sm); width: 100%; }
  .register-inner { flex-direction: column; align-items: flex-start; }
  .btn-reg, .breg { width: 100%; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.4rem,12vw,3.2rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ── INTRO GRID MOBILE ── */
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .carousel { aspect-ratio: 4/5; border-radius: var(--r-md); }
  .carousel-btn { width: 32px; height: 32px; }
}

/* ── SHOP PAGE ── */
.shop-filterbar{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:1.5rem}
.shop-cats{display:flex;gap:0.5rem;flex-wrap:wrap}
.cat-pill{font-size:0.72rem;letter-spacing:0.14em;text-transform:uppercase;padding:0.55rem 1.1rem;border-radius:20px;border:0.5px solid var(--border);color:var(--mid);transition:all 0.2s;background:#fff}
.cat-pill:hover,.cat-pill.active{background:var(--deep);color:#fff;border-color:var(--deep)}
.shop-sort{padding:0.55rem 1rem;border:0.5px solid var(--border);border-radius:8px;font-size:0.72rem;background:#fff;color:var(--charcoal);outline:none}
.pagination{display:flex;gap:0.5rem;justify-content:center;flex-wrap:wrap}
.pagination a,.pagination span{padding:0.5rem 0.9rem;border:0.5px solid var(--border);border-radius:6px;font-size:0.72rem;color:var(--charcoal);transition:all 0.2s;background:#fff}
.pagination a:hover{border-color:var(--gold);color:var(--gold)}
.pagination a.active{background:var(--deep);color:#fff;border-color:var(--deep)}

/* ── PRODUCT DETAIL ── */
.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.product-gallery .gallery-main{aspect-ratio:4/5;border-radius:var(--r-lg);overflow:hidden;background:var(--ivory-light);position:relative;border:0.5px solid var(--border)}
.gallery-main-img{width:100%;height:100%;object-fit:cover;transition:opacity 0.3s}
.gallery-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;color:rgba(188,155,63,0.3);font-size:1.5rem;font-style:italic}
.gallery-sale-tag{position:absolute;top:1rem;right:1rem;background:var(--burgundy);color:#fff;font-size:0.7rem;letter-spacing:0.15em;text-transform:uppercase;padding:0.3rem 0.7rem;border-radius:var(--r-xs);font-weight:500}
.gallery-thumbs{display:flex;gap:0.6rem;margin-top:0.75rem;flex-wrap:wrap}
.gallery-thumb{width:64px;height:80px;border-radius:var(--r-sm);overflow:hidden;cursor:pointer;border:2px solid transparent;transition:border-color 0.2s;flex-shrink:0}
.gallery-thumb.active{border-color:var(--gold)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-title{font-family:'Cormorant Garamond',serif;font-size:clamp(1.8rem,4vw,2.5rem);font-weight:300;color:var(--deep);line-height:1.15;margin-bottom:0.4rem}
.product-subtitle{font-size:0.74rem;letter-spacing:0.18em;text-transform:uppercase;color:var(--light);margin-bottom:1.5rem}
.product-detail-price{display:flex;align-items:baseline;gap:0.8rem;flex-wrap:wrap;margin-bottom:1.8rem;padding-bottom:1.8rem;border-bottom:0.5px solid var(--border)}
.product-cta{margin-bottom:1.8rem;padding-bottom:1.8rem;border-bottom:0.5px solid var(--border)}
.product-desc{font-size:0.8rem;line-height:2.1;color:var(--mid);margin-bottom:1.8rem;padding-bottom:1.8rem;border-bottom:0.5px solid var(--border)}
.product-specs{margin-bottom:1.8rem;padding-bottom:1.8rem;border-bottom:0.5px solid var(--border)}
.specs-title{font-size:0.74rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--charcoal);margin-bottom:1rem;font-weight:500}
.specs-table{width:100%;border-collapse:collapse}
.specs-table tr{border-bottom:0.5px solid var(--border)}
.specs-table tr:last-child{border-bottom:none}
.spec-label{font-size:0.72rem;color:var(--mid);padding:0.65rem 0;width:45%;font-weight:400}
.spec-value{font-size:0.78rem;color:var(--deep);padding:0.65rem 0;font-weight:400}
.product-promise{display:flex;flex-direction:column;gap:0.7rem}
.promise-item{display:flex;align-items:center;gap:0.7rem;font-size:0.72rem;color:var(--mid)}
.promise-item svg{width:15px;height:15px;stroke:var(--gold);fill:none;stroke-width:1.5;stroke-linecap:round;flex-shrink:0}
.btn-gold{background:var(--gold);color:var(--deep);padding:0.95rem 2.2rem;font-size:0.74rem;letter-spacing:0.22em;text-transform:uppercase;border-radius:var(--r-xs);transition:background 0.3s;min-height:48px;font-weight:500;display:inline-flex;align-items:center;justify-content:center;border:none;cursor:pointer}
.btn-gold:hover{background:var(--gold-soft)}

/* ── ALERT ── */
.alert{padding:0.9rem 1.2rem;border-radius:var(--r-sm);font-size:0.78rem;margin-bottom:1.2rem}
.alert-error{background:#fef2f2;color:#991b1b;border:0.5px solid #fecaca}
.alert-success{background:#f0fdf4;color:#166534;border:0.5px solid #bbf7d0}

/* ── PRODUCT DETAIL MOBILE ── */
@media(max-width:768px){
  .product-detail-grid{grid-template-columns:1fr;gap:2rem}
  .gallery-thumbs{gap:0.4rem}
  .gallery-thumb{width:52px;height:65px}
}


/* ════════════════════════════════════════
   PRODUCT DETAIL PAGE
════════════════════════════════════════ */
.product-page { background: #fff; min-height: 80vh; }
.product-page-inner { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem 5rem; }
.product-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--light); margin-bottom: 2.5rem; flex-wrap: wrap; }
.product-breadcrumb a { color: var(--light); transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb span { color: var(--light); }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 5rem; }

/* Gallery */
.product-gallery-wrap { display: flex; gap: 1rem; }
.gallery-thumbs-v { display: flex; flex-direction: column; gap: 0.6rem; flex-shrink: 0; }
.gallery-thumb-v { width: 72px; height: 90px; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; border: 1.5px solid transparent; transition: border-color 0.2s; background: var(--ivory-light); flex-shrink: 0; }
.gallery-thumb-v img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-v.active { border-color: var(--gold); }
.gallery-thumb-v:hover { border-color: var(--gold); }
.gallery-main-wrap { flex: 1; min-width: 0; }
.gallery-main-img-wrap { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: var(--ivory-light); position: relative; border: 0.5px solid var(--border); }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.25s ease; }
.gallery-empty-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; color: rgba(188,155,63,0.3); font-size: 1.4rem; font-style: italic; }
.gallery-badge-sale { position: absolute; top: 1rem; left: 1rem; background: var(--burgundy); color: #fff; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.32rem 0.75rem; border-radius: var(--r-xs); font-weight: 600; }
.gallery-badge { position: absolute; top: 1rem; left: 1rem; background: var(--deep); color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.32rem 0.75rem; border-radius: var(--r-xs); }
.gallery-dots-mobile { display: none; justify-content: center; gap: 6px; margin-top: 0.75rem; }
.gdot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.gdot.active { background: var(--gold); transform: scale(1.3); }

/* Product info */
.product-info-wrap { padding-top: 0.5rem; }
.pi-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 300; color: var(--deep); line-height: 1.15; margin-bottom: 0.3rem; }
.pi-subtitle { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 1.5rem; }
.pi-price { display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); }
.pi-price-main { font-size: 1.5rem; color: var(--deep); font-weight: 400; }
.pi-price-sale { font-size: 1.5rem; color: var(--burgundy); font-weight: 600; }
.pi-price-was { font-size: 1rem; color: var(--light); text-decoration: line-through; text-decoration-color: var(--burgundy); }
.pi-price-usd { font-size: 0.78rem; color: var(--light); }
.pi-desc { font-size: 0.82rem; line-height: 2; color: var(--mid); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); font-weight: 300; }

/* Specs */
.pi-specs { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); }
.pi-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 0.5px solid rgba(0,0,0,0.05); }
.pi-spec-row:last-child { border-bottom: none; }
.pi-spec-key { font-size: 0.75rem; color: var(--mid); font-weight: 400; }
.pi-spec-val { font-size: 0.78rem; color: var(--deep); font-weight: 500; text-align: right; }

/* CTA */
.pi-cta { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); display: flex; flex-direction: column; gap: 0.75rem; }
.pi-btn-cart { background: var(--deep); color: #fff; padding: 1rem 1.5rem; border: none; border-radius: var(--r-xs); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: background 0.3s; min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pi-btn-cart:hover { background: var(--burgundy); }
.pi-btn-cart:disabled { background: var(--light); cursor: not-allowed; }
.pi-btn-preorder { background: var(--gold); color: var(--deep); }
.pi-btn-preorder:hover { background: var(--gold-soft); }
.pi-btn-sold { background: #f0f0f0; color: var(--light); }
.pi-btn-price { font-size: 0.85rem; font-weight: 500; letter-spacing: 0; opacity: 0.85; }
.pi-btn-wish { display: flex; align-items: center; justify-content: center; gap: 0.5rem; border: 0.5px solid var(--border); background: #fff; border-radius: var(--r-xs); padding: 0.85rem 1.5rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: all 0.2s; color: var(--charcoal); min-height: 44px; }
.pi-btn-wish svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: all 0.2s; }
.pi-btn-wish:hover { border-color: var(--burgundy); color: var(--burgundy); }
.pi-btn-wish.active { border-color: var(--burgundy); color: var(--burgundy); }
.pi-btn-wish.active svg { fill: var(--burgundy); stroke: var(--burgundy); }
.pi-notify { display: flex; gap: 0.5rem; }
.pi-notify-input { flex: 1; padding: 0.75rem 1rem; border: 0.5px solid var(--border); border-radius: var(--r-xs); font-size: 0.8rem; outline: none; font-family: 'Jost', sans-serif; }
.pi-notify-input:focus { border-color: var(--gold); }
.pi-notify-btn { background: var(--ivory-mid); border: 0.5px solid var(--border); border-radius: var(--r-xs); padding: 0.75rem 1.2rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; white-space: nowrap; }
.pi-preorder-note { font-size: 0.7rem; color: var(--gold); }

/* Trust badges */
.pi-trust { display: flex; gap: 2rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); flex-wrap: wrap; }
.pi-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; color: var(--mid); letter-spacing: 0.06em; }
.pi-trust-item svg { width: 16px; height: 16px; stroke: var(--mid); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Accordion */
.pi-accordion { display: flex; flex-direction: column; }
.pi-acc-item { border-bottom: 0.5px solid var(--border); }
.pi-acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 400; }
.pi-acc-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.25s; flex-shrink: 0; }
.pi-acc-btn.open svg { transform: rotate(180deg); }
.pi-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.pi-acc-body p { font-size: 0.78rem; line-height: 2; color: var(--mid); padding-bottom: 1rem; font-weight: 300; }

/* Related products */
.product-related { padding-top: 4rem; border-top: 0.5px solid var(--border); }

/* Sticky cart bar */
.sticky-cart-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 0.5px solid var(--border); padding: 0.85rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; z-index: 150; transform: translateY(100%); transition: transform 0.3s ease; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-info { display: flex; flex-direction: column; min-width: 0; }
.sticky-product-name { font-size: 0.8rem; color: var(--deep); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-price { font-size: 0.72rem; color: var(--mid); }
.sticky-cart-btn { background: var(--deep); color: #fff; border: none; border-radius: var(--r-xs); padding: 0.85rem 2rem; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: background 0.3s; white-space: nowrap; flex-shrink: 0; }
.sticky-cart-btn:hover { background: var(--burgundy); }
.sticky-cart-btn:disabled { background: var(--light); cursor: not-allowed; }

/* ════════════════════════════════════════
   SHOP PAGE
════════════════════════════════════════ */
.shop-page { background: var(--ivory-light); min-height: 80vh; }
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; align-items: start; }
.shop-sidebar { position: sticky; top: calc(var(--nav-h) + 1rem); }
.shop-sidebar-label { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--light); margin-bottom: 1.2rem; font-weight: 500; }
.shop-sidebar-cats { display: flex; flex-direction: column; gap: 0.2rem; }
.shop-cat-link { font-size: 0.82rem; color: var(--mid); padding: 0.55rem 0.8rem; border-radius: var(--r-xs); transition: all 0.2s; font-weight: 300; }
.shop-cat-link:hover { color: var(--deep); background: rgba(188,155,63,0.08); }
.shop-cat-link.active { color: var(--deep); font-weight: 500; background: rgba(188,155,63,0.1); }
.shop-main { min-width: 0; }
.shop-header { margin-bottom: 2rem; }
.shop-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--deep); margin-bottom: 0.5rem; }
.shop-search-wrap { position: relative; margin-bottom: 1.5rem; max-width: 400px; }
.shop-search-input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.8rem; border: 0.5px solid var(--border); border-radius: 20px; font-size: 0.82rem; font-family: 'Jost', sans-serif; outline: none; background: #fff; transition: border-color 0.2s; }
.shop-search-input:focus { border-color: var(--gold); }
.shop-search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; stroke: var(--light); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.shop-search-results { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 0.5px solid var(--border); border-radius: var(--r-md); box-shadow: 0 8px 32px rgba(0,0,0,0.1); z-index: 300; overflow: hidden; display: none; }
.shop-search-results.open { display: block; }
.search-result-item { display: flex; align-items: center; gap: 0.9rem; padding: 0.75rem 1rem; transition: background 0.15s; cursor: pointer; border-bottom: 0.5px solid var(--border); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--ivory-light); }
.search-result-img { width: 44px; height: 55px; border-radius: var(--r-xs); overflow: hidden; background: var(--ivory-mid); flex-shrink: 0; }
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-name { font-size: 0.82rem; color: var(--deep); font-weight: 400; margin-bottom: 0.15rem; }
.search-result-price { font-size: 0.72rem; color: var(--mid); }
.search-no-results { padding: 1.2rem; text-align: center; font-size: 0.78rem; color: var(--light); }
.shop-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
.shop-count { font-size: 0.72rem; color: var(--light); }
.shop-sort { padding: 0.55rem 1rem; border: 0.5px solid var(--border); border-radius: var(--r-xs); font-size: 0.72rem; background: #fff; color: var(--charcoal); outline: none; font-family: 'Jost', sans-serif; cursor: pointer; }
.shop-sort:focus { border-color: var(--gold); }

/* AJAX search in header */
.search-ajax-results { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 0.5px solid var(--border); border-radius: 0 0 var(--r-md) var(--r-md); box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 500; display: none; max-height: 400px; overflow-y: auto; }
.search-ajax-results.open { display: block; }
.search-ajax-item { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 1.2rem; border-bottom: 0.5px solid var(--border); cursor: pointer; transition: background 0.15s; }
.search-ajax-item:last-child { border-bottom: none; }
.search-ajax-item:hover { background: var(--ivory-light); }
.search-ajax-img { width: 44px; height: 55px; border-radius: var(--r-xs); overflow: hidden; background: var(--ivory-mid); flex-shrink: 0; }
.search-ajax-img img { width: 100%; height: 100%; object-fit: cover; }
.search-ajax-name { font-size: 0.82rem; color: var(--deep); }
.search-ajax-price { font-size: 0.7rem; color: var(--mid); margin-top: 0.15rem; }
.search-ajax-empty { padding: 1.2rem; text-align: center; font-size: 0.78rem; color: var(--light); }

/* Shop mobile */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .shop-sidebar-cats { flex-direction: row; flex-wrap: wrap; }
  .shop-cat-link { font-size: 0.75rem; }
}
@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery-wrap { flex-direction: column-reverse; }
  .gallery-thumbs-v { flex-direction: row; }
  .gallery-thumb-v { width: 60px; height: 75px; }
  .gallery-dots-mobile { display: flex; }
  .pi-trust { gap: 1.2rem; }
  .sticky-cart-bar { padding: 0.75rem 1rem; }
  .sticky-cart-btn { padding: 0.75rem 1.2rem; }
}

/* ── CRITICAL FIXES ── */
/* Force dropdown closed by default */
.nav-desktop .nav-sub,
.nav-sub { 
  display: none !important; 
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #fff !important;
  border: 0.5px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  padding: 0.5rem !important;
  min-width: 200px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
  z-index: 9999 !important;
  margin-top: 4px !important;
}
.nav-desktop .has-sub:hover .nav-sub,
.has-sub:hover .nav-sub { 
  display: block !important; 
}

/* Force search bar hidden by default */
.search-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: #fff !important;
  z-index: 400 !important;
  padding: 1.2rem var(--px) !important;
  border-bottom: 0.5px solid var(--border) !important;
  transform: translateY(-120%) !important;
  transition: transform 0.3s ease !important;
}
.search-bar.open {
  transform: translateY(0) !important;
}

/* ── PRODUCT CARD SIZE CONSISTENCY ── */
/* Both sections use same card size on mobile */
.products-grid { display: grid; gap: 1.2rem; }
.products-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.products-grid:not(.cols-4) { grid-template-columns: repeat(2, 1fr); }

/* Cards always same proportions regardless of grid */
.products-grid .product-card,
.products-grid.cols-4 .product-card { width: 100%; }
.products-grid .product-image,
.products-grid.cols-4 .product-image { 
  aspect-ratio: 4/5 !important; 
  width: 100% !important;
}

/* Mobile - both sections show 2 columns */
@media (max-width: 768px) {
  .products-grid.cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .products-grid:not(.cols-4) { grid-template-columns: repeat(2, 1fr) !important; }
}


/* ════════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES
════════════════════════════════════════ */


@media (max-width: 768px) {
  .nav-inner { padding: 0 var(--px); }
  .nav-logo { font-size: 1.1rem; }
  .nav-actions { gap: 0.6rem; }
  .nav-icon svg { width: 18px; height: 18px; }
  .cart-badge { width: 14px; height: 14px; font-size: 0.7rem; top: -4px; right: -4px; }
}

/* ── HOMEPAGE MOBILE ── */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .marquee { padding: 0.6rem 0; }
  .mq-item { font-size: 0.72rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.8rem; }
  .product-card { font-size: 0.85rem; }
  .product-name { font-size: 0.82rem; }
  .product-sub { font-size: 0.72rem; }
  .price-mvr, .price-sale { font-size: 0.85rem; }
  .btn-add { font-size: 0.72rem; padding: 0.6rem; letter-spacing: 0.1em; }
  .btn-wish { width: 38px; min-height: 38px; }
  .btn-wish svg { width: 15px; height: 15px; }
  .popup-box { grid-template-columns: 1fr; max-width: 90vw; }
  .popup-img { display: none; }
}

/* ── SHOP PAGE MOBILE ── */
@media (max-width: 768px) {
  .shop-layout { grid-template-columns: 1fr; padding: 1.5rem var(--px) 3rem; gap: 1.5rem; }
  .shop-sidebar { position: static; }
  .shop-sidebar-cats { flex-direction: row; flex-wrap: wrap; gap: 0.4rem; }
  .shop-cat-link { font-size: 0.72rem; padding: 0.4rem 0.75rem; background: var(--ivory-light); border-radius: 20px; }
  .shop-title { font-size: 1.5rem; }
  .shop-search-wrap { max-width: 100%; }
  .shop-topbar { margin-bottom: 1rem; }
}





/* ════════════════════════════════════════
   PRODUCT PAGE — COMPLETE STYLES
════════════════════════════════════════ */

/* ── Base (all screens) ── */
.product-page { background: #fff; }
.product-page-inner { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem 5rem; }
.product-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--light); margin-bottom: 2rem; flex-wrap: wrap; }
.product-breadcrumb a { color: var(--light); }
.product-breadcrumb a:hover { color: var(--gold); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 5rem; }

/* Gallery desktop */
.product-gallery-wrap { display: flex; flex-direction: row; gap: 1rem; }
.gallery-thumbs-v { display: flex; flex-direction: column; gap: 0.6rem; flex-shrink: 0; }
.gallery-thumb-v { width: 68px; height: 85px; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; background: var(--ivory-light); flex-shrink: 0; }
.gallery-thumb-v img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-v.active { border-color: var(--gold); }
.gallery-main-wrap { flex: 1; min-width: 0; }
.gallery-main-img-wrap { aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: var(--ivory-light); position: relative; border: 0.5px solid var(--border); }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.25s; }
.gallery-empty-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; color: rgba(188,155,63,0.3); font-size: 1.4rem; font-style: italic; }
.gallery-badge-sale { position: absolute; top: 1rem; left: 1rem; background: var(--burgundy); color: #fff; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.32rem 0.75rem; border-radius: var(--r-xs); font-weight: 600; }
.gallery-badge { position: absolute; top: 1rem; left: 1rem; background: var(--deep); color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.32rem 0.75rem; border-radius: var(--r-xs); }
.gallery-dots-mobile { display: none; justify-content: center; gap: 6px; margin-top: 0.6rem; }
.gdot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: all 0.2s; flex-shrink: 0; }
.gdot.active { background: var(--gold); }

/* Product info desktop */
.product-info-wrap { padding-top: 0.5rem; min-width: 0; }
.pi-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 300; color: var(--deep); line-height: 1.15; margin-bottom: 0.3rem; }
.pi-subtitle { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 1.5rem; }
.pi-price { display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); }
.pi-price-main { font-size: 1.5rem; color: var(--deep); font-weight: 400; }
.pi-price-sale { font-size: 1.5rem; color: var(--burgundy); font-weight: 600; }
.pi-price-was { font-size: 1rem; color: var(--light); text-decoration: line-through; text-decoration-color: var(--burgundy); }
.pi-price-usd { font-size: 0.78rem; color: var(--light); }
.pi-desc { font-size: 0.82rem; line-height: 2; color: var(--mid); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); font-weight: 300; }

/* Specs */
.pi-specs { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); }
.pi-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 0.5px solid rgba(0,0,0,0.05); gap: 1rem; }
.pi-spec-row:last-child { border-bottom: none; }
.pi-spec-key { font-size: 0.75rem; color: var(--mid); font-weight: 400; flex-shrink: 0; }
.pi-spec-val { font-size: 0.78rem; color: var(--deep); font-weight: 500; text-align: right; }

/* CTA */
.pi-cta { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); display: flex; flex-direction: column; gap: 0.75rem; }
.pi-btn-cart { background: var(--deep); color: #fff; padding: 1rem 1.5rem; border: none; border-radius: var(--r-xs); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: background 0.3s; min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; box-sizing: border-box; }
.pi-btn-cart:hover:not(:disabled) { background: var(--burgundy); }
.pi-btn-cart:disabled { background: #ccc; cursor: not-allowed; }
.pi-btn-preorder { background: var(--gold); color: var(--deep); }
.pi-btn-price { font-size: 0.9rem; font-weight: 500; letter-spacing: 0; white-space: nowrap; }
.pi-btn-wish { display: flex; align-items: center; justify-content: center; gap: 0.5rem; border: 0.5px solid var(--border); background: #fff; border-radius: var(--r-xs); padding: 0.85rem 1.5rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: all 0.2s; color: var(--charcoal); min-height: 48px; width: 100%; box-sizing: border-box; }
.pi-btn-wish svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: all 0.2s; flex-shrink: 0; }
.pi-btn-wish:hover, .pi-btn-wish.active { border-color: var(--burgundy); color: var(--burgundy); }
.pi-btn-wish.active svg { fill: var(--burgundy); stroke: var(--burgundy); }
.pi-notify { display: flex; gap: 0.5rem; }
.pi-notify-input { flex: 1; padding: 0.75rem 1rem; border: 0.5px solid var(--border); border-radius: var(--r-xs); font-size: 0.8rem; outline: none; font-family: 'Jost', sans-serif; min-width: 0; }
.pi-notify-btn { background: var(--ivory-mid); border: 0.5px solid var(--border); border-radius: var(--r-xs); padding: 0.75rem 1.2rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; white-space: nowrap; }
.pi-preorder-note { font-size: 0.7rem; color: var(--gold); }

/* Trust */
.pi-trust { display: flex; gap: 2rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); flex-wrap: wrap; }
.pi-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; color: var(--mid); }
.pi-trust-item svg { width: 16px; height: 16px; stroke: var(--mid); fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* Accordion */
.pi-accordion { display: flex; flex-direction: column; }
.pi-acc-item { border-bottom: 0.5px solid var(--border); }
.pi-acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif; }
.pi-acc-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.25s; }
.pi-acc-btn.open svg { transform: rotate(180deg); }
.pi-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.pi-acc-body p { font-size: 0.78rem; line-height: 2; color: var(--mid); padding-bottom: 1rem; }

/* Related */
.product-related { padding-top: 4rem; border-top: 0.5px solid var(--border); }

/* Sticky cart */
.sticky-cart-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 0.5px solid var(--border); padding: 0.85rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; z-index: 150; transform: translateY(100%); transition: transform 0.3s; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.sticky-product-name { font-size: 0.78rem; color: var(--deep); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-price { font-size: 0.7rem; color: var(--mid); }
.sticky-cart-btn { background: var(--deep); color: #fff; border: none; border-radius: var(--r-xs); padding: 0.85rem 1.5rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: background 0.3s; white-space: nowrap; flex-shrink: 0; }
.sticky-cart-btn:hover { background: var(--burgundy); }
.sticky-cart-btn:disabled { background: var(--light); cursor: not-allowed; }

/* ════════════════════════════════════════
   MOBILE — MAX 768px
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Prevent horizontal overflow globally */
  html, body { overflow-x: hidden; max-width: 100%; }
  * { box-sizing: border-box; }

  /* Announcement bar — single line */
  .ann-bar { font-size: 0.7rem !important; letter-spacing: 0.08em !important; padding: 0.45rem 1rem !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* Product page wrapper */
  .product-page-inner { padding: 0.75rem 1rem 7rem; width: 100%; overflow-x: hidden; }
  .product-breadcrumb { font-size: 0.72rem; margin-bottom: 0.75rem; gap: 0.3rem; }

  /* Stack layout */
  .product-layout { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }

  /* Gallery — main image on top, thumbs below */
  .product-gallery-wrap { flex-direction: column; gap: 0.6rem; width: 100%; }
  .gallery-main-wrap { order: 1; width: 100%; }
  .gallery-thumbs-v { order: 2; flex-direction: row; overflow-x: auto; scrollbar-width: none; gap: 0.4rem; }
  .gallery-thumbs-v::-webkit-scrollbar { display: none; }
  .gallery-thumb-v { width: 54px; height: 68px; flex-shrink: 0; }
  .gallery-dots-mobile { display: flex; }

  /* Main image — good size, fills container */
  .gallery-main-img-wrap { 
    width: 100%; 
    aspect-ratio: unset; 
    height: 72vw; 
    max-height: 350px; 
    border-radius: 10px;
  }
  .gallery-main-img { object-fit: cover; width: 100%; height: 100%; }

  /* Product info — no overflow */
  .product-info-wrap { width: 100%; min-width: 0; overflow: hidden; padding: 0; }
  .pi-name { font-size: 1.3rem; }
  .pi-price { gap: 0.4rem; margin-bottom: 1rem; padding-bottom: 1rem; flex-wrap: wrap; }
  .pi-price-main, .pi-price-sale { font-size: 1.15rem; }
  .pi-price-was { font-size: 0.82rem; }
  .pi-price-usd { font-size: 0.78rem; width: 100%; }

  /* Specs — contained, no overflow */
  .pi-specs { width: 100%; overflow: hidden; margin-bottom: 1rem; padding-bottom: 1rem; }
  .pi-spec-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem; 
    padding: 0.5rem 0; 
    align-items: start;
    width: 100%;
    overflow: hidden;
  }
  .pi-spec-key { font-size: 0.7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .pi-spec-val { font-size: 0.7rem; text-align: right; word-break: break-word; overflow-wrap: break-word; }

  /* CTA buttons — full width, no overflow */
  .pi-cta { width: 100%; margin-bottom: 1rem; padding-bottom: 1rem; gap: 0.6rem; }
  .pi-btn-cart { 
    width: 100%; 
    padding: 0.9rem 1rem; 
    font-size: 0.72rem; 
    letter-spacing: 0.1em;
    justify-content: space-between;
  }
  .pi-btn-price { font-size: 0.82rem; letter-spacing: 0; }
  .pi-btn-wish { width: 100%; padding: 0.75rem 1rem; font-size: 0.72rem; }

  /* Trust badges */
  .pi-trust { gap: 0.75rem; margin-bottom: 1rem; padding-bottom: 1rem; }
  .pi-trust-item { font-size: 0.72rem; }

  /* Sticky bar */
  .sticky-cart-bar { padding: 0.65rem 1rem; gap: 0.75rem; }
  .sticky-cart-btn { padding: 0.7rem 1rem; font-size: 0.72rem; letter-spacing: 0.1em; }
  .sticky-product-name { font-size: 0.72rem; }
  .sticky-price { font-size: 0.74rem; }
}

/* ════════════════════════════════════════
   CART PAGE MOBILE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-header { padding: 1.5rem 1rem 1rem !important; }
  .page-header h1 { font-size: 2rem !important; margin-bottom: 0.2rem !important; }
  .checkout-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .cart-item { 
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.85rem !important;
    overflow: hidden !important;
  }
  .cart-item-img { width: 56px !important; height: 70px !important; flex-shrink: 0 !important; }
  .cart-item-info { flex: 1 !important; min-width: 0 !important; overflow: hidden !important; }
  .cart-item-name { font-size: 0.78rem !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; }
  .cart-item-sub { font-size: 0.72rem !important; }
  .cart-item-qty { gap: 0.4rem !important; flex-shrink: 0 !important; }
  .qty-btn { width: 24px !important; height: 24px !important; font-size: 0.85rem !important; }
  .qty-val { font-size: 0.78rem !important; min-width: 14px !important; }
  .cart-item-price { font-size: 0.78rem !important; white-space: nowrap !important; flex-shrink: 0 !important; }
  .cart-remove { flex-shrink: 0 !important; }

  /* Discount form */
  #discountForm { display: flex !important; gap: 0.5rem !important; }
  #discountCode { flex: 1 !important; min-width: 0 !important; font-size: 16px !important; padding: 0.7rem 0.8rem !important; }
  #discountForm .btn-dark { padding: 0.7rem 1rem !important; font-size: 0.72rem !important; white-space: nowrap !important; flex-shrink: 0 !important; }

  /* Order summary */
  .order-summary { padding: 1.2rem !important; }
  .summary-row { font-size: 0.78rem !important; }
  .summary-row.total { font-size: 0.9rem !important; }
  .btn-dark.btn-full { font-size: 0.72rem !important; padding: 0.9rem !important; }
}

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR MOBILE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .ann-bar { 
    font-size: 0.7rem !important; 
    letter-spacing: 0.06em !important; 
    padding: 0.45rem 1rem !important; 
    white-space: nowrap !important; 
    overflow: hidden !important; 
    text-overflow: ellipsis !important; 
  }
}

/* ════════════════════════════════════════
   GLOBAL OVERFLOW PREVENTION
════════════════════════════════════════ */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

/* ════════════════════════════════════════
   FINAL OVERFLOW FIX — ROOT CAUSE
════════════════════════════════════════ */

/* The thumbnails row was overflowing the page width */
/* Fix globally - not just mobile */
.gallery-thumbs-v {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-thumbs-v::-webkit-scrollbar { display: none; }

/* Mobile specific */
@media (max-width: 768px) {
  /* Contain the whole page */
  html, body { overflow-x: hidden; width: 100%; }
  .product-page { overflow: hidden; width: 100%; }
  .product-page-inner { 
    padding: 0.75rem 0.9rem 7rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    overflow: hidden;
  }
  
  /* Gallery stacks vertically - main on top, thumbs below */
  .product-gallery-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    overflow: hidden;
  }
  .gallery-main-wrap { 
    order: 1;
    width: 100%;
  }
  .gallery-thumbs-v { 
    order: 2;
    flex-direction: row;
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    gap: 0.4rem;
    padding-bottom: 4px;
  }
  .gallery-thumb-v { 
    width: 52px;
    height: 65px;
    flex-shrink: 0;
  }

  /* Main image - good size */
  .gallery-main-img-wrap {
    width: 100%;
    aspect-ratio: unset;
    height: 72vw;
    max-height: 340px;
    border-radius: 10px;
  }
  .gallery-main-img { object-fit: cover; width: 100%; height: 100%; }
  .gallery-dots-mobile { display: flex; }

  /* Product info - contained */
  .product-info-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
    padding: 0;
  }
  .pi-name { font-size: 1.3rem; word-break: break-word; }
  .pi-price { flex-wrap: wrap; gap: 0.4rem; }
  .pi-price-usd { width: 100%; }

  /* Specs - 2 column grid, both sides visible */
  .pi-specs { width: 100%; overflow: hidden; }
  .pi-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.5rem 0;
    gap: 0.5rem;
    width: 100%;
  }
  .pi-spec-key { 
    font-size: 0.7rem; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
  }
  .pi-spec-val { 
    font-size: 0.7rem; 
    text-align: right; 
    word-break: break-word;
  }

  /* Add to cart - full width, price visible */
  .pi-btn-cart {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .pi-btn-price { font-size: 0.82rem; letter-spacing: 0; white-space: nowrap; }
  .pi-btn-wish { width: 100%; }

  /* Sticky bar */
  .sticky-cart-bar { padding: 0.65rem 0.9rem; gap: 0.6rem; }
  .sticky-cart-btn { padding: 0.7rem 0.9rem; font-size: 0.72rem; }

  /* Announcement bar */
  .ann-bar { 
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 0.45rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ── PRODUCT IMAGE RATIO FIX (4:5) ── */
@media (max-width: 768px) {
  .gallery-main-img-wrap {
    width: 100% !important;
    aspect-ratio: 4/5 !important;
    height: auto !important;
    max-height: unset !important;
  }
}

/* ── CART PAGE MOBILE FIX ── */
@media (max-width: 768px) {
  /* Prevent page overflow */
  .cart-page, .section { overflow-x: hidden; width: 100%; }
  .section-inner { padding-left: 0.9rem !important; padding-right: 0.9rem !important; max-width: 100% !important; }

  /* Cart grid single column */
  .checkout-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }

  /* Cart item - contained row */
  .cart-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.85rem !important;
    overflow: hidden !important;
    width: 100% !important;
  }
  .cart-item-img { 
    width: 56px !important; 
    height: 70px !important; 
    flex-shrink: 0 !important; 
  }
  .cart-item-info { 
    flex: 1 !important; 
    min-width: 0 !important; 
    overflow: hidden !important; 
  }
  .cart-item-name { 
    font-size: 0.78rem !important; 
    white-space: nowrap !important; 
    overflow: hidden !important; 
    text-overflow: ellipsis !important; 
  }
  .cart-item-qty { flex-shrink: 0 !important; gap: 0.4rem !important; }
  .qty-btn { width: 26px !important; height: 26px !important; }
  .qty-val { font-size: 0.78rem !important; min-width: 14px !important; }
  .cart-item-price { 
    font-size: 0.78rem !important; 
    white-space: nowrap !important; 
    flex-shrink: 0 !important; 
  }
  .cart-remove { flex-shrink: 0 !important; }

  /* Discount form */
  #discountForm { display: flex !important; gap: 0.5rem !important; width: 100% !important; }
  #discountCode { 
    flex: 1 !important; 
    min-width: 0 !important; 
    width: 100% !important;
    font-size: 16px !important; 
    padding: 0.7rem 0.8rem !important; 
  }
  #discountForm .btn-dark { 
    padding: 0.7rem 1rem !important; 
    font-size: 0.72rem !important; 
    white-space: nowrap !important; 
    flex-shrink: 0 !important; 
    letter-spacing: 0.1em !important;
  }

  /* Order summary */
  .order-summary { padding: 1.2rem !important; border-radius: 12px !important; }
  .summary-row { font-size: 0.78rem !important; }
  .summary-row.total { font-size: 0.92rem !important; }
  .btn-dark.btn-full { font-size: 0.72rem !important; padding: 0.9rem 1rem !important; }
}

/* ════════════════════════════════════════
   DEFINITIVE MOBILE FIX - ALL PAGES
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Prevent ALL horizontal overflow */
  html { overflow-x: hidden; }
  body { overflow-x: hidden; max-width: 100vw; }
  
  /* Section inner needs padding on mobile */
  .section-inner { 
    padding-left: 1rem !important; 
    padding-right: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Product grids - 2 columns on mobile always */
  .products-grid,
  .products-grid.cols-4 { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 0.75rem !important;
  }
  .product-image { aspect-ratio: 4/5 !important; }

  /* Product page - contained */
  .product-layout { grid-template-columns: 1fr !important; }
  .product-info-wrap { width: 100% !important; max-width: 100% !important; overflow: hidden !important; }
  .pi-spec-row { 
    display: grid !important; 
    grid-template-columns: 1fr 1fr !important; 
    width: 100% !important;
    overflow: hidden !important;
  }
  .pi-spec-key { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
  .pi-spec-val { text-align: right !important; word-break: break-word !important; }
  .pi-btn-cart { width: 100% !important; box-sizing: border-box !important; }
  .pi-btn-wish { width: 100% !important; box-sizing: border-box !important; }

  /* Cart page */
  .cart-item { overflow: hidden !important; width: 100% !important; }
  .cart-item-info { min-width: 0 !important; flex: 1 !important; overflow: hidden !important; }
  .cart-item-price { white-space: nowrap !important; flex-shrink: 0 !important; }
  
  /* Discount form fix */
  #discountForm { 
    display: flex !important; 
    width: 100% !important;
    gap: 0.5rem !important;
  }
  #discountCode { 
    flex: 1 !important; 
    min-width: 0 !important;
    width: auto !important;
    font-size: 16px !important;
    padding: 0.75rem 0.8rem !important;
    box-sizing: border-box !important;
  }
  #discountForm button[type=submit] { 
    flex-shrink: 0 !important;
    padding: 0.75rem 1.2rem !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
    letter-spacing: 0.1em !important;
  }

  /* Nav wrap */
  .nav-wrap { max-width: 100vw !important; overflow: hidden !important; }
  
  /* Announcement bar */
  .ann-bar {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0.45rem 1rem !important;
  }
}

@media (max-width: 768px) {
  .order-summary { 
    position: static !important; 
    padding: 1.2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .summary-row { 
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .summary-row span:last-child {
    flex-shrink: 0 !important;
    padding-left: 0.5rem !important;
  }
}
/* ════════════════════════════════════════
   NAV — mobile (clean, no overrides needed
   since base CSS uses flexbox, not absolute)
════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-left    { display: none; }
  .nav-signin  { display: none; }
  .hamburger   { display: flex; }
}

/* ════════════════════════════════════════
   DISCOUNT CODE FORM — mobile fix
   Stack vertically: input full width on row 1,
   Apply button full width on row 2. Sidesteps
   all the .btn-outline width rules.
════════════════════════════════════════ */
@media (max-width: 768px) {
  #discountForm > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  #discountCode {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 16px !important;
    padding: 0.7rem 0.9rem !important;
    box-sizing: border-box !important;
  }
  #discountForm .btn-outline {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    min-height: 44px !important;
    white-space: nowrap !important;
  }
}

/* ════════════════════════════════════════
   STATIC PAGE CONTENT (terms, privacy, etc.)
════════════════════════════════════════ */
.page-content-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 0.5px solid var(--border);
}
.page-content { font-size: 0.82rem; line-height: 2; color: var(--mid); }
.page-content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 1.5rem; color: var(--deep); margin-bottom: 1.2rem; }
.page-content h3 { font-size: 0.85rem; font-weight: 600; color: var(--deep); margin: 1.6rem 0 0.5rem; }
.page-content p  { margin-bottom: 0.9rem; }
.page-content ul, .page-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.4rem; }
.page-content a { color: var(--gold); text-decoration: underline; }
.page-content strong { color: var(--deep); font-weight: 600; }
@media (max-width: 768px) {
  .page-content-card { padding: 1.5rem 1.2rem; }
}