@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Neutrals aligned with Main Site */
  --color-ivory: #FFFFFF;
  --color-white: #FFFFFF;
  --color-charcoal: #444444;
  --color-onyx: #444444;
  --color-slate: #6B6B6B;
  --color-border: #EFEFEF;

  /* Official Brand Palette Audited */
  --color-vintage-rose: #d18e6c;
  --color-vintage-rose-hover: #b37859;
  --color-mauve-medley: #d18e6c;
  --color-natural-leather: #f5e4cd;
  --color-faint-blush: #f5e4cd;

  /* Functional */
  --color-honey-gold: #d18e6c;
  --color-sage-trust: #5A6B5D;

  /* Fonts Matching Official Site */
  --font-serif: 'Jost', sans-serif;
  --font-sans: 'Jost', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-ivory);
  color: var(--color-slate);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Typography Overhaul */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--color-onyx);
  font-weight: 600;
  /* Boost weight for legibility */
  letter-spacing: -0.01em;
}

.h-display {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
}

.h-1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}

.h-2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
}

.h-3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-vintage-rose);
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
}

.body {
  font-size: 16px;
  font-weight: 400;
}

.caption {
  font-size: 14px;
  color: var(--color-slate);
}

/* Layout Utilities & Dark Contrast Force */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.bg-white {
  background-color: var(--color-white);
}

.bg-blush {
  background-color: var(--color-faint-blush);
}

.bg-charcoal {
  background-color: #2C2C2C;
  color: #FFFFFF;
}

.bg-charcoal h1,
.bg-charcoal h2,
.bg-charcoal h3,
.bg-charcoal .h-display {
  color: #FFFFFF;
}

.bg-charcoal p,
.bg-charcoal .body-lg,
.bg-charcoal .caption {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Navigation (Full Brand Experience) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-onyx);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-onyx);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-vintage-rose);
}

/* Buttons */
.btn-primary {
  background: var(--color-vintage-rose);
  color: var(--color-ivory);
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--color-vintage-rose-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-vintage-rose);
  border: 1px solid var(--color-vintage-rose);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--color-vintage-rose);
  color: var(--color-ivory);
}

/* Grids & Cards */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

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

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card .title {
  font-size: 18px;
  margin: 12px 0 4px;
}

.product-card .price {
  font-weight: 500;
  color: var(--color-vintage-rose);
}

/* Forms */
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 16px;
  margin-bottom: 16px;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-vintage-rose);
  box-shadow: 0 0 0 2px rgba(144, 82, 84, 0.1);
}

/* Footer */
.site-footer {
  background: var(--color-onyx);
  color: var(--color-slate);
  padding: 40px 0 100px;
}

.site-footer h4 {
  color: var(--color-ivory);
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-slate);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-ivory);
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .h-display {
    font-size: 40px;
  }

  .h-1 {
    font-size: 32px;
  }

  .section {
    padding: 48px 0;
  }
}

/* --- Social Proof: Celebrity Wall --- */
.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.celeb-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 300ms ease;
}

.celeb-card:hover {
  transform: translateY(-4px);
}

.celeb-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.celeb-info {
  padding: 16px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.celeb-info strong {
  font-family: var(--font-serif);
  color: var(--color-onyx);
  font-size: 18px;
}

/* --- Social Proof: Review Matrix (Slider) --- */
.reviews-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scrollbar-width: none;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: var(--color-white);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.rating-stars {
  color: #FACC15;
  margin-bottom: 12px;
  font-size: 14px;
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .h-display {
    font-size: 40px;
  }

  .h-1 {
    font-size: 32px;
  }

  .section {
    padding: 48px 0;
  }

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

/* --- Local SEO Upgrades: Process, Citations, Trifecta --- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--color-vintage-rose);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin: 0 auto 20px;
}

.citation-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.city-tag {
  font-size: 13px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--color-slate);
}

/* --- Accordion FAQ styling --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--color-onyx);
  list-style: none;
  font-size: 16px;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-weight: normal;
  color: var(--color-onyx);
  transition: transform 0.2s;
}

details[open] .faq-summary::after {
  content: '−';
  background: rgba(0, 0, 0, 0.08);
}

.faq-content {
  padding-top: 12px;
  color: var(--color-slate);
  font-size: 15px;
  line-height: 1.6;
}

.action-trifecta-section {
  background: #2C2C2C;
  color: #FFFFFF;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action-trifecta-section h2 {
  color: #FFFFFF;
}

.action-trifecta-section p {
  color: rgba(255, 255, 255, 0.8);
}

.trifecta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trifecta-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 40px 24px;
  /* More padding for visibility */
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.trifecta-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.trifecta-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0);
}

