:root{
  --bg:#fcfaf7;
  --surface:#ffffff;
  --surface-2:#f5efe7;
  --text:#1f1f1f;
  --muted:#6b6b6b;
  --line:#e7dfd6;
  --line-strong:#d8d2ca;
  --line-soft:#ddd5cb;
  --accent:#1f1f1f;
  --accent-hover:#313131;
  --max:1180px;
  --radius:22px;
  --radius-sm:16px;
  --shadow:0 12px 35px rgba(0,0,0,.06);
  --shadow-soft:0 6px 18px rgba(0,0,0,.04);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
}

h1,h2,h3,h4{
  font-family:Georgia, "Times New Roman", serif;
  line-height:1.15;
  margin:0 0 .6rem;
  color:#151515;
}

p{
  margin:.3rem 0 1rem;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(252,250,247,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:74px;
  gap:16px;
  flex-wrap:wrap;
}

.brand-title{
  font-size:1.15rem;
  letter-spacing:.25em;
  font-weight:bold;
}

.brand-sub{
  font-size:.72rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.22em;
}

.nav-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.nav-links a{
  padding:10px 14px;
  border-radius:999px;
  color:#333;
  transition:.2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  background:var(--accent);
  color:#fff;
}

/* Hero */
.hero{
  padding:72px 0 38px;
  background:linear-gradient(180deg,#f7f0e6 0%, #fcfaf7 100%);
  border-bottom:1px solid var(--line);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:center;
}

.eyebrow,
.kicker{
  display:inline-block;
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.28em;
  color:var(--muted);
  margin-bottom:12px;
}

.hero h1{
  font-size:clamp(2.6rem,6vw,4.8rem);
  max-width:12ch;
}

.hero p{
  font-size:1.08rem;
  color:#4b4b4b;
  max-width:60ch;
}

.hero-visual{
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-image{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  border-radius:24px;
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  border:1px solid #e7dfd6;
}

.section-image-wrap{
  display:flex;
  justify-content:center;
}

.section-image{
  width:100%;
  max-width:900px;
  height:auto;
  display:block;
  border-radius:24px;
  box-shadow:0 14px 32px rgba(0,0,0,.08);
  border:1px solid #e7dfd6;
}

/* Buttons */
.button-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-block;
  padding:13px 22px;
  border-radius:999px;
  border:1px solid var(--accent);
  transition:.2s ease;
  font-weight:600;
  cursor:pointer;
  background:transparent;
  font:inherit;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  background:var(--accent-hover);
}

.btn-secondary{
  background:transparent;
}

.btn-secondary:hover{
  background:#f0ece6;
}

/* Layout */
.grid{
  display:grid;
  gap:22px;
}

.grid-2{
  grid-template-columns:repeat(2,1fr);
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.section{
  padding:70px 0;
}

.section h2{
  font-size:clamp(2rem,3vw,3.4rem);
}

.section-intro{
  max-width:760px;
  color:#545454;
}

/* Cards */
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}

.card.soft{
  background:var(--surface-2);
}

#customPerfumeSection .card{
  border:1px solid #ded6cc;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:var(--surface-2);
  color:#4b4b4b;
  font-size:.85rem;
}

/* Lists / tags */
.feature-list{
  padding-left:18px;
  margin:0;
}

.feature-list li{
  margin-bottom:10px;
}

.product-card h3{
  font-size:1.65rem;
}

.tag-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.tag{
  background:#f2f2f2;
  border-radius:999px;
  padding:7px 11px;
  font-size:.86rem;
  color:#555;
}

/* Product images */
.product-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
  margin-top:14px;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
  border:1px solid #e7dfd6;
}

/* Steps */
.steps{
  display:grid;
  gap:16px;
}

.step{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
}

.step-num{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
}

/* CTA */
.cta{
  background:var(--accent);
  color:#fff;
  border-radius:30px;
  padding:40px;
  box-shadow:var(--shadow);
}

