/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.6; color: #1a1614; background: #FAF8F5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* === TYPOGRAPHY === */
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 7vw, 72px); font-weight: 600; line-height: 1.05; color: #fff; letter-spacing: -0.01em; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 4vw, 46px); font-weight: 500; color: #1a1614; margin-bottom: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 15px; font-weight: 500; color: #1a1614; margin-bottom: 8px; }
h4 { font-size: 11px; font-weight: 500; color: #9a9087; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
p { color: #6b6158; line-height: 1.75; }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.bg-warm { background: #F2EDE6; }

/* === NAVIGATION === */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(26,22,20,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,163,110,0.2); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; }
.logo span { color: #C9A36E; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: #C9A36E; }
.btn-nav { background: #C9A36E !important; color: #1a1614 !important; padding: 9px 22px; border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; }
.btn-nav:hover { background: #b88f58 !important; }

/* === BUTTONS === */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: #C9A36E; color: #1a1614; padding: 15px 32px; border-radius: 2px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: #b88f58; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,163,110,0.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); padding: 15px 24px; font-size: 13px; letter-spacing: 0.04em; border-radius: 2px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline { display: inline-block; text-align: center; padding: 13px 28px; border: 1.5px solid #C9A36E; border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #C9A36E; transition: all 0.2s; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-outline:hover { background: #C9A36E; color: #1a1614; }

/* === HERO === */
.hero { padding: 130px 0 110px; text-align: center; background: #1a1614; position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(26,22,20,0.78) 0%, rgba(46,35,27,0.65) 45%, rgba(26,22,20,0.78) 100%); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at 60% 40%, rgba(201,163,110,0.10) 0%, transparent 60%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,163,110,0.15); color: #C9A36E; font-size: 11px; font-weight: 600; padding: 7px 20px; border-radius: 2px; margin-bottom: 28px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(201,163,110,0.25); }
.hero h1 { margin-bottom: 24px; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto 44px; line-height: 1.75; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: #C9A36E; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.4); max-width: 120px; display: block; letter-spacing: 0.03em; }
.stat-div { width: 1px; height: 50px; background: rgba(255,255,255,0.12); }

/* === SECTIONS === */
.section-tag { display: inline-block; font-size: 10px; font-weight: 600; color: #C9A36E; text-transform: uppercase; letter-spacing: 0.14em; border: 1px solid rgba(201,163,110,0.35); padding: 5px 14px; border-radius: 2px; margin-bottom: 16px; }

/* === PROBLEM SECTION === */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 2.5rem 0; }
.problem-card { background: #fff; border: 1px solid #E5DDD4; border-radius: 4px; padding: 28px; transition: box-shadow 0.2s; }
.problem-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.problem-card i { font-size: 26px; color: #8B3A52; margin-bottom: 14px; display: block; }
.problem-card p { font-size: 14px; color: #6b6158; font-style: italic; line-height: 1.7; }
.problem-cta-text { font-size: 20px; color: #1a1614; font-weight: 500; margin: 2.5rem 0 1.2rem; text-align: center; font-family: 'Cormorant Garamond', serif; }

/* === HOW IT WORKS === */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.step-card { text-align: center; padding: 36px 24px; position: relative; background: #fff; border: 1px solid #E5DDD4; border-radius: 4px; transition: box-shadow 0.2s; }
.step-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.step-num { width: 34px; height: 34px; background: #C9A36E; color: #1a1614; border-radius: 50%; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; letter-spacing: 0; }
.step-card i { font-size: 30px; color: #C9A36E; margin-bottom: 14px; display: block; }
.step-card h3 { font-size: 16px; margin-bottom: 10px; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; }
.step-card p { font-size: 13px; color: #7a7168; }

/* === CATEGORIES === */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 10px; background: #fff; border: 1px solid #E5DDD4; border-radius: 4px; padding: 24px 14px; text-align: center; transition: all 0.2s; }
.cat-item:hover { border-color: #C9A36E; box-shadow: 0 4px 16px rgba(201,163,110,0.15); }
.cat-item i { font-size: 22px; color: #C9A36E; }
.cat-item span { font-size: 12px; font-weight: 500; color: #3a3530; letter-spacing: 0.02em; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; align-items: start; }
.pricing-card { background: #fff; border: 1px solid #E5DDD4; border-radius: 4px; padding: 36px 30px; position: relative; }
.pricing-card.featured { border: 2px solid #C9A36E; }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #C9A36E; color: #1a1614; font-size: 10px; font-weight: 700; padding: 5px 18px; border-radius: 2px; white-space: nowrap; letter-spacing: 0.08em; text-transform: uppercase; }
.plan-name { font-size: 11px; font-weight: 600; color: #9a9087; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: #1a1614; margin-bottom: 28px; }
.plan-price span { font-size: 15px; font-weight: 400; color: #9a9087; font-family: 'DM Sans', sans-serif; }
.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #4a4540; }
.plan-features i { font-size: 15px; color: #C9A36E; flex-shrink: 0; }
.plan-features .text-muted { color: #ccc; }
.plan-features .muted { color: #bbb; }

/* === FOOTER === */
.footer { background: #1a1614; color: #fff; padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; margin-bottom: 56px; }
.footer .logo { color: #fff; font-size: 22px; margin-bottom: 14px; display: block; letter-spacing: 0.06em; }
.footer .logo span { color: #C9A36E; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 10px; letter-spacing: 0.03em; transition: color 0.15s; }
.footer-col a:hover { color: #C9A36E; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; letter-spacing: 0.03em; }

/* === ADVISOR PAGE === */
.advisor-wrap { max-width: 700px; margin: 48px auto; padding: 0 20px 80px; }
.advisor-hero { text-align: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #E5DDD4; }
.advisor-hero .save-banner { display: flex; align-items: center; gap: 12px; background: #FAF3E8; border: 1px solid rgba(201,163,110,0.35); border-radius: 4px; padding: 14px 18px; margin-top: 18px; text-align: left; }
.advisor-hero .save-banner span { font-size: 13px; color: #7a5520; line-height: 1.6; }
.prog-bar { display: flex; margin-bottom: 1.75rem; border-bottom: 1px solid #E5DDD4; }
.prog-step { flex: 1; padding: 12px 4px; text-align: center; font-size: 10px; font-weight: 600; color: #bbb; border-bottom: 2px solid transparent; transition: all 0.2s; cursor: default; letter-spacing: 0.06em; text-transform: uppercase; }
.prog-step.cur { color: #C9A36E; border-color: #C9A36E; }
.prog-step.done { color: #8B3A52; border-color: #8B3A52; }
.step-page { display: none; }
.step-page.active { display: block; }
.form-card { background: #fff; border: 1px solid #E5DDD4; border-radius: 4px; padding: 24px; margin-bottom: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.03); }
.sec-title { font-size: 10px; font-weight: 600; color: #9a9087; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: flex; align-items: center; gap: 7px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { font-size: 12px; padding: 7px 15px; border-radius: 2px; border: 1px solid #E5DDD4; color: #6b6158; cursor: pointer; background: transparent; font-family: 'DM Sans', sans-serif; transition: all 0.15s; letter-spacing: 0.02em; }
.chip:hover { border-color: #C9A36E; color: #1a1614; }
.chip.on { background: #1a1614; border-color: #1a1614; color: #C9A36E; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lbl { font-size: 11px; color: #9a9087; margin-bottom: 6px; display: block; letter-spacing: 0.04em; text-transform: uppercase; }
input[type=number], input[type=text], input[type=email], select, textarea { width: 100%; padding: 10px 13px; font-size: 13px; border-radius: 2px; border: 1px solid #E5DDD4; background: #FAF8F5; color: #1a1614; font-family: 'DM Sans', sans-serif; transition: border 0.15s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: #C9A36E; background: #fff; }
textarea { resize: vertical; }
.swatch-row { display: flex; flex-wrap: wrap; gap: 10px; }
.sw { width: 44px; height: 44px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all 0.15s; flex-shrink: 0; }
.sw:hover { transform: scale(1.12); }
.sw.on { border-color: #C9A36E; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #C9A36E; transform: scale(1.08); }
.skin-lbl { display: block; font-size: 12px; color: #3a3530; font-weight: 500; margin-top: 10px; letter-spacing: 0.03em; min-height: 18px; }
.nav-row { display: flex; gap: 12px; margin-top: 14px; }
.cta-btn { flex: 1; padding: 13px; font-size: 13px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; border-radius: 2px; border: 1.5px solid #E5DDD4; background: #fff; color: #1a1614; transition: all 0.15s; letter-spacing: 0.04em; text-transform: uppercase; }
.cta-btn:hover { background: #F2EDE6; border-color: #C9A36E; }
.cta-btn.primary { background: #C9A36E; color: #1a1614; border-color: #C9A36E; }
.cta-btn.primary:hover { background: #b88f58; }
.loading-wrap { text-align: center; padding: 4rem 1rem; display: none; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #C9A36E; margin: 0 3px; animation: bnc 1.2s infinite; }
.dot:nth-child(2) { animation-delay: .2s; } .dot:nth-child(3) { animation-delay: .4s; }
@keyframes bnc { 0%,80%,100%{transform:translateY(0)} 40%{transform:translateY(-10px)} }
.results-wrap { display: none; }
.money-banner { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, #1a1614, #2e231b); border-radius: 4px; padding: 20px 22px; margin-bottom: 1.2rem; }
.money-banner h2 { font-size: 20px; margin: 0 0 2px; color: #C9A36E; font-family: 'Cormorant Garamond', serif; }
.money-banner p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }
.res-card { background: #fff; border: 1px solid #E5DDD4; border-radius: 4px; padding: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.04); }
.res-sec { margin-bottom: 1.25rem; }
.res-sec h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; color: #1a1614; }
.res-body { font-size: 13px; line-height: 1.9; color: #4a4540; white-space: pre-wrap; }
.warn-box { background: #FAF3E8; border: 1px solid rgba(201,163,110,0.3); border-radius: 4px; padding: 16px 18px; }
.divider { height: 1px; background: #F0EBE3; margin: 1.2rem 0; }
.shop-head { font-size: 10px; font-weight: 600; color: #9a9087; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.shop-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.shop-filter { font-size: 11px; padding: 5px 12px; border-radius: 2px; border: 1px solid #E5DDD4; color: #9a9087; cursor: pointer; background: transparent; font-family: 'DM Sans', sans-serif; transition: all 0.12s; letter-spacing: 0.03em; }
.shop-filter.on { background: #1a1614; color: #C9A36E; border-color: #1a1614; }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.shop-link { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border: 1px solid #E5DDD4; border-radius: 3px; text-decoration: none; color: #1a1614; font-size: 12px; font-weight: 500; transition: all 0.12s; background: #fff; }
.shop-link:hover { border-color: #C9A36E; background: #FAF8F5; }
.shop-icon { width: 30px; height: 30px; border-radius: 3px; background: #F2EDE6; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.shop-badge { margin-left: auto; font-size: 10px; padding: 2px 8px; border-radius: 2px; background: rgba(201,163,110,0.12); color: #9A7240; font-weight: 600; white-space: nowrap; letter-spacing: 0.02em; }
.aff-note { font-size: 10px; color: #bbb; margin-top: 10px; text-align: center; letter-spacing: 0.02em; }
.aff-banner { display: flex; align-items: flex-start; gap: 9px; background: #F7F4EF; border: 1px solid #E5DDD4; border-radius: 3px; padding: 10px 14px; margin-bottom: 14px; }
.aff-banner i { color: #9a9087; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.aff-banner span { font-size: 12px; color: #7a7168; line-height: 1.6; }
.reset-link { font-size: 12px; color: #C9A36E; cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; padding: 0; text-decoration: underline; margin-top: 14px; display: block; text-align: center; letter-spacing: 0.03em; }
.free-limit-banner { background: #FAF3E8; border: 1px solid rgba(201,163,110,0.3); border-radius: 4px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 1.2rem; }
.free-limit-banner p { font-size: 13px; color: #7a5520; margin: 0; }
.free-limit-banner a { font-size: 11px; font-weight: 600; color: #1a1614; background: #C9A36E; border-radius: 2px; padding: 6px 14px; white-space: nowrap; transition: all 0.15s; letter-spacing: 0.04em; text-transform: uppercase; }
.free-limit-banner a:hover { background: #b88f58; }

/* === AI OUTFIT VISUALIZER === */
.ai-outfit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.ai-outfit-img-wrap { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; background: linear-gradient(135deg, #F2EDE6, #E8E0D5); }
.ai-outfit-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.3s; }
.ai-outfit-img-wrap:hover img { transform: scale(1.03); }
.ai-badge { position: absolute; top: 10px; right: 10px; background: rgba(26,22,20,0.8); color: #C9A36E; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 2px; font-family: 'DM Sans', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; backdrop-filter: blur(4px); }
.ai-outfit-shimmer { border-radius: 4px; aspect-ratio: 3/4; background: linear-gradient(90deg, #F2EDE6 25%, #E8E0D5 50%, #F2EDE6 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@media (max-width: 600px) { .ai-outfit-grid { grid-template-columns: 1fr; } }

/* === CHECKOUT PAGE === */
.checkout-wrap { max-width: 520px; margin: 70px auto; padding: 0 20px 80px; }
.checkout-card { background: #fff; border: 1px solid #E5DDD4; border-radius: 4px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.checkout-plan { background: #F2EDE6; border-radius: 3px; padding: 18px; margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; }
.checkout-plan .plan-label { font-size: 12px; color: #9a9087; letter-spacing: 0.04em; text-transform: uppercase; }
.checkout-plan .plan-val { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: #1a1614; }
#stripe-form .field-group { margin-bottom: 18px; }
#card-element { border: 1px solid #E5DDD4; border-radius: 3px; padding: 13px; background: #FAF8F5; }
#card-errors { color: #8B3A52; font-size: 13px; margin-top: 6px; min-height: 20px; }
.stripe-badge { text-align: center; margin-top: 14px; font-size: 11px; color: #bbb; display: flex; align-items: center; justify-content: center; gap: 5px; }
#payment-success { display: none; text-align: center; padding: 2.5rem; }
#payment-success i { font-size: 48px; color: #C9A36E; margin-bottom: 18px; display: block; }
#payment-success h2 { margin-bottom: 10px; color: #1a1614; }
#payment-success p { font-size: 14px; color: #6b6158; margin-bottom: 24px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links a:not(.btn-nav) { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-div { display: none; }
  .checkout-wrap, .advisor-wrap { padding: 0 16px 60px; }
}

/* === FEEDBACK WIDGET === */
.fb-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #1a1614; color: #C9A36E;
  border: 1.5px solid #C9A36E; border-radius: 2px;
  padding: 10px 18px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.fb-btn:hover { background: #C9A36E; color: #1a1614; }

.fb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(3px);
  align-items: flex-end; justify-content: flex-end; padding: 24px;
}
.fb-overlay.open { display: flex; }

.fb-panel {
  background: #fff; border-radius: 4px; width: 100%; max-width: 380px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  animation: fbSlideUp 0.25s ease;
}
@keyframes fbSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.fb-header {
  background: #1a1614; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 4px 4px 0 0;
}
.fb-header h3 { color: #C9A36E; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; margin: 0; }
.fb-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 20px; cursor: pointer; line-height: 1; padding: 0; }
.fb-close:hover { color: #fff; }

.fb-body { padding: 20px; }

.fb-stars { display: flex; gap: 8px; margin-bottom: 16px; }
.fb-star {
  font-size: 26px; cursor: pointer; transition: transform 0.1s;
  filter: grayscale(1); opacity: 0.4;
}
.fb-star:hover, .fb-star.on { filter: grayscale(0); opacity: 1; transform: scale(1.15); }

.fb-body label { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: #9a9087; display: block; margin-bottom: 5px; }
.fb-body input, .fb-body textarea {
  width: 100%; border: 1px solid #e5e0d8; border-radius: 2px;
  padding: 9px 12px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: #1a1614; background: #FAF8F5; margin-bottom: 12px;
  resize: none; outline: none; transition: border 0.2s;
}
.fb-body input:focus, .fb-body textarea:focus { border-color: #C9A36E; }
.fb-submit {
  width: 100%; background: #C9A36E; color: #1a1614; border: none;
  padding: 11px; font-size: 12px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
.fb-submit:hover { background: #b88f58; }
.fb-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.fb-thanks { text-align: center; padding: 32px 20px; }
.fb-thanks p { color: #6b6158; font-size: 14px; margin-top: 8px; }

/* === LOADING BAR === */
.load-bar-wrap { width: 100%; max-width: 300px; height: 3px; background: #E5DDD4; border-radius: 2px; margin: 0 auto; overflow: hidden; }
.load-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #C9A36E, #b88f58); border-radius: 2px; transition: width 0.6s ease; }
.load-tip { font-size: 13px; color: #9a9087; margin-bottom: 20px; min-height: 20px; letter-spacing: 0.02em; }

/* === STEP 1 META === */
.step1-meta { text-align: center; font-size: 11px; color: #aaa; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 20px; }

/* === OUTFIT CARDS === */
.outfit-list { display: flex; flex-direction: column; gap: 12px; }
.outfit-card { background: #FAF8F5; border: 1px solid #E5DDD4; border-radius: 4px; padding: 14px 16px; }
.outfit-num { font-size: 10px; font-weight: 700; color: #C9A36E; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.outfit-items { list-style: none; display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.outfit-items li { font-size: 13px; color: #1a1614; font-weight: 500; padding-left: 16px; position: relative; line-height: 1.6; }
.outfit-items li::before { content: '—'; position: absolute; left: 0; color: #C9A36E; font-weight: 400; }
.outfit-why { font-size: 12px; color: #7a7168; font-style: italic; border-top: 1px solid #EBE5DD; padding-top: 8px; line-height: 1.65; margin: 0; }