.trifecta-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.trifecta-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

/* --- Final Response Grid Optimization --- */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .grid-2 {
    gap: 32px;
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4,
  .step-grid,
  .trifecta-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .h-display {
    text-align: center;
  }

  .bg-charcoal .grid-2 {
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }

  .bg-charcoal div[style*="display: flex"] {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

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

  .action-trifecta-section {
    padding: 56px 0;
  }

  .trifecta-item {
    padding: 32px 20px;
  }
}

/* --- Mobile Fixed CTA --- */
.mobile-fixed-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99;
    padding: 12px;
    gap: 12px;
    border-top: 1px solid #eaeaea;
  }

  .fixed-wa-btn {
    flex: 1.2;
    background: #25D366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    cursor: pointer;
  }

  .fixed-cb-btn {
    flex: 0.8;
    background: #002447;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 36, 71, 0.3);
    cursor: pointer;
  }

  body {
    padding-bottom: 76px !important;
  }
}

/* ==========================================================================
   AI Try-On & FOMO Notification Styles (Vanilla CSS)
   ========================================================================== */
.seo-fomo-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

.seo-fomo-popup.fomo-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .seo-fomo-popup {
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 320px;
  }
}

.seo-fomo-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.seo-fomo-icon-wrapper>svg {
  width: 20px;
  height: 20px;
  color: #059669;
}

.seo-fomo-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background-color: #10b981;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-sizing: border-box;
}

.seo-fomo-badge>svg {
  width: 10px !important;
  height: 10px !important;
  color: #ffffff;
  display: block;
  flex-shrink: 0;
}

.seo-fomo-text-wrapper {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.seo-fomo-title {
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.375;
  margin: 0;
  font-family: var(--font-sans);
}

.seo-fomo-time {
  font-size: 11px;
  color: #059669;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 0;
  font-family: var(--font-sans);
}

.seo-ai-overlay {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.seo-ai-overlay.flex {
  display: flex;
}

.seo-ai-overlay.opacity-100 {
  opacity: 1;
}

.seo-ai-modal {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  max-width: 448px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  text-align: center;
}

.seo-ai-modal.scale-100 {
  transform: scale(1);
}

.seo-ai-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  font-size: 18px;
}

.seo-ai-close:hover {
  background: #e5e7eb;
}

.seo-ai-icon {
  width: 64px;
  height: 64px;
  background: rgba(209, 142, 108, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.seo-ai-icon svg {
  width: 32px;
  height: 32px;
  color: #d18e6c;
}

.seo-ai-title {
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 8px;
  margin-top: 0;
}

.seo-ai-desc {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0;
}

.seo-ai-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.seo-ai-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-family: var(--font-sans);
}

.seo-ai-input:focus {
  border-color: #d18e6c;
}

.seo-ai-submit {
  width: 100%;
  background: #905254;
  color: #ffffff;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.seo-ai-submit:hover {
  box-shadow: none;
}

.seo-ai-cancel {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-sans);
}

.seo-ai-cancel:hover {
  color: var(--color-charcoal);
}

.seo-ai-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: #905254;
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
}

@media (min-width: 768px) {
  .seo-ai-fab {
    display: flex;
  }
}

.seo-ai-fab:hover {
  transform: scale(1.1);
}

.seo-ai-fab svg {
  color: #ffffff;
}

.seo-ai-tooltip {
  position: absolute;
  right: 70px;
  background: #ffffff;
  color: var(--color-charcoal);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  border: 1px solid #f3f4f6;
  transition: opacity 0.2s;
  font-family: var(--font-sans);
}

.seo-ai-fab:hover .seo-ai-tooltip {
  opacity: 1;
}