.cta p{
  color:#dedede;
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:#f7f2eb;
  margin-top:40px;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  min-height:110px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-links a{
  background:#fff;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
}

/* Forms */
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

label{
  display:block;
  font-weight:600;
  font-size:.95rem;
  margin-bottom:7px;
}

input,
select,
textarea{
  width:100%;
  padding:14px 15px;
  border-radius:16px;
  border:1px solid #d8d2ca;
  background:#fffdfa;
  font:inherit;
  transition:.2s ease;
}

input:hover,
select:hover,
textarea:hover{
  border-color:#c6bbaf;
}

input:focus,
select:focus,
textarea:focus,
.choice-card:focus,
.module-toggle:focus,
.modal-close:focus{
  outline:none;
  border-color:#b8aea2;
  box-shadow:0 0 0 3px rgba(31,31,31,.08);
}

textarea{
  min-height:150px;
  resize:vertical;
}

.full{
  grid-column:1/-1;
}

.notice{
  background:#fff8e8;
  border:1px solid #efd7a2;
  color:#5e4a1c;
  padding:16px 18px;
  border-radius:var(--radius-sm);
}

.small{
  font-size:.9rem;
  color:#666;
}

/* Accordion buttons */
.module-toggle{
  width:100%;
  text-align:left;
  margin-top:12px;
  padding:12px 14px;
  border:1px solid var(--line-strong);
  background:#fff;
  border-radius:14px;
  font:inherit;
  font-weight:600;
  cursor:pointer;
  transition:.2s ease;
}

.module-toggle:hover{
  background:#f7f2eb;
}

.module-toggle.active-toggle{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.module-panel{
  display:none;
  margin-top:8px;
  margin-bottom:10px;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fcfaf7;
}

.module-panel.open{
  display:block;
}

.module-panel p{
  margin:0 0 10px;
}

.module-panel p:last-child{
  margin-bottom:0;
}

/* Info boxes */
.module-info-box{
  border:1px solid var(--line-soft);
  background:#fcfaf7;
  border-radius:var(--radius-sm);
  padding:14px 16px;
  color:#444;
}

.module-info-box p{
  margin:0 0 10px;
}

.module-info-box p:last-child{
  margin-bottom:0;
}

/* Summary card */
.summary-card{
  border:1px solid var(--line-strong);
  background:#fff;
  border-radius:18px;
  padding:18px 20px;
  color:#333;
  box-shadow:var(--shadow-soft);
}

.summary-card p{
  margin:0 0 10px;
}

.summary-card p:last-child{
  margin-bottom:0;
}

.summary-title{
  font-family:Georgia, "Times New Roman", serif;
  font-size:1.25rem;
  margin-bottom:14px;
  color:#151515;
}

.summary-card p:first-of-type{
  font-size:1.05rem;
  color:#1f1f1f;
}

/* Choice cards */
.choice-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.choice-card{
  padding:16px 18px;
  border:1px solid #d8d2ca;
  border-radius:18px;
  background:#fffdfa;
  text-align:left;
  font:inherit;
  font-weight:600;
  color:#2e2e2e;
  cursor:pointer;
  transition:.22s ease;
  box-shadow:0 2px 8px rgba(0,0,0,.02);
}

.choice-card:hover{
  background:#f7f1e8;
  border-color:#cfc4b7;
  transform:translateY(-1px);
}

.choice-card.active-choice{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

/* Modals */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:1000;
}

.modal-overlay.open{
  display:flex;
}

.modal-card{
  width:min(760px, 100%);
  max-height:90vh;
  overflow:auto;
  background:#fffdfa;
  border:1px solid #ddd5cb;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  padding:28px;
  position:relative;
}

.modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#f2ece4;
  color:#1f1f1f;
  font-size:1.4rem;
  cursor:pointer;
}

.modal-close:hover{
  background:#e8dfd4;
}

.modal-content-block{
  margin-top:16px;
}

.modal-content-block p{
  margin:0 0 12px;
  line-height:1.7;
}

.modal-content-block p:last-child{
  margin-bottom:0;
}

.modal-perfume-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
  margin:0 0 18px;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
  border:1px solid #e7dfd6;
}

