/* ============================================================
   ASTRIDI — Luxury Jewellery  |  Shared Stylesheet
   Font: Poppins  |  Theme: Light  |  Animated
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Mona Lisa Demo — custom brand font ── */
@font-face {
  font-family: 'MonaLisa';
  src: url('../fonts/CSMonalisa-Regular_demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Brand logo font — used in header, nav drawer, footer, checkout ── */
.site-logo, .nav-drawer-logo, .footer-bar-logo, .checkout-logo {
  font-family: 'MonaLisa', 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: normal; letter-spacing: .4em;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; }
button { cursor: pointer; border: none; background: none; font-family: 'Poppins', sans-serif; }
input, select, textarea { font-family: 'Poppins', sans-serif; }

/* ── Utility ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Scroll-reveal — hidden by default, JS adds .revealed */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.revealed { opacity: 1 !important; transform: none !important; }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-left.revealed { opacity: 1 !important; transform: none !important; }
.reveal-scale {
  opacity: 0; transform: scale(.96);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.revealed { opacity: 1 !important; transform: none !important; }

/* Staggered children */
.stagger > *:nth-child(1)  { transition-delay: .04s; }
.stagger > *:nth-child(2)  { transition-delay: .10s; }
.stagger > *:nth-child(3)  { transition-delay: .16s; }
.stagger > *:nth-child(4)  { transition-delay: .22s; }
.stagger > *:nth-child(5)  { transition-delay: .28s; }
.stagger > *:nth-child(6)  { transition-delay: .34s; }
.stagger > *:nth-child(7)  { transition-delay: .40s; }
.stagger > *:nth-child(8)  { transition-delay: .46s; }
.stagger > *:nth-child(9)  { transition-delay: .52s; }
.stagger > *:nth-child(10) { transition-delay: .58s; }
.stagger > *:nth-child(11) { transition-delay: .62s; }
.stagger > *:nth-child(12) { transition-delay: .66s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  z-index: 200;
  background: transparent;
  transition: background .35s, border-color .35s, box-shadow .35s;
}
.site-header.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 12px rgba(0,0,0,.05);
}
.site-header.always-solid {
  background: #fff; border-bottom: 1px solid #e8e8e8; position: sticky;
}
.header-left, .header-right { display: flex; align-items: center; gap: 10px; flex: 1; }
.header-right { justify-content: flex-end; }
.header-center { flex: 1; text-align: center; }

.menu-btn {
  display: flex; align-items: center; gap: 9px;
  color: #fff; transition: color .3s; padding: 4px;
}
.site-header.solid .menu-btn,
.site-header.always-solid .menu-btn { color: #1a1a1a; }
.menu-label { font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }

.site-logo {
  font-family: 'MonaLisa', 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: normal;
  letter-spacing: .3em; text-transform: uppercase;
  color: #fff; transition: color .3s;
  display: inline-block;
}
.site-header.solid .site-logo,
.site-header.always-solid .site-logo { color: #1a1a1a; }

.hdr-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: color .3s, transform .2s; position: relative;
}
.hdr-icon:hover { transform: scale(1.1); }
.site-header.solid .hdr-icon,
.site-header.always-solid .hdr-icon { color: #1a1a1a; }

.cart-badge {
  position: absolute; top: 5px; right: 3px;
  width: 17px; height: 17px;
  background: #b8973a; color: #fff;
  font-size: 9px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: opacity .2s, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.cart-badge.show { opacity: 1; transform: scale(1); }

/* ── Nav Drawer ── */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.45); z-index: 298;
  opacity: 0; transition: opacity .3s;
}
.nav-overlay.show { opacity: 1; }
.nav-drawer {
  position: fixed; top: 0; left: 0;
  width: 310px; height: 100vh;
  background: #fff; z-index: 299;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: 4px 0 30px rgba(0,0,0,.12);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px; border-bottom: 1px solid #eee;
}
.nav-drawer-logo { font-family: 'MonaLisa', 'Cormorant Garamond', serif; font-size: 15px; font-weight: normal; letter-spacing: .28em; }
.nav-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #888; transition: color .2s, transform .2s; }
.nav-close:hover { color: #000; transform: rotate(90deg); }
.nav-list { flex: 1; padding: 8px 0; overflow-y: auto; }
.nav-list li { border-bottom: 1px solid #f2f2f2; }
.nav-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: #1a1a1a; transition: color .2s, padding-left .2s;
}
.nav-list li a:hover { color: #b8973a; padding-left: 30px; }
.nav-list li a svg { color: #ccc; }
.nav-drawer-footer { padding: 20px 24px; border-top: 1px solid #eee; display: flex; flex-direction: column; gap: 13px; }
.nav-drawer-footer a { font-size: 11px; letter-spacing: .08em; color: #888; transition: color .2s; }
.nav-drawer-footer a:hover { color: #b8973a; }
.nav-drawer { width: 380px; }
.nav-section-label {
  font-size: 9px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #b8973a;
  padding: 18px 24px 6px; display: block;
}
.nav-sub-item a {
  padding: 10px 24px 10px 36px !important;
  font-size: 11px !important; font-weight: 400 !important;
  letter-spacing: .06em !important; color: #777 !important;
  border-bottom: none !important;
}
.nav-sub-item a:hover { color: #b8973a !important; padding-left: 42px !important; }
.nav-list .has-sub { border-bottom: none; }

/* ── Search Overlay ── */
.search-overlay {
  position: fixed; top: 58px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid #e8e8e8; z-index: 190;
  padding: 20px 36px 16px;
  transform: translateY(-110%); opacity: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
}
.search-overlay.open { transform: translateY(0); opacity: 1; }
.search-box {
  display: flex; align-items: center;
  border-bottom: 2px solid #1a1a1a; padding-bottom: 10px;
  max-width: 700px; gap: 12px;
}
.search-input-main {
  flex: 1; border: none; outline: none;
  font-size: 18px; font-weight: 300; color: #1a1a1a;
  background: transparent; font-family: 'Poppins', sans-serif;
}
.search-input-main::placeholder { color: #bbb; }
.search-close-btn { color: #888; padding: 4px; transition: color .2s; }
.search-close-btn:hover { color: #1a1a1a; }
.search-suggestions-row { display: flex; align-items: center; gap: 14px; margin-top: 13px; flex-wrap: wrap; }
.search-sugg-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #aaa; }
.search-suggestions-row a { font-size: 12px; font-weight: 400; color: #555; border-bottom: 1px solid #ddd; padding-bottom: 1px; transition: color .2s, border-color .2s; }
.search-suggestions-row a:hover { color: #b8973a; border-color: #b8973a; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  padding: 14px 30px; cursor: pointer; transition: all .25s; border: none; white-space: nowrap;
}
.btn-dark { background: #1a1a1a; color: #fff; }
.btn-dark:hover { background: #333; transform: translateY(-1px); }
.btn-gold { background: #b8973a; color: #fff; }
.btn-gold:hover { background: #a07e2e; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #1a1a1a; border: 1px solid #1a1a1a; }
.btn-outline:hover { background: #1a1a1a; color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7); }
.btn-outline-white:hover { background: #fff; color: #1a1a1a; }
.btn-full { width: 100%; display: flex; }

.cta-link {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: 2px;
  transition: border-color .2s, color .2s, letter-spacing .2s;
}
.cta-link:hover { border-color: #d4af70; color: #d4af70; letter-spacing: .2em; }
.cta-link-dark {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: #1a1a1a; border-bottom: 1px solid #1a1a1a; padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.cta-link-dark:hover { border-color: #b8973a; color: #b8973a; }
.cta-link-light {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: 2px;
  transition: all .2s;
}
.cta-link-light:hover { border-color: #d4af70; color: #d4af70; letter-spacing: .2em; }

/* ============================================================
   FOOTER — Full Bulgari-style
   ============================================================ */
.site-footer { background: #fff; border-top: 1px solid #e8e8e8; }

.footer-main {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1200px;
  padding: 52px 40px 44px;
  gap: 0;
}

/* Services card */
.footer-services-card {
  position: relative; width: 210px; height: 210px; overflow: hidden; flex-shrink: 0;
}
.footer-services-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.footer-services-card:hover img { transform: scale(1.05); }
.footer-services-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.footer-services-content { position: absolute; bottom: 16px; left: 16px; z-index: 2; }
.footer-services-label { font-size: 12px; font-weight: 500; color: #fff; margin-bottom: 7px; }
.footer-services-cta {
  font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 2px; transition: border-color .2s;
}
.footer-services-cta:hover { border-color: #d4af70; }

/* Link columns — 4 columns: Contact Hub / Customer Care / About / Privacy */
.footer-cols-wrap { padding-left: 52px; }
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 36px;
}
.footer-col-heading {
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: #1a1a1a; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid #eee;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 13px; font-weight: 300; color: #555; transition: color .2s, padding-left .15s; display: inline-block; }
.footer-links li a:hover { color: #b8973a; padding-left: 4px; }

/* Footer middle — newsletter row */
.footer-newsletter-row {
  background: #f7f4ef;
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.footer-newsletter-text {}
.footer-newsletter-title { font-size: 15px; font-weight: 500; color: #1a1a1a; margin-bottom: 4px; }
.footer-newsletter-sub { font-size: 12px; font-weight: 300; color: #777; }
.footer-newsletter-form { display: flex; align-items: center; border-bottom: 1px solid #1a1a1a; min-width: 340px; }
.footer-newsletter-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 13px; font-weight: 300; color: #1a1a1a; padding: 9px 0; font-family: 'Poppins', sans-serif;
}
.footer-newsletter-input::placeholder { color: #aaa; }
.footer-newsletter-btn { color: #1a1a1a; padding: 8px 0 8px 10px; transition: color .2s; }
.footer-newsletter-btn:hover { color: #b8973a; }

/* Footer bottom bar */
.footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px; border-top: 1px solid #e8e8e8; background: #fff;
}
.country-change {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 300; color: #555; transition: color .2s;
}
.country-change:hover { color: #1a1a1a; }
.country-change strong { font-weight: 500; color: #1a1a1a; }
.footer-bar-logo { font-family: 'MonaLisa', 'Cormorant Garamond', serif; font-size: 15px; font-weight: normal; letter-spacing: .3em; color: #1a1a1a; transition: color .2s; }
.footer-bar-logo:hover { color: #b8973a; }
.footer-bar-right { display: flex; align-items: center; gap: 16px; }
.social-link { color: #555; transition: color .25s, transform .2s; display: flex; align-items: center; }
.social-link:hover { color: #1a1a1a; transform: translateY(-2px); }
.footer-copyright { font-size: 10px; font-weight: 300; color: #aaa; text-align: center; padding: 10px 40px 14px; border-top: 1px solid #f0f0f0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 16px 40px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #eee; }
.breadcrumb a, .breadcrumb span { font-size: 12px; font-weight: 400; color: #888; letter-spacing: .04em; transition: color .2s; }
.breadcrumb a:hover { color: #b8973a; }
.breadcrumb .sep { color: #ccc; }
.breadcrumb .current { color: #1a1a1a; }

/* ============================================================
   COLLECTION / CATEGORY PAGE
   ============================================================ */
.cat-hero { position: relative; height: 420px; overflow: hidden; margin-top: 58px; }
.cat-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cat-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.58) 0%, transparent 60%); }
.cat-hero-text { position: absolute; bottom: 44px; left: 44px; z-index: 2; }
.cat-hero-eyebrow { display: block; font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.cat-hero-title { font-size: 46px; font-weight: 300; color: #fff; letter-spacing: .04em; }

.cat-tabs { display: flex; gap: 0; border-bottom: 1px solid #eee; padding: 0 40px; overflow-x: auto; }
.cat-tab {
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: #888; padding: 17px 20px; border-bottom: 2px solid transparent; white-space: nowrap; transition: all .2s;
}
.cat-tab.active, .cat-tab:hover { color: #1a1a1a; border-bottom-color: #1a1a1a; }

.cat-body { padding: 40px 40px 90px; }
.cat-intro { max-width: 640px; margin-bottom: 38px; }
.cat-intro-title { font-size: 22px; font-weight: 400; color: #1a1a1a; margin-bottom: 12px; }
.cat-intro-text { font-size: 14px; font-weight: 300; color: #666; line-height: 1.8; }

.collection-filters {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid #eee;
}
.filter-group { display: flex; align-items: center; gap: 10px; }
.filter-btn {
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: #555; padding: 9px 18px; border: 1px solid #ddd; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { border-color: #1a1a1a; color: #1a1a1a; }
.sort-select {
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  color: #555; border: 1px solid #ddd; padding: 9px 16px;
  appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E") no-repeat right 12px center;
  padding-right: 32px; outline: none;
}
.results-count { font-size: 12px; color: #888; }

.products-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* Product card */
.prod-card { cursor: pointer; }
.prod-card-media {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: #f7f4ef; margin-bottom: 16px;
}
.prod-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.prod-card:hover .prod-card-media img { transform: scale(1.06); }
.prod-card-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 14px;
  background: linear-gradient(to top, rgba(255,255,255,.97) 0%, transparent 100%);
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.prod-card:hover .prod-card-actions { transform: translateY(0); }
.prod-wish-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.1);
  color: #777; transition: color .2s, transform .2s;
}
.prod-wish-btn:hover { color: #c41e3a; transform: scale(1.1); }
.prod-wish-btn.wishlisted { color: #c41e3a; }
.prod-wish-btn.wishlisted path { fill: #c41e3a; stroke: #c41e3a; }
.prod-add-btn {
  font-size: 9.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  background: #1a1a1a; color: #fff; padding: 10px 18px; transition: background .2s;
}
.prod-add-btn:hover { background: #b8973a; }
.prod-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: #b8973a; color: #fff; padding: 5px 10px;
}
.prod-collection { display: block; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #b8973a; margin-bottom: 5px; }
.prod-name { font-size: 14px; font-weight: 400; color: #1a1a1a; margin-bottom: 5px; line-height: 1.45; }
.prod-material { font-size: 12px; font-weight: 300; color: #888; margin-bottom: 8px; }
.prod-price { font-size: 14px; font-weight: 500; color: #1a1a1a; }

/* ============================================================
   PRODUCT DETAIL PAGE  (Bulgari-style)
   ============================================================ */
.pdp-outer { margin-top: 58px; }

.pdp-breadcrumb-bar {
  padding: 16px 44px; border-bottom: 1px solid #eee;
  display: flex; align-items: center; gap: 7px;
}
.pdp-breadcrumb-bar a, .pdp-breadcrumb-bar span { font-size: 12px; color: #888; transition: color .2s; }
.pdp-breadcrumb-bar a:hover { color: #b8973a; }
.pdp-breadcrumb-bar .sep { color: #ccc; }

.pdp-wrap {
  display: grid;
  grid-template-columns: 1fr 460px;
  min-height: 82vh;
  align-items: start;
}

/* Gallery column */
.pdp-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: sticky; top: 58px;
  height: calc(100vh - 58px);
  overflow: hidden;
  background: #f7f4ef;
}
.pdp-thumbs-col {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 0 12px 12px; overflow-y: auto;
  background: #f0ece4;
}
.pdp-thumb {
  width: 64px; height: 80px; flex-shrink: 0; cursor: pointer;
  border: 2px solid transparent; transition: border-color .2s; overflow: hidden;
}
.pdp-thumb.active { border-color: #1a1a1a; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main-img {
  flex: 1; overflow: hidden; position: relative; cursor: zoom-in;
}
.pdp-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.pdp-main-img:hover img { transform: scale(1.04); }

/* Info column */
.pdp-info {
  padding: 44px 48px 80px;
  overflow-y: auto;
  border-left: 1px solid #eee;
}
.pdp-collection-tag {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #b8973a; margin-bottom: 12px;
}
.pdp-name {
  font-size: 22px; font-weight: 400; color: #1a1a1a;
  line-height: 1.35; margin-bottom: 8px;
}
.pdp-short-desc {
  font-size: 13.5px; font-weight: 300; color: #666; line-height: 1.7; margin-bottom: 18px;
}
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pdp-price { font-size: 20px; font-weight: 500; color: #1a1a1a; }
.pdp-price-note { font-size: 11px; font-weight: 300; color: #aaa; }
.pdp-ref { font-size: 11px; color: #bbb; font-weight: 300; margin-bottom: 28px; }

.pdp-divider { border: none; border-top: 1px solid #eee; margin: 22px 0; }

/* Option labels */
.pdp-option-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: #666; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between;
}
.pdp-option-label a { font-size: 10px; font-weight: 400; color: #888; border-bottom: 1px solid #ddd; padding-bottom: 1px; text-transform: none; letter-spacing: 0; }

/* Material swatches */
.pdp-materials { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.mat-swatch {
  padding: 8px 14px; border: 1px solid #ddd; cursor: pointer;
  font-size: 11px; font-weight: 400; color: #666; transition: all .2s;
}
.mat-swatch.active { border-color: #1a1a1a; color: #1a1a1a; font-weight: 500; }
.mat-swatch:hover { border-color: #888; }

/* Size selector */
.pdp-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.size-btn {
  font-size: 12px; font-weight: 400; letter-spacing: .04em;
  border: 1px solid #ddd; padding: 10px 18px; transition: all .2s; color: #555;
}
.size-btn.active, .size-btn:hover { border-color: #1a1a1a; color: #1a1a1a; }
.size-btn:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.pdp-size-guide { font-size: 11px; color: #888; border-bottom: 1px solid #ccc; padding-bottom: 1px; margin-bottom: 26px; display: inline-block; transition: color .2s; }
.pdp-size-guide:hover { color: #b8973a; }

/* Engraving / personalisation row */
.pdp-personal-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0;
  margin-bottom: 24px; cursor: pointer; transition: background .2s;
}
.pdp-personal-row:hover { background: #faf8f5; }
.pdp-personal-icon { color: #b8973a; }
.pdp-personal-text { flex: 1; }
.pdp-personal-title { font-size: 12px; font-weight: 500; color: #1a1a1a; }
.pdp-personal-sub { font-size: 11px; font-weight: 300; color: #888; }
.pdp-personal-row svg.chevron { color: #ccc; }

/* Action buttons */
.pdp-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.pdp-actions .btn { padding: 16px; font-size: 11px; letter-spacing: .15em; }

.pdp-wish-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 400; color: #555; cursor: pointer; transition: color .2s;
  margin-bottom: 28px;
}
.pdp-wish-row:hover { color: #c41e3a; }

/* Services strip */
.pdp-services { display: flex; gap: 0; border: 1px solid #eee; margin-bottom: 28px; }
.pdp-service {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 16px 8px; text-align: center; border-right: 1px solid #eee; font-size: 10px;
  font-weight: 400; color: #666; cursor: pointer; transition: background .2s;
}
.pdp-service:last-child { border-right: none; }
.pdp-service:hover { background: #faf8f5; }
.pdp-service svg { color: #b8973a; }

/* Accordion */
.pdp-accordion { margin-top: 4px; }
.acc-item { border-top: 1px solid #eee; }
.acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer;
  font-size: 13px; font-weight: 500; letter-spacing: .04em; color: #1a1a1a;
}
.acc-icon { font-size: 20px; color: #888; transition: transform .25s; line-height: 1; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { display: none; padding-bottom: 20px; }
.acc-body p { font-size: 13px; font-weight: 300; color: #555; line-height: 1.8; margin-bottom: 10px; }
.acc-body ul { list-style: disc; padding-left: 18px; }
.acc-body ul li { font-size: 13px; font-weight: 300; color: #555; line-height: 1.8; margin-bottom: 6px; }
.acc-item.open .acc-body { display: block; }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid #f0f0f0; }
.specs-table td { padding: 10px 0; font-size: 13px; vertical-align: top; }
.specs-table td:first-child { font-weight: 500; color: #1a1a1a; width: 46%; }
.specs-table td:last-child { font-weight: 300; color: #666; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { margin-top: 58px; padding: 44px 44px 90px; }
.cart-page-title { font-size: 26px; font-weight: 300; letter-spacing: .04em; margin-bottom: 36px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: start; }
.cart-items-list { border-top: 1px solid #eee; }
.cart-row {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 22px; padding: 26px 0; border-bottom: 1px solid #eee; align-items: start;
}
.cart-row-img { width: 110px; height: 140px; object-fit: cover; background: #f7f4ef; }
.cart-row-collection { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #b8973a; margin-bottom: 5px; }
.cart-row-name { font-size: 15px; font-weight: 400; color: #1a1a1a; margin-bottom: 5px; }
.cart-row-meta { font-size: 12px; font-weight: 300; color: #888; margin-bottom: 16px; }
.cart-row-qty { display: flex; align-items: center; gap: 13px; }
.qty-btn { width: 30px; height: 30px; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #555; transition: all .2s; }
.qty-btn:hover { border-color: #1a1a1a; color: #1a1a1a; }
.qty-num { font-size: 14px; font-weight: 400; min-width: 26px; text-align: center; }
.cart-row-right { text-align: right; }
.cart-row-price { font-size: 15px; font-weight: 500; color: #1a1a1a; margin-bottom: 10px; }
.cart-remove { font-size: 11px; font-weight: 400; color: #aaa; letter-spacing: .04em; transition: color .2s; text-transform: uppercase; }
.cart-remove:hover { color: #c41e3a; }
.cart-empty-msg { padding: 70px 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cart-empty-msg svg { margin-bottom: 18px; color: #ddd; }
.cart-empty-msg p { font-size: 16px; font-weight: 300; color: #888; margin-bottom: 28px; }

.cart-summary { background: #f7f4ef; padding: 30px; }
.cart-summary-title { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 300; color: #555; margin-bottom: 13px; }
.summary-row.total { font-size: 16px; font-weight: 600; color: #1a1a1a; border-top: 1px solid #ddd; padding-top: 18px; margin-top: 8px; }
.cart-note { font-size: 11px; font-weight: 300; color: #888; text-align: center; margin: 14px 0 22px; line-height: 1.6; }
.promo-row { display: flex; gap: 8px; margin-bottom: 20px; }
.promo-input { flex: 1; border: 1px solid #ddd; padding: 11px 14px; font-size: 12px; outline: none; transition: border-color .2s; font-family: 'Poppins', sans-serif; }
.promo-input:focus { border-color: #1a1a1a; }
.promo-apply { font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; background: #1a1a1a; color: #fff; padding: 11px 18px; transition: background .2s; }
.promo-apply:hover { background: #b8973a; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-header { padding: 20px 44px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.checkout-logo { font-size: 17px; font-weight: 700; letter-spacing: .3em; }
.checkout-steps { display: flex; align-items: center; gap: 0; }
.ck-step { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #aaa; }
.ck-step.active { color: #1a1a1a; }
.ck-step.done { color: #b8973a; }
.ck-step-num { width: 26px; height: 26px; border-radius: 50%; border: 1px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.ck-step.active .ck-step-num { border-color: #1a1a1a; background: #1a1a1a; color: #fff; }
.ck-step.done .ck-step-num { border-color: #b8973a; background: #b8973a; color: #fff; }
.ck-sep { width: 44px; height: 1px; background: #ddd; margin: 0 8px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 440px; min-height: calc(100vh - 100px); }
.checkout-form-side { padding: 44px 52px 90px; border-right: 1px solid #eee; }
.checkout-order-side { padding: 44px 40px; background: #f7f4ef; }
.ck-section-title { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #1a1a1a; margin-bottom: 22px; }
.ck-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 26px; }
.ck-form-grid.full { grid-template-columns: 1fr; }
.ck-field { display: flex; flex-direction: column; gap: 7px; }
.ck-field label { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #555; }
.ck-field input, .ck-field select, .ck-field textarea { border: 1px solid #ddd; padding: 12px 15px; font-size: 13px; font-weight: 300; outline: none; transition: border-color .2s; background: #fff; font-family: 'Poppins', sans-serif; }
.ck-field input:focus, .ck-field select:focus, .ck-field textarea:focus { border-color: #1a1a1a; }
.ck-field.span-2 { grid-column: 1 / -1; }
.payment-methods { display: flex; gap: 10px; margin-bottom: 22px; }
.pay-method { flex: 1; padding: 15px 8px; border: 1px solid #ddd; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 500; letter-spacing: .06em; color: #555; transition: all .2s; }
.pay-method.active { border-color: #1a1a1a; color: #1a1a1a; }
.pay-method:hover { border-color: #888; }
.ck-order-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; margin-bottom: 18px; }
.ck-order-item img { width: 72px; height: 92px; object-fit: cover; background: #ece8e0; }
.ck-order-name { font-size: 13px; font-weight: 400; color: #1a1a1a; margin-bottom: 4px; }
.ck-order-meta { font-size: 11px; font-weight: 300; color: #888; }
.ck-order-price { font-size: 13px; font-weight: 500; color: #1a1a1a; }
.ck-summary-rows { border-top: 1px solid #ddd; padding-top: 18px; margin-top: 18px; }
.ck-sum-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 300; color: #555; margin-bottom: 11px; }
.ck-sum-row.total { font-size: 15px; font-weight: 600; color: #1a1a1a; border-top: 1px solid #ddd; padding-top: 15px; margin-top: 6px; }
.secure-badge { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #888; margin-top: 16px; }

/* ============================================================
   HOMEPAGE-SPECIFIC
   ============================================================ */
/* Hero */
.split-hero { display: grid; grid-template-columns: 1fr 1fr; height: 100vh; min-height: 600px; }
.split-panel { position: relative; overflow: hidden; }
.split-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 8s ease; }
.split-panel:hover .split-img { transform: scale(1.04); }
.split-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,0) 70%); }
.split-content { position: absolute; bottom: 52px; left: 36px; right: 36px; z-index: 2; }
.split-title {
  font-size: 28px; font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 14px;
  animation: fadeUp .8s .2s both;
}
.star-icon { font-size: 14px; vertical-align: middle; color: #d4af70; }
.split-desc {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.85); line-height: 1.75;
  margin-bottom: 18px; max-width: 320px;
  animation: fadeUp .8s .4s both;
}
.split-content .cta-link { animation: fadeUp .8s .55s both; }
.cta-divider { width: 30px; height: 1px; background: rgba(255,255,255,.3); margin: 14px 0 10px; }
.cta-sub { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.6); font-style: italic; }
.slide-indicators { position: absolute; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 7px; z-index: 2; }
.slide-ind { width: 3px; height: 22px; background: rgba(255,255,255,.35); transition: background .3s, height .3s; border: none; }
.slide-ind.active { background: #fff; height: 30px; }

/* Mix & Match */
.mix-section { background: #fff; padding: 56px 0 50px; }
.mix-header { padding: 0 40px; margin-bottom: 30px; }
.mix-title { font-size: 26px; font-weight: 400; color: #1a1a1a; margin-bottom: 12px; }
.mix-sub { font-size: 14px; font-weight: 300; color: #555; line-height: 1.7; max-width: 580px; }
.mix-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.mix-card { display: block; background: #f5ede2; overflow: hidden; }
.mix-card:nth-child(even) { background: #ede8df; }
.mix-img-wrap { aspect-ratio: 1/1; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 28px; }
.mix-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s ease; }
.mix-card:hover .mix-img-wrap img { transform: scale(1.07); }
.mix-label { font-size: 12px; font-weight: 400; color: #1a1a1a; padding: 10px 16px 20px; background: inherit; }

/* Editorial full */
.editorial-full { position: relative; height: 58vh; min-height: 360px; overflow: hidden; }
.editorial-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform 8s ease; }
.editorial-full:hover .editorial-img { transform: scale(1.03); }
.editorial-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.2) 48%, transparent 72%); }
.editorial-content { position: absolute; bottom: 46px; left: 40px; z-index: 2; max-width: 420px; }
.editorial-h2 { font-size: 30px; font-weight: 300; color: #fff; margin-bottom: 10px; }
.editorial-p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 18px; }

/* Icons section */
.icons-section { padding: 64px 40px 68px; background: #fff; }
.icons-heading { font-size: 13px; font-weight: 600; letter-spacing: .3em; text-align: center; color: #1a1a1a; margin-bottom: 44px; text-transform: uppercase; }
.icons-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; max-width: 1260px; margin: 0 auto; }
.icon-card { cursor: pointer; }
.icon-img-wrap { display: block; aspect-ratio: 1/1; overflow: hidden; margin-bottom: 15px; }
.icon-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.icon-card:hover .icon-img-wrap img { transform: scale(1.06); }
.icon-name { font-size: 15px; font-weight: 400; color: #1a1a1a; margin-bottom: 7px; }
.icon-desc { font-size: 12px; font-weight: 300; color: #666; line-height: 1.7; }

/* Join section */
.join-section { padding: 64px 40px; background: #fff; border-top: 1px solid #eee; }
.join-inner { max-width: 520px; }
.join-title { font-size: 28px; font-weight: 300; color: #1a1a1a; margin-bottom: 12px; }
.join-sub { font-size: 13px; font-weight: 300; color: #555; line-height: 1.7; margin-bottom: 28px; }
.join-field { display: flex; align-items: center; border-bottom: 1px solid #1a1a1a; max-width: 380px; }
.join-input { flex: 1; background: none; border: none; font-size: 14px; font-weight: 300; color: #1a1a1a; padding: 10px 0; outline: none; font-family: 'Poppins', sans-serif; }
.join-input::placeholder { color: #aaa; }
.join-submit { color: #1a1a1a; padding: 8px 6px; transition: color .2s; }
.join-submit:hover { color: #b8973a; }
.join-appt { font-size: 12px; font-weight: 400; color: #1a1a1a; border-bottom: 1px solid #1a1a1a; padding-bottom: 1px; display: inline-block; margin-top: 18px; transition: color .2s, border-color .2s; }
.join-appt:hover { color: #b8973a; border-color: #b8973a; }

/* ============================================================
   MAISON PAGE
   ============================================================ */
.maison-page { margin-top: 58px; }
.maison-hero { position: relative; height: 90vh; overflow: hidden; }
.maison-hero img { width: 100%; height: 100%; object-fit: cover; }
.maison-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.38); }
.maison-hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; text-align: center; }
.maison-hero-title { font-size: 58px; font-weight: 300; color: #fff; letter-spacing: .06em; margin-bottom: 16px; }
.maison-hero-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.8); letter-spacing: .08em; }
.maison-section { padding: 84px 44px; }
.maison-section:nth-child(even) { background: #f7f4ef; }
.maison-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.maison-grid-2.reverse { direction: rtl; }
.maison-grid-2.reverse > * { direction: ltr; }
.maison-media img { width: 100%; height: 490px; object-fit: cover; transition: transform .8s ease; }
.maison-media:hover img { transform: scale(1.04); }
.maison-eyebrow { display: block; font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #b8973a; margin-bottom: 16px; }
.maison-title { font-size: 34px; font-weight: 300; color: #1a1a1a; line-height: 1.25; margin-bottom: 20px; }
.maison-body { font-size: 14px; font-weight: 300; color: #666; line-height: 1.9; margin-bottom: 30px; }
.maison-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 44px 0; }
.stat-item { text-align: center; }
.stat-num { font-size: 40px; font-weight: 300; color: #1a1a1a; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #888; }

/* ============================================================
   FRAGRANCE PAGE
   ============================================================ */
.fragrance-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.frag-card { position: relative; overflow: hidden; }
.frag-card img { width: 100%; height: 520px; object-fit: cover; transition: transform .65s ease; }
.frag-card:hover img { transform: scale(1.05); }
.frag-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.68) 0%, transparent 55%); }
.frag-card-info { position: absolute; bottom: 26px; left: 26px; z-index: 2; }
.frag-card-name { font-size: 20px; font-weight: 300; color: #fff; margin-bottom: 6px; }
.frag-card-sub { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.75); margin-bottom: 14px; }

/* ============================================================
   PAGE HERO (static pages)
   ============================================================ */
.page-hero { position: relative; height: 360px; overflow: hidden; margin-top: 58px; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero-fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 60%, transparent 100%); }
.page-hero-content { position: absolute; bottom: 40px; left: 44px; z-index: 2; }
.page-hero-eyebrow { display: block; font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.page-hero-title { font-size: 42px; font-weight: 300; color: #fff; letter-spacing: .04em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .icons-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp-wrap { grid-template-columns: 1fr 400px; }
  .pdp-info { padding: 36px 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .checkout-layout { grid-template-columns: 1fr 380px; }
  .maison-grid-2 { gap: 44px; }
}
@media (max-width: 900px) {
  .split-hero { height: 82vh; }
  .pdp-wrap { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; height: 70vw; grid-template-columns: 60px 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-order-side { display: none; }
  .maison-grid-2 { grid-template-columns: 1fr; }
  .maison-grid-2.reverse { direction: ltr; }
  .fragrance-featured { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 36px 24px; }
  .footer-services-card { width: 100%; height: 200px; margin-bottom: 32px; }
  .footer-cols-wrap { padding-left: 0; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .split-hero { grid-template-columns: 1fr; height: auto; }
  .split-left { height: 68vh; }
  .split-right { height: 42vh; }
  .mix-grid { grid-template-columns: repeat(2, 1fr); }
  .icons-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-full { height: 46vh; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-body, .collection-page, .maison-section { padding-left: 16px; padding-right: 16px; }
  .pdp-info { padding: 24px 18px; }
  .checkout-form-side { padding: 24px 18px; }
  .cart-page { padding-left: 18px; padding-right: 18px; }
  .footer-bar { flex-direction: column; gap: 14px; text-align: center; padding: 18px 16px; }
  .footer-main, .footer-newsletter-row { padding-left: 18px; padding-right: 18px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .breadcrumb { padding: 13px 18px; }
  .cat-hero-title, .page-hero-title { font-size: 30px; }
  .maison-hero-title { font-size: 36px; }
  .ck-form-grid { grid-template-columns: 1fr; }
  .fragrance-featured { grid-template-columns: 1fr; }
  .pdp-gallery { grid-template-columns: 50px 1fr; }
  .pdp-breadcrumb-bar { padding: 14px 18px; }
  .footer-newsletter-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-newsletter-form { min-width: unset; width: 100%; }
  .checkout-header { padding: 16px 18px; }
  .cat-tabs { padding: 0 18px; }
  .cat-hero-text { left: 20px; bottom: 28px; }
}
/* ============================================================
   ASTRIDI — Custom Styles
   Extracted from inline <style> blocks.
   Loaded after style.css on pages that need it.
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   SECTION 1 — SHARED COMPONENTS
   Used on multiple pages (index, product, etc.)
   ════════════════════════════════════════════════════════════ */

/* ── Account dropdown ── */
  .account-dropdown-wrap { position: relative; }
  .account-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: #fff; border: 1px solid #e8e8e8;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    min-width: 210px; z-index: 300;
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s;
  }
  .account-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .account-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 20px; font-size: 12px; font-weight: 400;
    letter-spacing: .06em; color: #333;
    border-bottom: 1px solid #f2f2f2;
    transition: color .2s, background .2s;
  }
  .account-dropdown a:last-child { border-bottom: none; }
  .account-dropdown a:hover { color: #b8973a; background: #faf9f7; }


/* ════════════════════════════════════════════════════════════
   SECTION 2 — HOME PAGE  (index.html)
   ════════════════════════════════════════════════════════════ */

/* ── Nav Drawer expanded ── */
  .nav-drawer { width: 380px; }
  .nav-section-label {
    font-size: 9px; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: #b8973a;
    padding: 18px 24px 6px; display: block;
  }
  .nav-sub-item a {
    padding: 10px 24px 10px 36px !important;
    font-size: 11px !important; font-weight: 400 !important;
    letter-spacing: .06em !important; color: #777 !important;
    border-bottom: none !important;
  }
  .nav-sub-item a:hover { color: #b8973a !important; padding-left: 42px !important; }
  .nav-list .has-sub { border-bottom: none; }

  /* ── Hero Video ── */
  .hero-video-section {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    overflow: hidden; background: #0a0a0a;
  }
  .hero-video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .hero-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.05) 100%);
    z-index: 1;
  }
  .hero-video-content {
    position: absolute; z-index: 2;
    bottom: 0; left: 0; top: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 56px 80px; max-width: 560px;
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-weight: 400; font-style: italic;
    letter-spacing: .14em; color: #d4af70; margin-bottom: 12px;
    animation: fadeUp .9s .1s both;
  }
  .hero-video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px; font-weight: 300; color: #fff;
    line-height: 1.08; margin-bottom: 18px; letter-spacing: .02em;
    animation: fadeUp .9s .2s both;
  }
  .hero-video-desc {
    font-size: 13px; font-weight: 300; color: rgba(255,255,255,.82);
    line-height: 1.85; margin-bottom: 26px; max-width: 380px;
    animation: fadeUp .9s .35s both;
  }
  .hero-video-content .cta-link { animation: fadeUp .9s .5s both; }
  .hero-mute-btn {
    position: absolute; bottom: 28px; right: 32px; z-index: 3;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.28); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .25s, transform .2s;
  }
  .hero-mute-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
  .hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column;
    align-items: center; gap: 7px; opacity: .65; animation: fadeIn 1s 1.3s both;
  }
  .hero-scroll-hint span { font-size: 8px; font-weight: 600; letter-spacing: .22em; color: #fff; }
  .scroll-dot { animation: scrollBounce 1.6s ease-in-out infinite; }
  @keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1}50%{transform:translateY(6px);opacity:.4} }

  /* ── Collections Scroll Bar ── */
  .collections-bar-section { background: #fff; padding: 56px 0 48px; border-bottom: 1px solid #eee; }
  .collections-bar-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; margin-bottom: 28px;
  }
  .collections-bar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 400; color: #1a1a1a; letter-spacing: .04em;
  }
  .collections-bar-cta {
    font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: #b8973a; border-bottom: 1px solid #b8973a; padding-bottom: 2px;
    transition: color .2s, letter-spacing .2s;
  }
  .collections-bar-cta:hover { color: #9a7c2e; letter-spacing: .22em; }
  .collections-scroll-wrap { position: relative; overflow: hidden; }
  .collections-scroll-track {
    display: flex; gap: 3px; overflow-x: auto; scroll-behavior: smooth;
    padding: 0 40px 16px; scrollbar-width: none;
  }
  .collections-scroll-track::-webkit-scrollbar { display: none; }
  .coll-tile {
    flex-shrink: 0; width: 220px; cursor: pointer; display: block;
    transition: transform .3s ease;
  }
  .coll-tile:hover { transform: translateY(-4px); }
  .coll-tile-img {
    aspect-ratio: 3/4; overflow: hidden; background: #f0ece4; margin-bottom: 10px;
  }
  .coll-tile-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .55s ease;
  }
  .coll-tile:hover .coll-tile-img img { transform: scale(1.06); }
  .coll-tile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-weight: 400; color: #1a1a1a; padding: 0 4px; letter-spacing: .03em;
  }
  .coll-tile-sub { font-size: 11px; font-weight: 300; color: #999; padding: 3px 4px 0; }
  .scroll-arrow {
    position: absolute; top: 42%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 1px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; color: #1a1a1a;
    transition: background .2s, color .2s, transform .2s;
  }
  .scroll-arrow:hover { background: #1a1a1a; color: #fff; transform: translateY(-50%) scale(1.08); }
  .scroll-arrow.left { left: 6px; }
  .scroll-arrow.right { right: 6px; }

  /* ── Grayscale Front Products ── */
  .front-products-section { background: #fafafa; padding: 68px 40px 52px; }
  .front-products-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400; color: #1a1a1a;
    text-align: center; margin-bottom: 6px; letter-spacing: .04em;
  }
  .front-products-sub {
    font-size: 12px; font-weight: 300; color: #999; letter-spacing: .06em;
    text-align: center; margin-bottom: 44px; text-transform: uppercase;
  }
  .front-products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
  }
  .fp-card { cursor: pointer; display: block; }
  .fp-card-media {
    aspect-ratio: 3/4; overflow: hidden;
    background: #f0ece4; margin-bottom: 14px;
  }
  .fp-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%);
    transition: transform .6s ease, filter .5s ease;
  }
  .fp-card:hover .fp-card-media img { transform: scale(1.05); filter: grayscale(20%); }
  .fp-card-cat {
    font-size: 10px; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; color: #b8973a; margin-bottom: 4px;
  }
  .fp-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 400; color: #1a1a1a; letter-spacing: .03em;
  }

  /* ── Prompt row ── */
  .prompt-row {
    text-align: center; padding: 60px 40px 56px;
    background: #fff; border-top: 1px solid #eee;
  }
  .prompt-row-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 300; color: #1a1a1a;
    margin-bottom: 22px; font-style: italic;
  }

  /* ── Mid-page video ── */
  .video-section { position: relative; width: 100%; overflow: hidden; }
  .video-wrapper {
    position: relative; width: 100%; height: 90vh; min-height: 520px;
    overflow: hidden; background: #0a0a0a;
  }
  .video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%);
    z-index: 1;
  }
  .video-content {
    position: absolute; z-index: 2; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 0 72px; max-width: 700px;
  }
  .video-eyebrow {
    display: block; font-size: 10px; font-weight: 600;
    letter-spacing: .28em; text-transform: uppercase;
    color: #d4af70; margin-bottom: 16px; animation: fadeUp .8s .1s both;
  }
  .video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; font-weight: 300; color: #fff;
    line-height: 1.1; margin-bottom: 18px; letter-spacing: .02em;
    animation: fadeUp .8s .25s both;
  }
  .video-subtitle {
    font-size: 13px; font-weight: 300; color: rgba(255,255,255,.82);
    line-height: 1.85; margin-bottom: 32px; max-width: 460px;
    animation: fadeUp .8s .4s both;
  }
  .video-content .btn { animation: fadeUp .8s .55s both; }
  .video-mute-btn {
    position: absolute; bottom: 24px; right: 72px; z-index: 3;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, transform .2s;
  }
  .video-mute-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }
  .video-play-btn {
    position: absolute; bottom: 24px; right: 126px; z-index: 3;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, transform .2s;
  }
  .video-play-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }
  .video-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: rgba(255,255,255,.2); z-index: 3;
  }
  .video-progress-fill { height: 100%; background: #d4af70; width: 0%; transition: width .5s linear; }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .front-products-grid { grid-template-columns: repeat(2, 1fr); }
    .video-wrapper { height: 70vh; }
    .video-content { padding: 0 36px; }
    .video-title { font-size: 38px; }
    .video-mute-btn { right: 20px; bottom: 18px; }
    .video-play-btn { right: 72px; bottom: 18px; }
    .collections-bar-header { padding: 0 20px; }
    .collections-scroll-track { padding: 0 20px 16px; }
    .front-products-section { padding: 48px 20px 40px; }
  }
  @media (max-width: 640px) {
    .hero-video-title { font-size: 38px; }
    .hero-video-content { padding: 0 24px 60px; max-width: 100%; }
    .front-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .video-wrapper { height: 60vh; min-height: 380px; }
    .video-content { padding: 0 20px; max-width: 100%; }
    .video-title { font-size: 30px; }
    .coll-tile { width: 160px; }
    .collections-bar-title { font-size: 22px; }
  }


/* ════════════════════════════════════════════════════════════
   SECTION 3 — PRODUCT DETAIL PAGE  (product.html)
   ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════
       PDP LAYOUT — Exact Bvlgari clone
       ════════════════════════════════════════════════════ */

    :root {
      --gold: #b8973a;
      --ink: #1a1a1a;
      --warm-bg: #f0ede8;   /* Bvlgari's warm grey image background */
      --panel-bg: #f5f3f0;  /* right panel / drawer background */
      --border: #e0dbd3;
      --muted: #888;
      --serif: 'Playfair Display', Georgia, serif;
    }

    body { background: #fff; padding-top: 0; }

    /* ── Breadcrumb — above hero ── */
    .pdp-breadcrumb {
      display: flex; align-items: center; gap: 6px;
      padding: 12px 20px;
      font-size: 11px; font-weight: 400; letter-spacing: .04em; color: var(--muted);
      background: var(--warm-bg);
    }
    .pdp-breadcrumb a { color: var(--muted); pointer-events: all; transition: color .2s; }
    .pdp-breadcrumb a:hover { color: var(--ink); }
    .pdp-breadcrumb .sep { color: #ccc; font-size: 10px; }

    /* ════ HERO: 2-col, image fills viewport height ════ */
    .pdp-hero {
      display: grid;
      grid-template-columns: 1fr 480px;
      min-height: calc(100vh - 58px);
      position: relative;
    }

    /* ── LEFT: Single big image viewer ── */
    .pdp-viewer {
      background: var(--warm-bg);
      position: relative;
      display: flex; flex-direction: column;
    }

    /* Main image fills remaining height */
    .pdp-viewer-main {
      flex: 1;
      position: relative;
      overflow: hidden;
      cursor: zoom-in;
      min-height: 520px;
    }
    .pdp-viewer-main img {
      width: 100%; height: 100%; object-fit: contain;
      object-position: center;
      transition: opacity .28s ease;
      display: block;
    }

    /* Prev / Next — top-left, circular grey buttons like Bvlgari */
    .pdp-viewer-nav {
      position: absolute; bottom: 28px; right: 20px;
      display: flex; gap: 8px; z-index: 4;
    }
    .pdp-viewer-btn {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(220,215,207,.9); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; color: #444;
    }
    .pdp-viewer-btn:hover { background: rgba(200,194,185,.95); }

    /* Tool icons — bottom-left column */
    .pdp-viewer-tools {
      position: absolute; bottom: 28px; left: 20px;
      display: flex; flex-direction: column; gap: 10px; z-index: 4;
    }
    .pdp-viewer-tool {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(220,215,207,.85); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; color: #555;
    }
    .pdp-viewer-tool:hover { background: rgba(200,194,185,.95); }

    /* Dot indicators — bottom-center */
    .pdp-viewer-dots {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 7px; align-items: center; z-index: 4;
    }
    .pdp-viewer-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(0,0,0,.18);
      transition: background .2s, transform .2s;
      cursor: pointer; border: none;
    }
    .pdp-viewer-dot.active {
      background: var(--ink);
      transform: scale(1.2);
    }

    /* ── RIGHT: Info panel ── */
    .pdp-panel {
      border-left: 1px solid var(--border);
      background: #fff;
      display: flex; flex-direction: column;
      position: sticky; top: 58px;
      max-height: calc(100vh - 58px);
      overflow-y: auto; scrollbar-width: none;
    }
    .pdp-panel::-webkit-scrollbar { display: none; }

    .pdp-panel-inner {
      padding: 32px 40px 40px;
      display: flex; flex-direction: column;
      flex: 1;
    }

    /* Breadcrumb inside panel (Bvlgari style) */
    .pdp-panel-breadcrumb {
      display: flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 400; color: var(--muted);
      margin-bottom: 12px;
    }
    .pdp-panel-breadcrumb a { color: var(--muted); transition: color .2s; }
    .pdp-panel-breadcrumb a:hover { color: var(--ink); }
    .pdp-panel-breadcrumb .sep { font-size: 10px; color: #ccc; }
    .pdp-panel-breadcrumb .wish-icon {
      margin-left: auto; cursor: pointer; color: #aaa; transition: color .2s;
    }
    .pdp-panel-breadcrumb .wish-icon:hover { color: #c41e3a; }

    /* Virtual try-on link */
    .pdp-try-on {
      font-size: 11.5px; font-weight: 400; color: var(--gold);
      letter-spacing: .02em; margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
      cursor: pointer; width: fit-content; transition: opacity .2s;
    }
    .pdp-try-on:hover { opacity: .75; }

    /* Product title */
    .pdp-title {
      font-family: var(--serif); font-size: 34px; font-weight: 400;
      color: var(--ink); line-height: 1.18; margin-bottom: 20px;
      letter-spacing: .01em;
    }

    /* Price row */
    .pdp-price-row {
      display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px;
    }
    .pdp-price {
      font-size: 20px; font-weight: 400; color: var(--ink);
    }
    .pdp-price-tax { font-size: 12px; font-weight: 300; color: var(--muted); }
    .pdp-price-note { font-size: 11.5px; font-weight: 300; color: var(--muted); margin-bottom: 16px; }

    /* Description teaser */
    .pdp-desc-teaser {
      font-size: 13px; font-weight: 300; color: #555; line-height: 1.75;
      margin-bottom: 4px;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .pdp-desc-teaser.expanded { -webkit-line-clamp: unset; }
    .pdp-read-more {
      font-size: 12px; font-weight: 500; color: var(--ink);
      cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
      margin-bottom: 20px; display: inline-block;
    }

    /* Find your size row */
    .pdp-size-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; border-top: 1px solid var(--border);
      cursor: pointer; transition: color .2s;
    }
    .pdp-size-row:hover .pdp-size-row-label { color: var(--gold); }
    .pdp-size-row-label {
      font-size: 12.5px; font-weight: 400; color: #444; transition: color .2s;
    }
    .pdp-size-row-value {
      font-size: 12.5px; font-weight: 400; color: var(--gold);
      display: flex; align-items: center; gap: 8px;
    }
    .pdp-size-row-value svg { color: #888; }

    /* View technical details */
    .pdp-tech-row {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 0; border-top: 1px solid var(--border);
      font-size: 12.5px; font-weight: 400; color: #444;
      cursor: pointer; transition: color .2s;
    }
    .pdp-tech-row:hover { color: var(--gold); }
    .pdp-tech-row svg { color: var(--gold); flex-shrink: 0; }

    /* CTA buttons */
    .pdp-cta-wrap {
      display: flex; flex-direction: column; gap: 10px;
      padding: 20px 0 0; border-top: 1px solid var(--border);
      margin-top: 4px;
    }
    .pdp-btn-add {
      width: 100%; background: var(--ink); color: #fff;
      font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 600;
      letter-spacing: .22em; text-transform: uppercase;
      padding: 19px 20px; border: none; cursor: pointer;
      transition: background .2s;
    }
    .pdp-btn-add:hover { background: var(--gold); }
    .pdp-btn-gift {
      width: 100%; background: #fff; color: var(--ink);
      font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 600;
      letter-spacing: .22em; text-transform: uppercase;
      padding: 18px 20px; border: 1.5px solid var(--ink); cursor: pointer;
      transition: all .2s;
    }
    .pdp-btn-gift:hover { background: var(--ink); color: #fff; }

    /* Service links */
    .pdp-service-links {
      display: flex; flex-direction: column; margin-top: 4px;
    }
    .pdp-svc-link {
      display: flex; align-items: center; gap: 14px;
      padding: 15px 0; border-top: 1px solid var(--border);
      font-size: 12px; font-weight: 400; color: #555;
      cursor: pointer; transition: color .2s;
      background: none; text-align: left; width: 100%;
      font-family: 'Poppins', sans-serif;
    }
    .pdp-svc-link:last-child { border-bottom: 1px solid var(--border); }
    .pdp-svc-link:hover { color: var(--gold); }
    .pdp-svc-link svg { flex-shrink: 0; color: #555; transition: color .2s; }
    .pdp-svc-link:hover svg { color: var(--gold); }

    /* ════ BELOW-FOLD: 3-col lifestyle images ════ */
    .pdp-lifestyle {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
    }
    .pdp-lifestyle-cell {
      aspect-ratio: 1/1.2;
      overflow: hidden;
      position: relative;
    }
    .pdp-lifestyle-cell img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      transition: transform .7s ease; display: block;
    }
    .pdp-lifestyle-cell:hover img { transform: scale(1.04); }
    /* Nav arrows over the lifestyle strip */
    .pdp-lifestyle-nav {
      position: absolute; top: 50%; right: 20px; transform: translateY(-50%);
      display: flex; gap: 8px; z-index: 2;
    }
    .pdp-lifestyle-cell:last-child .pdp-lifestyle-nav { display: flex; }
    .pdp-lifestyle-nav-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(220,215,207,.85); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: #444; transition: background .2s;
    }
    .pdp-lifestyle-nav-btn:hover { background: rgba(200,194,185,.95); }

    /* ════ DESCRIPTION + DETAILS accordion ════ */
    .pdp-info-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 420px;
      border-top: 1px solid var(--border);
    }
    .pdp-info-left {
      padding: 56px 48px 56px 64px;
      border-right: 1px solid var(--border);
      display: flex; align-items: center;
      overflow: hidden;
    }
    .pdp-info-left img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .pdp-info-right {
      padding: 56px 64px 56px 48px;
      display: flex; flex-direction: column; justify-content: center;
    }

    /* Accordion items */
    .acc-pdp { border-bottom: 1px solid var(--border); }
    .acc-pdp:first-child { border-top: 1px solid var(--border); }
    .acc-pdp-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0; cursor: pointer; user-select: none;
    }
    .acc-pdp-title {
      font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink);
      display: flex; align-items: center; gap: 8px;
    }
    .acc-pdp-plus {
      font-size: 18px; color: var(--muted); font-weight: 300;
      transition: transform .25s;
    }
    .acc-pdp.open .acc-pdp-plus { transform: rotate(45deg); color: var(--ink); }
    .acc-pdp-body {
      max-height: 0; overflow: hidden;
      transition: max-height .35s cubic-bezier(.22,1,.36,1);
    }
    .acc-pdp.open .acc-pdp-body { max-height: 600px; }
    .acc-pdp-content {
      padding-bottom: 24px;
      font-size: 13px; font-weight: 300; color: #555; line-height: 1.8;
    }
    .acc-pdp-content .read-more-acc {
      font-size: 12px; font-weight: 500; color: var(--ink);
      text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
      display: block; margin-top: 8px;
    }

    /* Details grid */
    .details-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
      margin-top: 12px;
    }
    .detail-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 300; color: #555;
    }
    .detail-item svg { color: var(--gold); flex-shrink: 0; }
    .detail-item strong { font-weight: 400; color: var(--ink); }

    /* ════ YOU MAY ALSO LIKE ════ */
    .pdp-also {
      padding: 72px 64px 80px;
      border-top: 1px solid var(--border);
    }
    .pdp-also-title {
      font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--ink);
      margin-bottom: 48px; letter-spacing: .02em;
    }
    /* pdp-also header with nav arrows */
    .pdp-also-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 40px;
    }
    .pdp-also-title { margin-bottom: 0 !important; }
    .pdp-also-nav { display: flex; gap: 10px; }
    .pdp-also-prev, .pdp-also-next {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid #e0e0e0; background: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: #444; transition: all .2s;
    }
    .pdp-also-prev:hover, .pdp-also-next:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
    /* Slider instead of grid */
    .pdp-also-slider {
      display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; -ms-overflow-style: none; gap: 1px;
    }
    .pdp-also-slider::-webkit-scrollbar { display: none; }
    .pdp-also-card {
      flex: 0 0 calc(33.333% - 1px); scroll-snap-align: start;
      cursor: pointer; background: var(--warm-bg);
      position: relative; overflow: hidden; text-decoration: none;
      display: block;
    }
    @media(max-width:900px) { .pdp-also-card { flex: 0 0 calc(50% - 1px); } }
    @media(max-width:600px) { .pdp-also-card { flex: 0 0 85%; } }
    .pdp-also-img {
      aspect-ratio: 1/1; overflow: hidden; background: var(--warm-bg);
      position: relative;
    }
    .pdp-also-img img {
      width: 100%; height: 100%; object-fit: contain;
      object-position: center;
      transition: transform .65s ease; display: block; padding: 24px;
    }
    .pdp-also-card:hover .pdp-also-img img { transform: scale(1.06); }
    .pdp-also-tag {
      position: absolute; top: 12px; left: 12px;
      font-size: 9.5px; font-weight: 500; color: var(--gold); letter-spacing: .08em;
    }
    .pdp-also-meta {
      padding: 16px 20px 24px; background: #fff;
    }
    .pdp-also-name {
      font-size: 14px; font-weight: 400; color: var(--ink); margin-bottom: 4px;
    }
    .pdp-also-price {
      font-size: 13px; font-weight: 300; color: var(--muted);
    }

    /* ════ LIFESTYLE EDITORIAL (two big images) ════ */
    .pdp-editorial-duo {
      display: grid; grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
    }
    .pdp-editorial-cell {
      aspect-ratio: 1/1.1; overflow: hidden; position: relative;
    }
    .pdp-editorial-cell img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .7s ease;
    }
    .pdp-editorial-cell:hover img { transform: scale(1.04); }
    .pdp-editorial-nav {
      position: absolute; top: 20px; right: 20px;
      display: flex; gap: 8px; z-index: 2;
    }
    .pdp-editorial-nav-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(220,215,207,.85); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; color: #444;
      transition: background .2s;
    }
    .pdp-editorial-nav-btn:hover { background: rgba(200,194,185,.95); }

    /* ════ GIFT BOX SECTION ════ */
    .pdp-gift {
      display: grid; grid-template-columns: 1fr 1fr;
      border-top: 1px solid var(--border);
      min-height: 460px;
    }
    .pdp-gift-img { overflow: hidden; }
    .pdp-gift-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .pdp-gift-content {
      padding: 60px 64px;
      display: flex; flex-direction: column; justify-content: center;
      background: #fff;
    }
    .pdp-gift-content .eyebrow {
      font-size: 9px; font-weight: 600; letter-spacing: .3em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
    }
    .pdp-gift-content h2 {
      font-family: var(--serif); font-size: 28px; font-weight: 400;
      color: var(--ink); line-height: 1.3; margin-bottom: 20px;
    }
    .pdp-gift-content p {
      font-size: 13px; font-weight: 300; color: #666; line-height: 1.85; margin-bottom: 32px;
    }
    .pdp-gift-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 9.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
      color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px;
      width: fit-content; transition: color .2s, border-color .2s;
    }
    .pdp-gift-cta:hover { color: var(--gold); border-color: var(--gold); }

    /* ════ EXCLUSIVE SERVICES ════ */
    .pdp-services {
      padding: 72px 64px;
      border-top: 1px solid var(--border);
    }
    .pdp-services-hdr {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px;
    }
    .pdp-services-hdr h2 {
      font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--ink);
    }
    .pdp-svc-nav { display: flex; gap: 8px; }
    .pdp-svc-nav-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(220,215,207,.6); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; color: #444;
      transition: background .2s;
    }
    .pdp-svc-nav-btn:hover { background: rgba(200,194,185,.95); }
    .pdp-svc-slider {
      display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; -ms-overflow-style: none; gap: 32px;
      padding-bottom: 4px;
    }
    .pdp-svc-slider::-webkit-scrollbar { display: none; }
    .pdp-svc-item { flex: 0 0 calc(33.333% - 22px); scroll-snap-align: start; min-width: 240px; }
    @media(max-width:900px){ .pdp-svc-item { flex: 0 0 calc(50% - 16px); } }
    @media(max-width:600px){ .pdp-svc-item { flex: 0 0 80%; } }
    .pdp-svc-img {
      aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px;
    }
    .pdp-svc-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .65s ease;
    }
    .pdp-svc-item:hover .pdp-svc-img img { transform: scale(1.04); }
    .pdp-svc-name {
      font-size: 15px; font-weight: 400; color: var(--ink); margin-bottom: 8px;
    }
    .pdp-svc-desc { font-size: 12px; font-weight: 300; color: #666; line-height: 1.75; }

    /* ════ PRODUCT VIDEOS ════ */
    .pdp-videos-section {
      padding: 80px 40px;
      background: #f9f7f4;
      max-width: 1400px;
      margin: 0 auto;
    }
    .pdp-videos-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .pdp-videos-title {
      font-family: var(--serif);
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 400;
      color: var(--ink);
      margin: 0 0 10px;
      letter-spacing: 0.02em;
    }
    .pdp-videos-sub {
      font-size: 14px;
      color: #888;
      letter-spacing: 0.04em;
      margin: 0;
    }
    .pdp-videos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .pdp-video-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .pdp-video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #111;
      border-radius: 2px;
    }
    .pdp-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .pdp-video-wrap.pdp-video-yt iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    .pdp-video-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.18);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .pdp-video-wrap:hover .pdp-video-overlay { opacity: 1; }
    .pdp-video-play-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
    }
    .pdp-video-meta { padding: 0 2px; }
    .pdp-video-label {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 4px;
    }
    .pdp-video-name {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 400;
      color: var(--ink);
      margin: 0;
    }
    @media (max-width: 900px) {
      .pdp-videos-grid { grid-template-columns: 1fr; }
      .pdp-videos-section { padding: 48px 20px; }
    }

    /* ════ COMMITMENT FULL-BLEED ════ */
    .pdp-commitment {
      position: relative; overflow: hidden;
      min-height: 58vh; display: flex; align-items: flex-end;
    }
    .pdp-commitment img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
    }
    .pdp-commitment-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
    }
    .pdp-commitment-text {
      position: relative; z-index: 1;
      padding: 56px 64px; max-width: 600px;
    }
    .pdp-commitment-text h2 {
      font-family: var(--serif); font-size: 36px; font-weight: 300;
      color: #fff; line-height: 1.2; margin-bottom: 16px;
    }
    .pdp-commitment-text p {
      font-size: 13px; font-weight: 300; color: rgba(255,255,255,.78);
      line-height: 1.85; margin-bottom: 28px;
    }
    .pdp-commitment-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 9.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
      color: #fff; border-bottom: 1px solid rgba(255,255,255,.55);
      padding-bottom: 4px; transition: border-color .2s;
    }
    .pdp-commitment-cta:hover { border-color: #fff; }

    /* ════ JOIN UNIVERSE ════ */
    .pdp-join {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; padding: 72px 64px;
      border-top: 1px solid var(--border);
      align-items: center;
    }
    .pdp-join-left h2 {
      font-family: var(--serif); font-size: 30px; font-weight: 400;
      color: var(--ink); margin-bottom: 14px;
    }
    .pdp-join-left p { font-size: 13px; font-weight: 300; color: #666; line-height: 1.8; }
    .pdp-join-right {}
    .pdp-join-form {
      display: flex; align-items: center; border-bottom: 1.5px solid var(--ink);
      margin-bottom: 12px;
    }
    .pdp-join-input {
      flex: 1; background: none; border: none; outline: none;
      font-size: 13px; font-weight: 300; color: var(--ink);
      padding: 12px 0; font-family: 'Poppins', sans-serif;
    }
    .pdp-join-input::placeholder { color: #bbb; }
    .pdp-join-submit {
      background: none; border: none; cursor: pointer;
      padding: 8px 4px; color: var(--ink); transition: color .2s;
    }
    .pdp-join-submit:hover { color: var(--gold); }
    .pdp-join-legal { font-size: 10px; font-weight: 300; color: #aaa; line-height: 1.6; }
    .pdp-join-legal a { color: #aaa; text-decoration: underline; }

    /* ════ STICKY BOTTOM BAR ════ */
    .pdp-sticky {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-top: 1px solid var(--border);
      padding: 14px 48px;
      display: flex; align-items: center; justify-content: space-between;
      z-index: 150;
      transform: translateY(100%); transition: transform .4s cubic-bezier(.22,1,.36,1);
    }
    .pdp-sticky.show { transform: translateY(0); }
    .pdp-sticky-left { display: flex; flex-direction: column; }
    .pdp-sticky-name { font-size: 14px; font-weight: 400; color: var(--ink); }
    .pdp-sticky-price { font-size: 12px; font-weight: 300; color: var(--muted); margin-top: 2px; }
    .pdp-sticky-btn {
      background: var(--ink); color: #fff;
      font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: .2em; text-transform: uppercase;
      padding: 15px 36px; border: none; cursor: pointer; transition: background .2s;
    }
    .pdp-sticky-btn:hover { background: var(--gold); }

    /* ════ SIZE DRAWER (right-slide) ════ */
    .size-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,.3);
      z-index: 400; opacity: 0; pointer-events: none; transition: opacity .35s;
    }
    .size-overlay.open { opacity: 1; pointer-events: all; }

    .size-drawer {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: 480px; max-width: 100vw;
      background: var(--panel-bg);
      z-index: 401;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .42s cubic-bezier(.22,1,.36,1);
      overflow-y: auto;
    }
    .size-drawer.open { transform: translateX(0); }

    .size-drawer-hdr {
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 36px 20px;
      position: sticky; top: 0; background: var(--panel-bg); z-index: 2;
    }
    .size-drawer-title {
      font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--ink);
    }
    .size-drawer-close {
      width: 40px; height: 40px; border: none; background: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: #555; transition: color .2s;
    }
    .size-drawer-close:hover { color: var(--ink); }

    .size-drawer-tabs {
      display: flex; padding: 0 36px;
      border-bottom: 1px solid var(--border);
    }
    .size-drawer-tab {
      font-size: 13px; font-weight: 400; color: #999; padding-bottom: 14px;
      margin-right: 28px; border: none; background: none; cursor: pointer;
      border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
    }
    .size-drawer-tab.active { color: var(--ink); border-bottom-color: var(--ink); }

    .size-drawer-panel { display: none; padding: 0 36px 40px; }
    .size-drawer-panel.active { display: block; }

    .size-drawer-note {
      font-size: 13px; font-weight: 300; color: #666; line-height: 1.7;
      padding: 24px 0; border-bottom: 1px solid var(--border);
    }

    .size-list { display: flex; flex-direction: column; }
    .size-list-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0; border-bottom: 1px solid var(--border);
      cursor: pointer; transition: background .15s;
    }
    .size-list-row:hover:not(.oos) { background: rgba(0,0,0,.02); margin: 0 -4px; padding-left: 4px; padding-right: 4px; }
    .size-list-row.oos { opacity: .38; cursor: default; }
    .size-list-row.selected .size-row-name { font-weight: 600; }
    .size-row-name { font-size: 16px; font-weight: 300; color: var(--ink); }
    .size-row-notify { font-size: 11.5px; font-weight: 300; color: #999; }
    .size-row-radio {
      width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid #c8c2ba;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all .2s;
    }
    .size-list-row.selected .size-row-radio {
      border-color: var(--ink); background: var(--ink);
    }
    .size-list-row.selected .size-row-radio::after {
      content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff;
    }

    /* Size guide table */
    .size-guide-section { padding: 28px 0; }
    .size-guide-heading { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
    .size-guide-sub { font-size: 13px; font-weight: 300; color: #666; line-height: 1.6; margin-bottom: 28px; }
    .size-guide-cat { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 16px; }
    .size-tbl { width: 100%; border-collapse: collapse; }
    .size-tbl th {
      text-align: left; font-size: 10.5px; font-weight: 500; color: #aaa;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 8px 0; border-bottom: 1px solid var(--border);
    }
    .size-tbl th:not(:first-child) { text-align: right; }
    .size-tbl td {
      padding: 18px 0; font-size: 15px; font-weight: 300; color: var(--ink);
      border-bottom: 1px solid var(--border);
    }
    .size-tbl td:not(:first-child) { text-align: right; }

    /* ════ LIGHTBOX ════ */
    .pdp-lb {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.93); z-index: 500;
      align-items: center; justify-content: center;
    }
    .pdp-lb.open { display: flex; animation: fadeIn .2s ease; }
    .pdp-lb img { max-width: 88vw; max-height: 88vh; object-fit: contain; animation: scaleIn .2s ease; }
    .pdp-lb-close {
      position: absolute; top: 24px; right: 28px;
      color: rgba(255,255,255,.7); font-size: 28px;
      cursor: pointer; background: none; border: none; line-height: 1; transition: color .2s;
    }
    .pdp-lb-close:hover { color: #fff; }
    .pdp-lb-prev, .pdp-lb-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
      color: #fff; width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .pdp-lb-prev { left: 24px; } .pdp-lb-next { right: 24px; }
    .pdp-lb-prev:hover, .pdp-lb-next:hover { background: rgba(255,255,255,.2); }
    .pdp-lb-count {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .1em;
    }

    /* ════ RESPONSIVE ════ */
    @media (max-width: 1100px) {
      .pdp-hero { grid-template-columns: 1fr 420px; }
      .pdp-panel-inner { padding: 28px 32px 36px; }
    }
    @media (max-width: 900px) {
      .pdp-hero { grid-template-columns: 1fr; min-height: auto; }
      .pdp-viewer { min-height: 70vw; }
      .pdp-viewer-main { min-height: 60vw; }
      .pdp-panel { position: static; max-height: none; border-left: none; border-top: 1px solid var(--border); }
      .pdp-panel-inner { padding: 28px 24px 36px; }
      .pdp-lifestyle { grid-template-columns: 1fr; }
      .pdp-lifestyle-cell { aspect-ratio: 4/3; }
      .pdp-info-section { grid-template-columns: 1fr; }
      .pdp-info-left { display: none; }
      .pdp-info-right { padding: 48px 24px; }
      .pdp-also-card { flex: 0 0 calc(50% - 1px); }
      .pdp-editorial-duo { grid-template-columns: 1fr; }
      .pdp-gift { grid-template-columns: 1fr; }
      .pdp-svc-slider { gap: 20px; }
      .pdp-join { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
      .pdp-also { padding: 48px 24px; }
      .pdp-services { padding: 48px 24px; }
      .pdp-commitment-text { padding: 40px 24px; }
      .size-drawer { width: 100%; }
    }


/* ============================================================
   ASTRIDI — Enhanced & New Page Styles
   ============================================================ */

/* ── Fav badge ── */
.fav-badge {
  position: absolute; top: 5px; right: 3px;
  width: 17px; height: 17px;
  background: #b8973a; color: #fff;
  font-size: 9px; font-weight: 700;
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}

/* ── Account btn ── */
.account-btn-wrap { position: relative; }
#accountDropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border: 1px solid #eee;
  width: 200px; box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 300; opacity: 0; transform: translateY(-8px);
  transition: opacity .2s, transform .2s; pointer-events: none;
}
#accountDropdown.open { opacity: 1; transform: none; pointer-events: all; }
#accountDropdown a {
  display: block; padding: 13px 18px;
  font-size: 12px; letter-spacing: .06em; color: #444;
  border-bottom: 1px solid #f5f5f5; transition: color .2s, background .2s;
}
#accountDropdown a:hover { color: #b8973a; background: #fafaf8; }

/* ── Size dropdown ── */
.size-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border: 1px solid #e0e0e0;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  z-index: 100; display: none;
}
.size-dropdown.open { display: block; }
.size-option {
  padding: 12px 16px; font-size: 13px; cursor: pointer;
  border-bottom: 1px solid #f5f5f5; transition: background .2s;
}
.size-option:hover { background: #fafaf8; color: #b8973a; }
#sizeRow { position: relative; }

/* ── Inner page hero ── */
.page-hero {
  background: #fafaf8;
  padding: 100px 40px 60px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300; letter-spacing: .03em;
  color: #1a1a1a; margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 14px; color: #777; letter-spacing: .05em;
  max-width: 600px; margin: 0 auto 24px;
}
.page-breadcrumb {
  font-size: 11px; letter-spacing: .1em; color: #999;
  text-transform: uppercase; margin-bottom: 20px;
}
.page-breadcrumb a { color: #999; transition: color .2s; }
.page-breadcrumb a:hover { color: #b8973a; }
.page-breadcrumb span { margin: 0 8px; }

/* ── Contact page ── */
.contact-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding: 80px 40px;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 300; margin-bottom: 24px;
}
.contact-info p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 16px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border: 1px solid #eee;
  transition: border-color .3s, box-shadow .3s;
}
.contact-card:hover { border-color: #b8973a; box-shadow: 0 4px 20px rgba(184,151,58,.08); }
.contact-card-icon { color: #b8973a; flex-shrink: 0; margin-top: 2px; }
.contact-card h4 { font-size: 13px; font-weight: 600; letter-spacing: .06em; margin-bottom: 6px; }
.contact-card p { font-size: 12px; color: #888; margin: 0; }
.contact-form-section { display: flex; flex-direction: column; }
.contact-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 300; margin-bottom: 32px;
}
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid #e0e0e0; background: #fff;
  font-family: 'Poppins', sans-serif; font-size: 13px; color: #1a1a1a;
  transition: border-color .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #b8973a; }
.form-input.error, .form-select.error, .form-textarea.error { border-color: #cc3333; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: #1a1a1a; color: #fff;
  padding: 16px 40px; font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  transition: background .3s, transform .2s; border: none; cursor: pointer;
}
.form-submit:hover { background: #b8973a; transform: translateY(-1px); }
.form-success { text-align: center; padding: 60px 20px; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 300; margin: 20px 0 12px; }
.form-success p { color: #777; font-size: 14px; }

/* ── Appointment page ── */
.appt-layout {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; padding: 80px 40px;
}
.appt-info h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 300; margin-bottom: 20px; }
.appt-info p { font-size: 13px; color: #777; line-height: 1.8; margin-bottom: 14px; }
.appt-perks { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.appt-perk { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: #555; }
.appt-perk svg { color: #b8973a; flex-shrink: 0; margin-top: 2px; }

/* ── Account page ── */
.account-page { max-width: 800px; margin: 0 auto; padding: 60px 40px; }
.account-login-box {
  border: 1px solid #eee; padding: 60px;
  text-align: center; max-width: 500px; margin: 0 auto;
}
.account-login-box h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.account-login-box p { font-size: 13px; color: #777; margin-bottom: 32px; line-height: 1.7; }
.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 16px; border: 1px solid #ddd;
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  background: #fff; transition: box-shadow .2s, border-color .2s; cursor: pointer;
}
.google-btn:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-color: #b8973a; }
.divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: #ccc; font-size: 12px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #eee; }
.or-login-form { text-align: left; }
.account-profile { display: none; }
.profile-card {
  display: flex; align-items: center; gap: 24px;
  padding: 32px; border: 1px solid #eee; margin-bottom: 40px;
}
.profile-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.profile-name { font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.profile-email { font-size: 13px; color: #888; }
.profile-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.profile-section {
  border: 1px solid #eee; padding: 24px;
  transition: border-color .3s;
}
.profile-section:hover { border-color: #b8973a; }
.profile-section h3 { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; color: #888; }
.profile-section p { font-size: 13px; color: #555; line-height: 1.7; }
.logout-btn {
  margin-top: 32px; padding: 14px 32px; border: 1px solid #1a1a1a;
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.logout-btn:hover { background: #1a1a1a; color: #fff; }

/* ── Favourites page ── */
.fav-page { max-width: 1200px; margin: 0 auto; padding: 40px; }
.fav-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 32px;
}
.fav-card { display: flex; flex-direction: column; }
.fav-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #f9f9f9; }
.fav-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.fav-card:hover .fav-card-img img { transform: scale(1.04); }
.fav-remove-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; background: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.1); cursor: pointer;
}
.fav-card-cat { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #999; margin-top: 14px; }
.fav-card-name { font-size: 14px; font-weight: 400; margin-top: 4px; }
.fav-card-price { font-size: 13px; color: #b8973a; font-weight: 500; margin-top: 6px; }
.fav-add-btn {
  margin-top: 12px; padding: 10px; border: 1px solid #1a1a1a;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: transparent; cursor: pointer; transition: all .25s;
}
.fav-add-btn:hover { background: #1a1a1a; color: #fff; }
.fav-empty, #cartEmpty {
  text-align: center; padding: 80px 20px;
}
.fav-empty svg, #cartEmpty svg { color: #ddd; margin: 0 auto 20px; }
.fav-empty h3, #cartEmpty h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.fav-empty p, #cartEmpty p { font-size: 14px; color: #888; }
.fav-empty a, #cartEmpty a {
  display: inline-block; margin-top: 24px; padding: 14px 36px;
  background: #1a1a1a; color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; transition: background .3s;
}
.fav-empty a:hover, #cartEmpty a:hover { background: #b8973a; }

/* ── FAQ page ── */
.faq-page { max-width: 800px; margin: 0 auto; padding: 60px 40px; }
.faq-section { margin-bottom: 48px; }
.faq-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #b8973a;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.faq-item { border-bottom: 1px solid #f0f0f0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: 14px; font-weight: 400; color: #1a1a1a;
  transition: color .2s;
}
.faq-q:hover { color: #b8973a; }
.faq-q-icon { transition: transform .3s; color: #b8973a; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  font-size: 13px; color: #666; line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── Maison / About page ── */
.maison-hero {
  height: 70vh; display: flex; align-items: flex-end;
  background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1600&q=85&auto=format&fit=crop') center/cover no-repeat;
  position: relative; padding: 60px;
}
.maison-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); }
.maison-hero-content { position: relative; color: #fff; max-width: 600px; }
.maison-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; margin-bottom: 16px; }
.maison-hero-content p { font-size: 15px; opacity: .85; line-height: 1.7; }
.maison-section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.maison-section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 300; margin-bottom: 24px; }
.maison-text { font-size: 15px; color: #555; line-height: 1.9; max-width: 700px; }
.maison-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-top: 60px;
}
.maison-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.maison-team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 40px;
}
.maison-team-card { text-align: center; }
.maison-team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin-bottom: 16px; }
.maison-team-name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.maison-team-role { font-size: 12px; color: #888; letter-spacing: .08em; }

/* ── Enhanced cart page ── */
.cart-layout {
  max-width: 1100px; margin: 0 auto; padding: 40px;
  display: grid; grid-template-columns: 1fr 340px; gap: 60px;
}
.cart-items-section h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 300; margin-bottom: 32px; }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto auto;
  gap: 20px; align-items: center; padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item-img { width: 100px; height: 100px; overflow: hidden; background: #f9f9f9; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.cart-item-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.cart-item-price { font-size: 14px; color: #b8973a; font-weight: 500; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 30px; height: 30px; border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: border-color .2s;
}
.qty-btn:hover { border-color: #b8973a; color: #b8973a; }
.qty-val { font-size: 14px; min-width: 20px; text-align: center; }
.cart-item-remove { color: #ccc; transition: color .2s; padding: 8px; }
.cart-item-remove:hover { color: #1a1a1a; }
.cart-summary {
  background: #fafaf8; padding: 32px; border: 1px solid #eee;
  position: sticky; top: 80px; align-self: start;
}
.cart-summary h3 { font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: #666; margin-bottom: 14px;
}
.cart-summary-row.total {
  font-size: 16px; font-weight: 600; color: #1a1a1a;
  border-top: 1px solid #eee; padding-top: 16px; margin-top: 8px;
}
.cart-checkout-btn {
  width: 100%; padding: 18px; margin-top: 24px;
  background: #1a1a1a; color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: background .3s;
}
.cart-checkout-btn:hover { background: #b8973a; }
.cart-continue-link { display: block; text-align: center; margin-top: 14px; font-size: 12px; color: #888; text-decoration: underline; }
.cart-continue-link:hover { color: #b8973a; }

/* ── Returns page ── */
.returns-page { max-width: 860px; margin: 0 auto; padding: 60px 40px; }
.returns-intro { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 48px; }
.returns-steps { display: flex; flex-direction: column; gap: 32px; margin-bottom: 60px; }
.returns-step { display: flex; gap: 24px; align-items: flex-start; }
.returns-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fafaf8; border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: #b8973a; flex-shrink: 0;
}
.returns-step h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.returns-step p { font-size: 13px; color: #777; line-height: 1.7; }
.returns-policy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.returns-policy-card { border: 1px solid #eee; padding: 28px; }
.returns-policy-card h4 { font-size: 13px; font-weight: 600; letter-spacing: .06em; margin-bottom: 12px; }
.returns-policy-card p { font-size: 12px; color: #777; line-height: 1.7; }

/* ── Services page ── */
.services-grid {
  max-width: 1100px; margin: 0 auto; padding: 60px 40px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-card {
  border: 1px solid #eee; padding: 40px 32px; text-align: center;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.service-card:hover { border-color: #b8973a; box-shadow: 0 8px 40px rgba(184,151,58,.1); transform: translateY(-4px); }
.service-card-icon { color: #b8973a; margin: 0 auto 24px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 300; margin-bottom: 14px; }
.service-card p { font-size: 13px; color: #777; line-height: 1.8; }

/* ── Privacy/Ethics page ── */
.policy-page { max-width: 820px; margin: 0 auto; padding: 60px 40px; }
.policy-page h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 300; margin: 40px 0 16px; }
.policy-page h2:first-child { margin-top: 0; }
.policy-page p { font-size: 14px; color: #555; line-height: 1.9; margin-bottom: 16px; }
.policy-page ul { margin: 12px 0 20px 24px; }
.policy-page ul li { font-size: 14px; color: #555; line-height: 1.8; list-style: disc; margin-bottom: 6px; }

/* ── Reveal animation fix ── */
.stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.stagger > *.revealed { opacity: 1 !important; transform: none !important; }

/* ── Form error ── */
.field-error { font-size: 11px; color: #cc3333; margin-top: 4px; }

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .contact-layout, .appt-layout { grid-template-columns: 1fr; gap: 40px; }
  .fav-grid { grid-template-columns: repeat(2, 1fr); }
  .maison-grid, .maison-team-grid, .returns-policy-grid, .services-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-qty, .cart-item-remove { grid-column: span 2; }
  .profile-sections { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 90px 20px 40px; }
  .faq-page, .returns-page, .policy-page, .account-page, .fav-page { padding: 40px 20px; }
  .contact-layout, .appt-layout { padding: 40px 20px; }
}

/* ── URL param-based filter activation ── */
/* Applied via JS on page load */

/* ── Listing page: hero ── */
.cat-hero { position:relative; height:50vh; overflow:hidden; }
.cat-hero img { width:100%; height:100%; object-fit:cover; }
.cat-hero-content {
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  color:#fff; padding:20px;
  background:linear-gradient(to bottom,rgba(0,0,0,.2),rgba(0,0,0,.5));
}
.cat-hero-content h1 {
  font-family:'Playfair Display',serif; font-size:clamp(32px,5vw,64px);
  font-weight:300; margin-bottom:12px;
}
.cat-hero-content p { font-size:15px; opacity:.85; }

/* ── Filter tabs ── */
.cat-tabs-wrap {
  display:flex; flex-wrap:wrap; gap:8px;
  padding:28px 40px; background:#fafaf8;
  border-bottom:1px solid #eee; position:sticky; top:58px; z-index:10;
}
.cat-tab {
  padding:9px 20px; border:1px solid #ddd; background:#fff;
  font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; transition:all .2s; color:#555;
}
.cat-tab:hover, .cat-tab.active { background:#1a1a1a; color:#fff; border-color:#1a1a1a; }

/* ── Product grid ── */
.prod-grid-section { padding:48px 40px; }
.prod-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
}
.prod-card { display:flex; flex-direction:column; }
.prod-card-img {
  position:relative; aspect-ratio:3/4; overflow:hidden; background:#f9f9f9;
}
.prod-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s cubic-bezier(.4,0,.2,1);
  filter:grayscale(30%);
}
.prod-card:hover .prod-card-img img { transform:scale(1.04); filter:none; }
.prod-fav-btn {
  position:absolute; top:12px; right:12px;
  width:32px; height:32px; background:rgba(255,255,255,.9);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .2s; box-shadow:0 2px 8px rgba(0,0,0,.1);
}
.prod-card:hover .prod-fav-btn { opacity:1; }
.prod-card-cat { font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:#999; margin-top:14px; }
.prod-card-name { font-size:14px; font-weight:400; margin-top:4px; color:#1a1a1a; }
.prod-card-price { font-size:13px; color:#b8973a; font-weight:500; margin-top:6px; }

/* ── Checkout ── */
.checkout-wrap { max-width:1100px; margin:0 auto; padding:40px; }
.checkout-logo-bar { text-align:center; padding:24px 0 40px; border-bottom:1px solid #eee; margin-bottom:40px; }
.checkout-layout { display:grid; grid-template-columns:1.2fr 0.8fr; gap:60px; }
.checkout-form-col { display:flex; flex-direction:column; }
.checkout-section-title { font-family:'Playfair Display',serif; font-size:20px; font-weight:300; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid #eee; }
.checkout-summary-col { background:#fafaf8; padding:32px; height:fit-content; position:sticky; top:80px; }

/* ── Responsive product grid ── */
@media (max-width:1100px){ .prod-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:780px){ .prod-grid{grid-template-columns:repeat(2,1fr);} .cat-tabs-wrap{padding:20px;} }
@media (max-width:480px){ .prod-grid{grid-template-columns:1fr 1fr;gap:16px;} }
@media (max-width:900px){ .checkout-layout{grid-template-columns:1fr;} }

/* ============================================================
   ASTRIDI — Responsive & New Page Additions
   ============================================================ */

/* ── Toast ── */
.astridi-toast{position:fixed;bottom:28px;left:50%;transform:translateX(-50%) translateY(20px);background:#1a1a1a;color:#fff;padding:12px 24px;font-size:13px;z-index:9998;opacity:0;transition:all .3s;pointer-events:none;white-space:nowrap;box-shadow:0 4px 20px rgba(0,0,0,.25);}
.astridi-toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
.astridi-toast.gold{background:#b8973a;}

/* ── Footer mobile ── */
@media(max-width:900px){
  .footer-main{grid-template-columns:1fr;padding:36px 24px;}
  .footer-cols-wrap{padding-left:0;padding-top:28px;}
  .footer-cols{grid-template-columns:1fr 1fr;}
  .footer-services-card{width:100%;height:200px;}
  .footer-newsletter-row{flex-direction:column;gap:16px;padding:28px 24px;}
  .footer-bar{flex-direction:column;gap:12px;padding:20px 24px;text-align:center;}
}
@media(max-width:600px){
  .footer-cols{grid-template-columns:1fr;}
  .footer-main{padding:24px 20px;}
}

/* ── Category hero mobile ── */
@media(max-width:768px){
  .cat-hero{height:260px;}
  .cat-hero-title{font-size:28px;}
  .cat-hero-text{left:20px;bottom:24px;}
  .cat-body{padding:24px 20px 60px;}
  .cat-tabs{padding:0 20px;}
}

/* ── PDP mobile ── */
@media(max-width:900px){
  .pdp-hero{grid-template-columns:1fr;}
  .pdp-panel{position:static;}
}

/* ── Announce bar ── */
.announce-bar + .site-header.always-solid{top:0;}

/* ── New page: high jewellery, sustainability, magazine, gift guide ── */
.page-hero{background:#f5f3f0;padding:44px 40px 36px;margin-top:58px;}
.page-breadcrumb{font-size:11px;color:#aaa;letter-spacing:.08em;margin-bottom:10px;display:flex;gap:6px;align-items:center;}
.page-breadcrumb a{color:#aaa;transition:color .2s;}
.page-breadcrumb a:hover{color:#b8973a;}
.page-hero-title{font-family:'Cormorant Garamond',serif;font-size:36px;font-weight:300;color:#1a1a1a;}
@media(max-width:640px){
  .page-hero{padding:28px 20px 20px;}
  .page-hero-title{font-size:26px;}
}