/* Responsive */
@media (max-width:980px){
  .hero-grid,
  .grid-3,
  .grid-2,
  .form-grid,
  .choice-grid{
    grid-template-columns:1fr;
  }

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

.signature-card{
  border-color:#d7c5ac;
  background:linear-gradient(180deg,#fffdfa 0%, #fbf6ef 100%);
}

optgroup{
  font-style:normal;
}


/* Trust / launch readiness */
.info-band{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.info-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow-soft);
}

.info-item h3{
  font-size:1.2rem;
  margin-bottom:10px;
}

.info-item p{
  margin:0;
  color:#4d4d4d;
}

.mini-kicker{
  display:inline-block;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.2em;
  color:var(--muted);
  margin-bottom:10px;
}

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

.trust-card{
  background:#fffdfa;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.trust-card h3{
  font-size:1.2rem;
  margin-bottom:10px;
}

.trust-card p{
  margin:0;
  color:#4d4d4d;
}

.step-panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.note-list{
  padding-left:18px;
  margin:0;
}

.note-list li{
  margin-bottom:10px;
  color:#444;
}

.inline-highlight{
  font-weight:600;
  color:#1f1f1f;
}

.contact-detail{
  font-size:1.02rem;
  margin-bottom:12px;
}

.contact-detail strong{
  display:inline-block;
  min-width:130px;
}

@media (max-width:980px){
  .info-band,
  .trust-grid{
    grid-template-columns:1fr;
  }
}


/* Marketing readiness */
.story-callout{font-size:1.02rem;color:#444;}


/* Step 6 visual polish */
.section-soft{
  background:linear-gradient(180deg,#fbf6ef 0%, #fcfaf7 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid rgba(231,223,214,.7);
}

.hero-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.hero-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #d9cfbf;
  background:rgba(255,255,255,.72);
  color:#4b4338;
  font-size:.88rem;
  box-shadow:var(--shadow-soft);
}

.hero-note-card{
  margin-top:18px;
  max-width:560px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,253,250,.82);
  border:1px solid #e3d8c8;
  box-shadow:var(--shadow-soft);
}

.hero-note-card p{
  margin:0;
  color:#4a433a;
}

.premium-panel{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:start;
  background:linear-gradient(135deg,#fffdf9 0%, #f7efe5 100%);
  border:1px solid #e4d8c9;
  border-radius:28px;
  padding:30px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.premium-points{
  display:grid;
  gap:14px;
}

.premium-point{
  background:rgba(255,255,255,.78);
  border:1px solid #eadfce;
  border-radius:18px;
  padding:16px 18px;
}

.premium-point strong{
  display:block;
  font-family:Georgia, "Times New Roman", serif;
  margin-bottom:4px;
  color:#1f1f1f;
}

.premium-point span{
  color:#564f46;
  font-size:.96rem;
}

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

.discover-card{
  background:#fff;
  border:1px solid #e7dfd6;
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.discover-card h3{
  font-size:1.28rem;
}

.discover-card p{
  margin-bottom:0;
  color:#4d4d4d;
}

.family-nav-wrap{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.family-nav{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.family-nav a{
  display:inline-block;
  padding:11px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid #ddd3c6;
  box-shadow:var(--shadow-soft);
  transition:.2s ease;
}

.family-nav a:hover{
  background:#1f1f1f;
  color:#fff;
  border-color:#1f1f1f;
}

.signature-card .badge{
  background:#efe3d1;
  color:#4b3b28;
}

.signature-card h3{
  letter-spacing:.01em;
}

.cta{
  background:linear-gradient(135deg,#1f1f1f 0%, #2e2a26 100%);
}

@media (max-width:980px){
  .premium-panel,
  .discover-grid{
    grid-template-columns:1fr;
  }
}


/* Launch readiness */
.launch-checklist{
  display:grid;
  gap:14px;
  margin-top:30px;
}

.launch-item{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:16px;
  align-items:start;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fffdfa;
  box-shadow:var(--shadow-soft);
}

.launch-item strong{
  font-family:Georgia, "Times New Roman", serif;
  color:#151515;
}

.launch-item span{
  color:#4a4a4a;
}

@media (max-width:980px){
  .launch-item{
    grid-template-columns:1fr;
  }
}


.brand-link{display:inline-flex;align-items:center;}
.brand-logo{display:block;width:220px;max-width:100%;height:auto;border-radius:8px;}
.footer-brand-block{display:flex;flex-direction:column;gap:10px;}
.footer-brand-logo{display:block;width:190px;max-width:100%;height:auto;border-radius:8px;}
.brand-emblem-panel{display:flex;justify-content:center;align-items:center;background:linear-gradient(180deg,#14110d 0%, #050505 100%);border-radius:28px;padding:26px;border:1px solid #2d2419;box-shadow:0 18px 42px rgba(0,0,0,.18);}
.brand-emblem-image{display:block;width:100%;max-width:380px;height:auto;border-radius:18px;}
.brand-system-grid{gap:28px;}
@media (max-width:980px){
  .brand-logo{width:190px;}
  .footer-brand-logo{width:170px;}
}

/* Publish-ready additions */
.contact-detail a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(255,255,255,0.25);}
.contact-detail a:hover{text-decoration:none;border-bottom-color:currentColor;}
.notice strong{color:inherit;}


.foeuxs-panel { border:1px solid rgba(186,149,76,0.35); background:linear-gradient(135deg, rgba(35,35,35,0.98), rgba(58,45,25,0.98)); color:#efd79e; }
.foeuxs-panel .kicker, .foeuxs-panel h2 { color:#f2cf7a; }
.foeuxs-panel .story-callout, .foeuxs-panel p, .foeuxs-panel span { color:#ead8ae; }
.foeuxs-panel strong { color:#f3d489; }
.foeuxs-panel .premium-point { background:rgba(17,17,17,0.38); border:1px solid rgba(192,192,192,0.26); }
.foeuxs-panel .premium-point span { color:#efe1bf; }
.foeuxs-filter-bar { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:26px; }
.collection-filter { border:1px solid #c7a45b; background:#fff; color:#2b2b2b; padding:10px 16px; border-radius:999px; cursor:pointer; font-weight:600; }
.collection-filter.active { background:#1f1f1f; color:#f4efe6; border-color:#1f1f1f; }
.product-card { position:relative; }
.foeuxs-badge { position:absolute; top:14px; right:14px; z-index:2; padding:6px 10px; border-radius:999px; background:#1f1f1f; color:#f3dfb2; border:1px solid #b99550; font-size:0.76rem; letter-spacing:.04em; text-transform:uppercase; }
.modal-badge { position:static; display:inline-block; margin-bottom:12px; }
.modal-topline { margin-bottom:10px; color:#6f5a34; }
.detail-toggle-row { display:flex; gap:10px; flex-wrap:wrap; margin:18px 0 14px; }
.detail-toggle { border:1px solid #c7a45b; background:#fff; color:#2b2b2b; padding:10px 14px; border-radius:999px; cursor:pointer; font-weight:600; }
.detail-toggle.active { background:#1f1f1f; color:#f4efe6; border-color:#1f1f1f; }
.detail-view { display:none; }
.detail-view.active { display:block; }
@media (max-width:700px){ .foeuxs-badge{ position:static; display:inline-block; margin-bottom:10px; } }


.collection-choice-section { padding-top: 24px; }
.collection-choice-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,236,0.98));
  border: 1px solid rgba(199,164,91,0.28);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 16px 40px rgba(20,20,20,0.06);
}
.collection-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.collection-choice-card {
  appearance: none;
  border: 1px solid rgba(199,164,91,0.34);
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.collection-choice-card:hover,
.collection-choice-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(31,31,31,0.1);
  border-color: #c7a45b;
  outline: none;
}
.choice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(199,164,91,0.12);
  color: #5a4828;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.collection-choice-card h3 { margin: 16px 0 10px; }
.collection-choice-card p { margin: 0; color: #4a4a4a; }
.choice-meta {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: #1f1f1f;
}
.foeuxs-choice {
  background: linear-gradient(180deg, #1f1f1f, #2b2418);
  color: #f5efe4;
  border-color: rgba(199,164,91,0.52);
}
.foeuxs-choice p,
.foeuxs-choice .choice-meta { color: #f5efe4; }
.foeuxs-choice .choice-badge {
  background: rgba(199,164,91,0.18);
  color: #f3dfb1;
}
.collection-choice-actions {
  margin-top: 24px;
  justify-content: center;
}


.perfume-page-luxury-note {
  margin-top: 14px;
  color: #6b5732;
  font-weight: 600;
}

.product-card[data-collection="foeuxs"] {
  background: linear-gradient(180deg, #181512 0%, #241d15 58%, #2d2418 100%);
  color: #f7f0e4;
  border: 1px solid rgba(199,164,91,0.6);
  box-shadow: 0 18px 38px rgba(10, 10, 10, 0.18);
}
.product-card[data-collection="foeuxs"] h3,
.product-card[data-collection="foeuxs"] p,
.product-card[data-collection="foeuxs"] .small,
.product-card[data-collection="foeuxs"] strong {
  color: #f7f0e4;
}
.product-card[data-collection="foeuxs"] .badge {
  background: rgba(199,164,91,0.15);
  color: #f3dfb1;
  border: 1px solid rgba(199,164,91,0.42);
}
.product-card[data-collection="foeuxs"] .tag {
  background: rgba(243,223,177,0.1);
  color: #f7e7c2;
  border: 1px solid rgba(199,164,91,0.22);
}
.product-card[data-collection="foeuxs"] .btn.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: #f7f0e4;
  border-color: rgba(199,164,91,0.52);
}
.product-card[data-collection="foeuxs"] .btn.btn-secondary:hover,
.product-card[data-collection="foeuxs"] .btn.btn-secondary:focus-visible {
  background: rgba(255,255,255,0.12);
}
.product-card[data-collection="foeuxs"] .btn.btn-primary {
  background: linear-gradient(135deg, #d1aa63, #b98e43);
  color: #17130f;
  border-color: #d1aa63;
}
.product-card[data-collection="foeuxs"] .btn.btn-primary:hover,
.product-card[data-collection="foeuxs"] .btn.btn-primary:focus-visible {
  filter: brightness(1.04);
}
.product-card[data-collection="foeuxs"] .product-image {
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

body[data-page="perfumes"][data-active-collection="foeuxs"] .foeuxs-intro-section {
  background: linear-gradient(180deg, #120f0b 0%, #1b1611 100%);
}
body[data-page="perfumes"][data-active-collection="foeuxs"] .foeuxs-filter-bar {
  margin-top: 30px;
}
body[data-page="perfumes"][data-active-collection="foeuxs"] .collection-filter[data-filter="foeuxs"] {
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
body[data-page="perfumes"][data-active-collection="foeuxs"] .section[id$="-signatures"] .container > .kicker,
body[data-page="perfumes"][data-active-collection="foeuxs"] .section[id$="-signatures"] .container > h2 {
  color: #201911;
}

@media (max-width:700px){
  .product-card[data-collection="foeuxs"] {
    padding-top: 22px;
  }
}
@media (max-width: 800px) {
  .collection-choice-panel { padding: 24px; }
  .collection-choice-grid { grid-template-columns: 1fr; }
}


/* FOEUXS dramatic precious-metal entrance */
.foeuxs-intro-section {
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.18), transparent 34%),
    linear-gradient(180deg, #22170b 0%, #120d08 54%, #0f0f11 100%);
  border-top: 1px solid rgba(212,175,55,0.38);
  border-bottom: 1px solid rgba(192,192,198,0.28);
}

.foeuxs-hero-banner {
  position: relative;
  overflow: hidden;
  padding: 42px 34px 36px;
  border-radius: 30px;
  border: 1px solid rgba(212,175,55,0.44);
  background:
    linear-gradient(135deg, rgba(255,224,130,0.22) 0%, rgba(155,111,25,0.18) 18%, rgba(46,28,9,0.96) 42%, rgba(18,18,20,0.98) 100%),
    linear-gradient(180deg, #2a1a08 0%, #141114 100%);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,231,173,0.18),
    inset 0 -1px 0 rgba(192,192,198,0.10);
}

.foeuxs-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,221,122,0.28), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,0.08), transparent 18%),
    linear-gradient(120deg, transparent 0%, rgba(255,240,198,0.08) 22%, transparent 38%);
  pointer-events: none;
}

.foeuxs-hero-topline,
.foeuxs-hero-banner h2,
.foeuxs-hero-banner p {
  position: relative;
  z-index: 1;
}

.foeuxs-hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,223,133,0.18), rgba(192,192,198,0.16));
  border: 1px solid rgba(255,223,133,0.30);
  color: #f7d982;
  font-size: 0.80rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.foeuxs-hero-banner h2 {
  margin-top: 18px;
  color: #fff4d6;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-shadow: 0 2px 18px rgba(0,0,0,0.24);
}

.foeuxs-hero-copy {
  max-width: 760px;
  color: #f4ead4;
  font-size: 1.05rem;
}

.foeuxs-luxury-divider {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foeuxs-luxury-divider::before,
.foeuxs-luxury-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,214,222,0.85), transparent);
}

.foeuxs-luxury-divider span {
  width: 70px;
  height: 70px;
  margin: 0 18px;
  border-radius: 50%;
  border: 1px solid rgba(214,214,222,0.5);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,242,206,0.95), rgba(224,192,93,0.55) 34%, rgba(120,120,132,0.48) 68%, rgba(255,255,255,0.12) 100%);
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.03),
    0 0 24px rgba(212,175,55,0.22);
}

.foeuxs-intro-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.foeuxs-intro-card {
  border-radius: 22px;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(255,244,214,0.12), rgba(255,255,255,0.05));
  border: 1px solid rgba(214,214,222,0.18);
  box-shadow: inset 0 1px 0 rgba(255,235,180,0.12);
  backdrop-filter: blur(4px);
}

.foeuxs-intro-label {
  display: inline-block;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(214,214,222,0.32);
  color: #f7d982;
  font-size: 0.80rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.foeuxs-intro-card p {
  margin: 0;
  color: #f3ebde;
}

@media (max-width: 980px) {
  .foeuxs-intro-block {
    grid-template-columns: 1fr;
  }

  .foeuxs-hero-banner {
    padding: 34px 24px 30px;
  }

  .foeuxs-luxury-divider span {
    width: 56px;
    height: 56px;
    margin: 0 12px;
  }
}


/* Custom perfume builder */
.builder-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
  gap:22px;
  align-items:start;
}

.builder-options{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:16px;
}

.builder-option{
  padding:16px 18px;
  border:1px solid #d8d2ca;
  border-radius:18px;
  background:#fffdfa;
  text-align:left;
  font:inherit;
  font-weight:600;
  color:#2e2e2e;
  cursor:pointer;
  transition:.22s ease;
  box-shadow:0 2px 8px rgba(0,0,0,.02);
}

.builder-option:hover{
  background:#f7f1e8;
  border-color:#cfc4b7;
  transform:translateY(-1px);
}

.builder-option.active-choice,
.builder-option.builder-selected{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.custom-builder-summary{
  position:sticky;
  top:96px;
}

#modifierLimitNote.limit-reached{
  color:#8a5b00;
  font-weight:700;
}

@media (max-width:980px){
  .builder-grid,
  .builder-options{
    grid-template-columns:1fr;
  }

  .custom-builder-summary{
    position:static;
  }
}


/* Luxury polish pass */
:root{
  --lux-gold:#b79253;
  --lux-gold-soft:#d6c09a;
  --lux-deep:#161412;
  --lux-cream:#fffdf9;
}

body{
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  background:
    radial-gradient(circle at top, rgba(215,194,154,0.10), transparent 24%),
    linear-gradient(180deg,#fbf8f3 0%, #fcfaf7 100%);
}

h1,h2,h3,h4{
  letter-spacing:.01em;
}

p, li, label, input, select, textarea, .small{
  color:#47433e;
}

.site-header{
  background:rgba(252,250,247,.86);
  border-bottom:1px solid rgba(183,146,83,.16);
  box-shadow:0 8px 24px rgba(22,20,18,.04);
}

.nav{
  min-height:80px;
}

.brand-logo{
  width:210px;
  height:auto;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.04));
}

.nav-links{
  gap:8px;
}

.nav-links a{
  position:relative;
  padding:10px 13px;
  color:#433f3a;
  transition:background-color .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.nav-links a:hover{
  transform:translateY(-1px);
  background:rgba(183,146,83,.10);
  color:#1f1a15;
}

.nav-links a.active{
  background:linear-gradient(180deg,#2c2824 0%, #171514 100%);
  color:#fff8ee;
  box-shadow:0 10px 24px rgba(22,20,18,.14);
}

.hero{
  background:
    radial-gradient(circle at top left, rgba(214,192,154,0.20), transparent 28%),
    linear-gradient(180deg,#f7f0e6 0%, #fcfaf7 100%);
}

.hero::after{
  content:"";
  display:block;
  height:1px;
  margin-top:38px;
  background:linear-gradient(90deg, transparent, rgba(183,146,83,.35), transparent);
}

.hero-image, .section-image{
  box-shadow:0 28px 56px rgba(0,0,0,.12);
  border:1px solid rgba(183,146,83,.16);
}

.eyebrow,.kicker{
  color:#836235;
  font-weight:700;
}

.btn{
  letter-spacing:.01em;
  transition:transform .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(22,20,18,.10);
}

.btn-primary{
  background:linear-gradient(180deg,#2a2521 0%, #151313 100%);
  border-color:#151313;
  color:#fff8ee;
}

.btn-primary:hover{
  background:linear-gradient(180deg,#3a332d 0%, #1c1917 100%);
}

.btn-secondary{
  border-color:rgba(183,146,83,.42);
  color:#3d342c;
  background:rgba(255,253,249,.72);
}

.btn-secondary:hover{
  background:rgba(183,146,83,.10);
  border-color:rgba(183,146,83,.60);
}

button[disabled], .btn[disabled], .btn.is-disabled{
  opacity:1;
  cursor:not-allowed;
  background:linear-gradient(180deg,#d9d1c6 0%, #ccc2b5 100%) !important;
  border-color:#c1b5a6 !important;
  color:#6f665d !important;
  box-shadow:none !important;
  transform:none !important;
}

.card, .discover-card, .trust-card, .choice-card, .builder-option, .step-panel, .launch-item{
  background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(252,248,243,.98) 100%);
  border:1px solid rgba(183,146,83,.14);
  box-shadow:0 14px 36px rgba(20,18,16,.055);
}

.card.soft, .section-soft .card, .module-info-box, .summary-card, .highlight-card{
  background:linear-gradient(180deg, #fbf6ef 0%, #f5eee4 100%);
  border:1px solid rgba(183,146,83,.18);
}

.card h3, .discover-card h3, .trust-card h3, .launch-item strong{
  color:#1f1a15;
}

.badge, .hero-pill, .hero-pill-row span{
  background:linear-gradient(180deg,#fff7ea 0%, #f4e6ca 100%);
  border:1px solid rgba(183,146,83,.24);
  color:#765628;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}

.choice-card, .builder-option{
  border-radius:20px;
}

.choice-card:hover, .builder-option:hover{
  border-color:rgba(183,146,83,.44);
  background:linear-gradient(180deg,#fffdfa 0%, #f8efe3 100%);
  transform:translateY(-2px);
  box-shadow:0 16px 26px rgba(22,20,18,.08);
}

.choice-card.active-choice, .builder-option.active-choice, .builder-option.builder-selected{
  background:linear-gradient(180deg,#2a2521 0%, #171413 100%);
  color:#fff5df;
  border-color:#1a1715;
  box-shadow:0 16px 34px rgba(18,16,14,.18);
}

input, select, textarea{
  border:1px solid rgba(183,146,83,.22);
  background:#fffdf9;
  transition:border-color .28s ease, box-shadow .28s ease, background-color .28s ease;
}

input:focus, select:focus, textarea:focus{
  outline:none;
  border-color:rgba(183,146,83,.70);
  box-shadow:0 0 0 4px rgba(183,146,83,.12);
  background:#fffefa;
}

.notice{
  border:1px solid rgba(183,146,83,.22);
  background:linear-gradient(180deg,#fffaf2 0%, #f8efdf 100%);
}

.footer{
  background:linear-gradient(180deg,#1b1816 0%, #12100f 100%);
  border-top:1px solid rgba(183,146,83,.22);
}

.footer, .footer a, .footer .small{
  color:#f2eadf;
}

.footer-links a{
  opacity:.88;
  transition:opacity .25s ease, color .25s ease;
}

.footer-links a:hover, .footer-links a.active{
  opacity:1;
  color:#f0d7aa;
}

/* subtle reveal motion */
.reveal-on-scroll{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal-on-scroll.is-visible{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion: reduce){
  .reveal-on-scroll{
    opacity:1;
    transform:none;
    transition:none;
  }
  .btn, .nav-links a, .choice-card, .builder-option, input, select, textarea{
    transition:none !important;
  }
}

@media (max-width:980px){
  .nav{ min-height:76px; }
  .hero::after{ margin-top:28px; }
}


/* Prestige Final Touch — refined premium finish */
:root{
  --champagne-accent:#b8945f;
  --champagne-accent-soft:#d8c3a0;
  --lux-shadow:0 18px 40px rgba(31, 24, 17, 0.08);
  --lux-shadow-soft:0 10px 24px rgba(31, 24, 17, 0.06);
}
.site-header{
  backdrop-filter:saturate(125%) blur(10px);
  -webkit-backdrop-filter:saturate(125%) blur(10px);
  background:rgba(251,247,240,0.88);
  border-bottom:1px solid rgba(184,148,95,0.14);
}
.nav-links a{
  letter-spacing:.01em;
  transition:color .28s ease, background-color .28s ease, transform .28s ease, box-shadow .28s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible{
  transform:translateY(-1px);
}
.hero{
  background:
    radial-gradient(circle at top right, rgba(184,148,95,0.10), transparent 34%),
    linear-gradient(180deg, #fbf7f0 0%, #f8f2e8 100%);
}
.hero h1{ letter-spacing:-0.02em; }
.hero-note-card,
.premium-panel,
.foeuxs-hero-banner{ box-shadow:var(--lux-shadow); }
.btn{
  letter-spacing:.02em;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease, color .28s ease;
}
.btn:hover,
.btn:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(31,24,17,0.12);
}
.btn.btn-primary{ box-shadow:0 10px 22px rgba(31,24,17,0.10); }
.btn.btn-secondary{
  border-color:rgba(184,148,95,0.24);
  background:linear-gradient(180deg, rgba(255,255,255,0.88), rgba(249,244,236,0.94));
}
.btn-soft-disabled,
.btn-soft-disabled:hover,
.btn-soft-disabled:focus-visible{
  opacity:.58;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
  background:linear-gradient(180deg, rgba(249,244,236,0.82), rgba(243,235,224,0.92));
  color:#7f705d;
  border-color:rgba(184,148,95,0.18);
}
.product-card,
.card,
.discover-card,
.trust-card,
.step-panel,
.launch-item{ box-shadow:var(--lux-shadow-soft); }
.product-card:hover,
.card:hover,
.discover-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--lux-shadow);
}
.product-image,
.hero-image,
.section-image{ box-shadow:0 22px 36px rgba(31,24,17,0.09); }
.kicker,
.mini-kicker,
.badge{ letter-spacing:.12em; }
.choice-card,
.summary-card,
.module-info-box{ border-color:rgba(184,148,95,0.16); }
.choice-card.active-choice,
.builder-option.builder-selected,
.builder-option.active-choice{
  box-shadow:0 14px 28px rgba(184,148,95,0.14);
  border-color:rgba(184,148,95,0.38);
}
.summary-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,244,236,0.96));
}
.notice{
  border-color:rgba(184,148,95,0.18);
  background:linear-gradient(180deg, rgba(255,251,246,0.98), rgba(248,240,230,0.98));
}
.footer{
  background: linear-gradient(180deg, #fbf6ef 0%, #f3eadf 100%);
  border-top:1px solid rgba(184,148,95,0.14);
}
.footer .small{ color:#5a4c3f; }
.footer-links a{ color:#fff8ef; }
.footer-links a:hover,
.footer-links a:focus-visible{ color:#fffdf8; }


/* Follow-scroll summary + clearer footer contrast */
.custom-builder-summary{
  position:sticky;
  top:110px;
  align-self:start;
  max-height:calc(100vh - 132px);
  overflow:auto;
  scrollbar-width:thin;
}
.custom-builder-summary::-webkit-scrollbar{ width:10px; }
.custom-builder-summary::-webkit-scrollbar-thumb{
  background:rgba(184,148,95,0.28);
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.55);
}
.custom-builder-summary::-webkit-scrollbar-track{ background:transparent; }

.footer-brand-logo{
  width:210px;
  background:transparent;
  padding:0;
  border-radius:0;
  border:none;
  box-shadow:none;
}
.footer .footer-brand-block .small{
  color:#5a4c3f;
}
.footer-links{
  gap:12px;
}
.footer-links a{
  color:#fff8ef;
  background:#1f1812;
  border:1px solid rgba(31,24,18,0.82);
  padding:10px 14px;
  border-radius:999px;
  box-shadow:0 10px 20px rgba(31,24,18,0.12);
}
.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a.active{
  color:#fffdf8;
  background:#2a2119;
  border-color:#2a2119;
}

@media (max-width:980px){
  .brand-logo{
    width:180px;
  }
  .custom-builder-summary{
    position:static;
    max-height:none;
    overflow:visible;
  }
  .footer-brand-logo{
    width:180px;
  }
}


.btn-disabled{
  opacity:0.58;
  cursor:not-allowed;
  filter:saturate(0.78);
  box-shadow:none !important;
}
.btn-disabled:hover,
.btn-disabled:focus-visible{
  transform:none !important;
  box-shadow:none !important;
}


/* Live moving summary window for custom builder */
.builder-grid{
  grid-template-columns:minmax(0,1.45fr) minmax(320px,.78fr);
  gap:28px;
  align-items:start;
}

.builder-grid > aside{
  align-self:start;
  position:relative;
}

.step-panel{
  scroll-margin-top:120px;
}

.custom-builder-summary{
  position:sticky;
  top:108px;
  align-self:start;
  padding:24px 22px;
  border-radius:24px;
  box-shadow:0 20px 44px rgba(31,24,17,0.10);
  overflow:visible;
}

.custom-builder-summary::before{
  content:"Live Summary";
  display:inline-block;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(184,148,95,0.22);
  background:linear-gradient(180deg, rgba(255,251,246,0.98), rgba(247,239,228,0.98));
  color:#8b6a3b;
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.custom-builder-summary .summary-title{
  position:sticky;
  top:-24px;
  z-index:2;
  margin:-24px -22px 16px;
  padding:18px 22px 14px;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,244,236,0.96));
  border-bottom:1px solid rgba(184,148,95,0.14);
  box-shadow:0 10px 24px rgba(31,24,17,0.04);
}

.custom-builder-summary p{
  padding-bottom:10px;
  border-bottom:1px solid rgba(184,148,95,0.10);
}

.custom-builder-summary p:last-child{
  border-bottom:none;
  padding-bottom:0;
}

@media (max-width: 1100px){
  .builder-grid{
    grid-template-columns:1fr;
  }

  .builder-grid > aside{
    order:-1;
  }

  .custom-builder-summary{
    position:sticky;
    top:90px;
    overflow:visible;
    margin-bottom:18px;
  }

  .custom-builder-summary .summary-title{
    top:0;
  }
}

@media (max-width: 720px){
  .custom-builder-summary{
    position:sticky;
    top:78px;
    border-radius:20px;
    padding:18px 16px;
  }

  .custom-builder-summary .summary-title{
    margin:-18px -16px 14px;
    padding:14px 16px 12px;
    top:0;
  }

  .custom-builder-summary::before{
    margin-bottom:10px;
    font-size:.7rem;
  }
}


/* Robust floating live summary for custom builder */
#customBuilderSummaryAside{
  position:relative;
  min-width:0;
}

.custom-builder-summary.is-floating{
  position:fixed !important;
  top:108px;
  z-index:40;
  overflow:visible;
}

.custom-builder-summary.is-bottom{
  position:absolute !important;
  top:auto;
  bottom:0;
  left:0;
  right:0;
}

@media (max-width:1100px){
  .custom-builder-summary.is-floating,
  .custom-builder-summary.is-bottom{
    position:sticky !important;
    top:78px;
    left:auto;
    right:auto;
    width:auto !important;
    bottom:auto;
  }
}


/* Keyboard-friendly live summary behavior */
#customBuilderForm{ overflow:visible; }
#customBuilderForm .step-panel:focus-within{
  box-shadow:0 14px 34px rgba(31,24,17,0.08), 0 0 0 1px rgba(183,146,83,0.18);
  border-color:rgba(183,146,83,0.28);
}
@media (min-width:1101px){
  .custom-builder-summary,
  .custom-builder-summary.is-floating,
  .custom-builder-summary.is-bottom{
    max-height:none !important;
    overflow:visible !important;
  }
}


/* Final fix: page-level sticky live summary across steps 1-7 */
#customBuilderForm .builder-grid{
  align-items:start;
}
#customBuilderSummaryAside{
  position:sticky !important;
  top:108px;
  align-self:start;
  height:max-content;
}
#customBuilderSummaryAside .custom-builder-summary,
#customBuilderSummaryAside .custom-builder-summary.is-floating,
#customBuilderSummaryAside .custom-builder-summary.is-bottom{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  width:auto !important;
  max-height:none !important;
  overflow:visible !important;
}
#customBuilderSummaryAside .custom-builder-summary::before{
  position:sticky;
  top:0;
  z-index:3;
}
#customBuilderSummaryAside .custom-builder-summary .summary-title{
  position:relative;
  top:auto;
}
#customBuilderForm .step-panel[data-step].is-current{
  box-shadow:0 18px 38px rgba(31,24,17,0.10), 0 0 0 1px rgba(183,146,83,0.22);
  border-color:rgba(183,146,83,0.30);
}
#customBuilderSummaryAside .custom-builder-summary [data-summary-step]{
  transition:background-color .25s ease, border-color .25s ease, transform .25s ease;
  border-radius:14px;
  padding:10px 12px;
  margin-left:-12px;
  margin-right:-12px;
  border:1px solid transparent;
}
#customBuilderSummaryAside .custom-builder-summary [data-summary-step].is-current{
  background:linear-gradient(180deg, rgba(255,250,244,0.98), rgba(249,241,230,0.98));
  border-color:rgba(183,146,83,0.22);
  transform:translateX(2px);
}
@media (max-width:1100px){
  #customBuilderSummaryAside{
    position:relative !important;
    top:auto;
  }
}

/* Compact elegant live summary window */
@media (min-width:1101px){
  #customBuilderForm .builder-grid{
    grid-template-columns:minmax(0,1.72fr) minmax(250px,0.62fr) !important;
    gap:22px;
    align-items:start;
  }

  #customBuilderSummaryAside{
    top:96px !important;
  }

  #customBuilderSummaryAside .custom-builder-summary,
  #customBuilderSummaryAside .custom-builder-summary.is-floating,
  #customBuilderSummaryAside .custom-builder-summary.is-bottom{
    width:min(100%, 300px) !important;
    max-height:calc(100vh - 128px) !important;
    overflow:auto !important;
    padding:16px 16px 14px !important;
    border-radius:20px !important;
    box-shadow:0 18px 36px rgba(31,24,17,0.09) !important;
    scrollbar-width:thin;
    scrollbar-color:rgba(184,148,95,0.45) rgba(248,241,231,0.95);
  }

  #customBuilderSummaryAside .custom-builder-summary::-webkit-scrollbar{
    width:8px;
  }

  #customBuilderSummaryAside .custom-builder-summary::-webkit-scrollbar-track{
    background:rgba(248,241,231,0.95);
    border-radius:999px;
  }

  #customBuilderSummaryAside .custom-builder-summary::-webkit-scrollbar-thumb{
    background:rgba(184,148,95,0.46);
    border-radius:999px;
    border:2px solid rgba(248,241,231,0.95);
  }

  #customBuilderSummaryAside .custom-builder-summary::before{
    margin-bottom:10px !important;
    padding:6px 10px !important;
    font-size:.68rem !important;
    letter-spacing:.11em !important;
    position:sticky;
    top:0;
    z-index:4;
  }

  #customBuilderSummaryAside .custom-builder-summary .summary-title{
    position:sticky !important;
    top:28px !important;
    margin:-16px -16px 10px !important;
    padding:12px 16px 10px !important;
    font-size:1rem !important;
    line-height:1.35 !important;
    z-index:3;
  }

  #customBuilderSummaryAside .custom-builder-summary [data-summary-step]{
    padding:8px 10px !important;
    margin-left:-10px !important;
    margin-right:-10px !important;
    border-radius:12px !important;
  }

  #customBuilderSummaryAside .custom-builder-summary p{
    font-size:.92rem;
    line-height:1.5;
    margin:0 0 2px;
    padding-bottom:8px !important;
  }

  #customBuilderSummaryAside .custom-builder-summary .small{
    font-size:.78rem;
    line-height:1.45;
  }
}

@media (max-width:1100px){
  #customBuilderSummaryAside .custom-builder-summary{
    max-height:300px !important;
    overflow:auto !important;
    scrollbar-width:thin;
  }
}


/* Stage1 rebuilt from approved baseline */
.invoice-order-shell { overflow:hidden; }
.invoice-header-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.invoice-header-grid .full { grid-column:1 / -1; }
.invoice-header-grid input,
.invoice-header-grid select,
.invoice-header-grid textarea { width:100%; }
.invoice-table-wrap {
  overflow-x:auto;
  border:1px solid #e6d8c7;
  border-radius:16px;
  background:#fffdf9;
  margin-top:14px;
}
.invoice-details-table {
  width:100%;
  border-collapse:collapse;
  min-width:980px;
}
.invoice-details-table th,
.invoice-details-table td {
  border-bottom:1px solid #eee2d4;
  padding:12px 10px;
  text-align:left;
  vertical-align:top;
}
.invoice-details-table th { background:#f5eadc; color:#6d522d; }
.invoice-empty-row td { color:#6c6157; }
.invoice-total-label { text-align:right !important; font-weight:700; }
.invoice-remove-btn { white-space:nowrap; }
@media (max-width:900px){ .invoice-header-grid { grid-template-columns:1fr; } }


/* VDU custom auto-result readonly cards */
.guided-readonly-result {
  border: 1px solid rgba(160, 121, 70, 0.24);
  background: rgba(255, 250, 243, 0.86);
  border-radius: 14px;
  padding: 12px 14px;
  min-height: 52px;
}
.guided-readonly-result-large {
  margin-top: 12px;
  padding: 16px 18px;
}
.guided-readonly-kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.68;
  margin-bottom: 4px;
}
.guided-readonly-result strong {
  display: block;
  color: #6d522d;
}

/* Stage 3 Lab/Admin tables */
.invoice-table-wrap { overflow-x: auto; }
.invoice-details-table { width: 100%; border-collapse: collapse; }
.invoice-details-table th, .invoice-details-table td {
  padding: 10px;
  border-bottom: 1px solid rgba(120, 90, 55, 0.16);
  text-align: left;
  vertical-align: top;
}
.invoice-details-table th { background: rgba(180, 138, 82, 0.12); }

/* Stage 4 Analytics */
.analytics-kpi-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.analytics-list { display:grid; gap:8px; }
.analytics-row {
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid rgba(120,90,55,.14);
  padding:8px 0;
}
.analytics-row span { overflow-wrap:anywhere; }
@media (max-width:900px){ .analytics-kpi-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:620px){ .analytics-kpi-grid { grid-template-columns:1fr; } }

/* Stage 4 Analytics Charts */
.analytics-chart {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-top: 12px;
}


/* ===== VDU FINAL PERFUME MODAL CLEANUP =====
   Hide/remove commercial metadata blocks from perfume modal only.
   Family / Collection / Price / Stock must remain available on product cards, not inside modal.
*/
#perfumeModal .vdu-modal-commercial-meta,
#perfumeModal .vdu-modal-meta-grid,
#perfumeModal .modal-meta-grid,
#perfumeModal .perfume-modal-meta-grid,
#perfumeModal [data-modal-meta="family"],
#perfumeModal [data-modal-meta="collection"],
#perfumeModal [data-modal-meta="price"],
#perfumeModal [data-modal-meta="stock"],
#perfumeModal [data-field="family"],
#perfumeModal [data-field="collection"],
#perfumeModal [data-field="price"],
#perfumeModal [data-field="stock"]{
  display:none !important;
}
/* ===== END VDU FINAL PERFUME MODAL CLEANUP ===== */
