:root {
  --bg-body: #f5e6d3;
  --bg-card: #fdfbf7;
  --bg-input: #ffffff;
  --text-main: #1e1b18;
  --text-secondary: #5a4a3a;
  --text-muted: #654321;
  --accent-primary: #BD5B2D;
  --accent-glow: rgba(189, 91, 45, 0.15);
  --border-subtle: #d4b896;
  --bg-highlight: rgba(101, 67, 33, 0.05);
  --bg-ribbon: #f8f1e9;
  --shadow-main: 0 8px 24px rgba(101, 67, 33, 0.15);
}

[data-theme="dark"] {
  --bg-body: #0c0c0d;
  --bg-card: #161618;
  --bg-input: #1e1e21;
  --text-main: #edebe8;
  --text-secondary: #a19d99;
  --text-muted: #8f877f;
  --accent-primary: #bd5b2d;
  --accent-glow: rgba(189, 91, 45, 0.2);
  --border-subtle: #2d2d30;
  --bg-highlight: rgba(255, 255, 255, 0.05);
  --bg-ribbon: #101012;
  --shadow-main: 0 10px 40px rgba(0,0,0,0.6);
}

/* --------------------------------------- */
/* BASE STYLES */
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f5e6d3, #e8d4bb);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-main);
  max-width: 900px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border-subtle);
  overflow: hidden; 
  color: var(--text-main);
}

/* Utilities */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------- */
/* HEADER & BRANDING */
.header {
  margin-bottom: 2rem;
}

.banner-header {
  padding: 0;
  border-bottom: 2px solid #654321;
  background: #1e1b18; /* Match the dark smoky theme */
  margin-top: -2.5rem; /* Counteract container padding */
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-bottom: 0;
}


#site-menubar-placeholder {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  margin: 0 -2.5rem 2rem -2.5rem;
  padding: 0 1rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative; /* ADDED: Anchor for theme toggle on mobile */
}

.site-menubar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menubar-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Mobile: Allow scrolling to edges */
@media (max-width: 768px) {
  .site-menubar {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .site-menubar::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .menubar-content {
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-right: 3rem; /* ADDED: Space for fixed theme toggle */
  }
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  background: var(--bg-highlight);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--accent-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  z-index: 10; /* ADDED: Ensure it stays above scrolling content */
}

/* Mobile: Anchor theme toggle to placeholder, not scrolling menubar */
@media (max-width: 768px) {
  .theme-toggle-btn {
    position: absolute;
    right: 1rem; /* Match placeholder padding */
    background: var(--bg-card); /* ADDED: Solid background so menu doesn't show through */
    box-shadow: -4px 0 8px var(--bg-card); /* ADDED: Fade effect on left edge */
  }
}

.theme-toggle-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(0, 0, 0, 0.05); /* Slight darkening for feedback, no opacity drop */
}

.nav-whisper-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-card);
  padding: 0 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--accent-primary);
  opacity: 1;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  z-index: 1010;
}

.hidden { display: none !important; }
.main-banner {
  width: 100%;
  aspect-ratio: 1550 / 350; /* Approx half height relative to marquee banner */
  object-fit: cover;
  object-position: center;
  display: block;
}

.logo {
  max-width: 120px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(101, 67, 33, 0.2));
}

/* --------------------------------------- */
/* STOKER PROMO BANNER */
.stoker-promo-banner {
  background: #1e1b18;
  color: #fdfbf7;
  padding: 0.75rem 1rem;
  margin: 0 -2.5rem 0 -2.5rem; /* Removed negative top margin to prevent overlapping */
  border-bottom: 2px solid #b8860b;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.stoker-promo-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.stoker-promo-content p {
  margin: 0;
  color: #fdfbf7;
}

.stoker-badge {
  background: #b8860b;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(184, 134, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

.stoker-promo-link {
  color: #d4b896;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.stoker-promo-link:hover {
  color: #fdfbf7;
  border-bottom-color: #fdfbf7;
}

@media (max-width: 600px) {
  .stoker-promo-banner {
    padding: 1rem;
  }
  .stoker-promo-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* --------------------------------------- */
/* SUPPORT RIBBON (PARTNER ADS) */
.support-ribbon {
  background: #f8f1e9;
  border-bottom: 1px solid #e8d4bb;
  padding: 0.5rem 1rem;
  margin: 0 -2.5rem 1rem -2.5rem; /* Stack below stoker banner, reduced bottom margin */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #8b6f47;
}

.ribbon-label {
  font-style: italic;
  opacity: 0.8;
}

.ribbon-links {
  display: flex;
  gap: 0.5rem;
}

.ribbon-link {
  color: #654321;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted #8b6f47;
  transition: all 0.2s ease;
  position: relative;
}

.ribbon-link:hover {
  color: #b8860b;
  border-bottom-color: #b8860b;
}

/* Optional: Slight pulse to draw eye without annoyed */
.ribbon-bold {
    color: #8b4513; 
    font-weight: 700;
}

@media (max-width: 600px) {
  .support-ribbon {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    padding: 0.75rem;
  }
}



.page-title-banner {
  background: #1e1b18;
  margin: 0 -2.5rem 1rem -2.5rem; /* Set to 0 to sit flush below menubar */
  padding: 0.75rem 1rem; /* Matched to stoker-promo-banner for consistency */
  border-bottom: 2px solid #654321;
  text-align: center;
}

.page-title-banner .sitename {
  display: none; /* Subpage headings removed as menubar handles navigation */
}

/* Global Tagline Standard - used across all pages */
.tagline {
  margin: 0;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; /* Nudged down slightly for sleeker fit */
  font-style: italic;
  font-weight: 500;
  color: #edb949;
  letter-spacing: 0.02em;
  opacity: 1;
}

/* --------------------------------------- */
/* ABOUT SECTION */
.about-section {
  background: linear-gradient(135deg, #fff8f0, #fef5eb);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid #e8d4bb;
  box-shadow: 0 2px 8px rgba(101, 67, 33, 0.08);
}

.about-section h2 {
  color: #654321;
  font-size: 1.3rem;
  margin: 0 0 0.8rem 0;
  font-weight: 600;
}

.about-section p {
  color: #5a4a3a;
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
  text-align: left;
  font-size: 0.95rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-text-wrapper {
  flex: 1;
  text-align: left;
}

.about-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.about-image {
  flex: 0 0 200px;
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(101, 67, 33, 0.1);
  border: 1px solid #d4b896;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 600px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}

.marketing-note {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(212, 184, 150, 0.1); 
  border: 1px dashed #d4b896;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.marketing-note p {
  margin: 0;
  color: #654321;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center !important;
}

.marketing-note strong {
  color: #8b4513;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
}

/* --------------------------------------- */
/* SMOKE SELECTOR */
.smoke-selector-container {
  margin-bottom: 2rem;
  text-align: left;
}


.selector-intro {
  color: #8b6f47;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: center;
}

.smoke-help-trigger {
  text-decoration: underline dotted;
  cursor: help;
  color: #b8860b;
  font-weight: 600;
  margin-left: 0.3rem;
  transition: color 0.3s ease;
}

.smoke-help-trigger:hover {
  color: #cd853f;
}

.process-explanation {
  background: #fff8f0;
  border: 1px solid #e8d4bb;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #5a4a3a;
  line-height: 1.5;
  text-align: left;
  border-left: 4px solid #b8860b;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.smoke-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.smoke-card {
  background: #ffffff;
  border: 2px solid #e8d4bb;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smoke-card:hover {
  border-color: #cd853f;
  box-shadow: 0 6px 16px rgba(101, 67, 33, 0.1);
}

.smoke-card.active {
  border-color: #b8860b;
  background: #fffbf0;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.15);
}

.smoke-card.active::after {
  content: '✓';
  position: absolute;
  top: 8px;
  left: 8px;
  background: #b8860b;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.smoke-icon {
  width: 70px;
  height: 120px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.smoke-icon img {
  width: auto;
  height: 120px; /* Force image height so plume fits */
  max-width: none;
  transition: all 0.3s ease;
  transform-origin: bottom center;
}

.smoke-card.active .smoke-icon img,
.smoke-card:hover .smoke-icon img {
  transform: scale(1.05);
}

.smoke-card h4 {
  margin: 0 0 0.2rem 0;
  color: #654321;
  font-size: 1.1rem;
}

.smoke-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.smoke-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.tasting-notes {
  font-size: 0.85rem;
  color: #5a4a3a;
  line-height: 1.4;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.smoke-keywords {
  display: flex;
  flex-wrap: nowrap; /* Force single line */
  gap: 0.3rem;
  justify-content: center;
  width: 100%;
  margin-top: auto; /* Extra insurance to stay at bottom */
}

.smoke-keywords span {
  font-size: 0.65rem; /* Slightly smaller to fit better */
  background: #f5e6d3;
  color: #654321;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap; /* No wrapping inside the tag */
  flex-shrink: 0;
}

.smoke-card.active .smoke-keywords span {
  background: #cd853f;
  color: white;
}

/* INFO BADGE & TOOLTIP */
.info-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: #fdfbf7;
  color: #b8860b;
  border: 1px solid #d4b896;
  border-radius: 50%;
  font-family: 'Playfair Display', serif; /* Use a serif for a more 'antique' i */
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(101, 67, 33, 0.1);
  z-index: 101; /* Ensure badge stays above the tooltip (100) to prevent flicker loops */
}

.info-badge:hover {
  background: #b8860b;
  color: #fffbf0;
  border-color: #b8860b;
  transform: scale(1.1);
}

/* UNIFIED CARD TOOLTIP STYLE */
.smoke-detail-tooltip,
.card-detail-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 33, 19, 0.99); /* Deeper, more opaque dark brown for better contrast */
  color: #fdfbf7;
  padding: 1.5rem;
  font-size: 0.9rem;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  transition-delay: 0ms;
  z-index: 100;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(4px);
  border-radius: inherit;
}

/* Updated Trigger: Only on Badge Hover for clinical precision */
.smoke-card:has(.info-badge:hover) .smoke-detail-tooltip,
.info-badge:hover ~ .smoke-detail-tooltip,
.info-badge:hover + .smoke-detail-tooltip { 
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms; /* Require clear intent */
}

/* Selection and Intent markers */
.smoke-card:hover {
  border-color: #d4b896;
  box-shadow: 0 6px 16px rgba(101, 67, 33, 0.1);
}

.smoke-detail-tooltip h5,
.card-detail-tooltip h5 {
  margin: 0 0 0.8rem 0;
  color: #d4b896; /* Signature Gold */
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 184, 150, 0.3);
  padding-bottom: 0.5rem;
}

.smoke-detail-tooltip p,
.card-detail-tooltip p {
  margin: 0;
  line-height: 1.6;
  color: #fdfbf7 !important; /* Force high-contrast off-white */
  font-weight: 400;
}

/* MOBILE RESPONSIVENESS FOR SMOKE SELECTOR */
@media (max-width: 768px) {
  .smoke-options {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .smoke-card {
    padding: 1.5rem;
    min-height: 280px; /* Ensure enough height for tooltip content */
  }
  
  .smoke-icon {
    width: 60px;
    height: 100px;
    margin: 0 auto 1rem;
  }

  .smoke-icon img {
    height: 100px;
  }
  
  .smoke-keywords {
    justify-content: center;
  }

  /* Adjust tooltip for mobile to be less intrusive or triggered differently */
  .smoke-detail-tooltip {
    position: absolute; /* Keep it as an overlay within the card */
    padding: 1rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  /* Cleanup mobile transform remnants */
  .smoke-card:active .smoke-detail-tooltip {
     opacity: 1;
     visibility: visible;
  }
}

.result, .error {
  margin-top: 1rem;
  text-align: left;
}

.hidden { display: none !important; }

/* --------------------------------------- */
/* STEP HEADERS */
.smoke-selector-container h3,
.url-action-container h3 {
  color: #654321;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; /* Match Recent Smokes header size */
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.url-action-container h1 {
  color: #654321;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  margin-top: 1rem;
  text-align: center;
}

.hero-subhead {
  font-size: 1rem;
  color: #8b6f47;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --------------------------------------- */
/* CTA & ONBOARDING */
.about-cta-line {
  margin-top: 1.5rem !important;
  font-weight: 500;
  color: #654321;
}

.cta-accent {
  color: #b8860b;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cta-accent:hover {
  color: #cd853f;
}

/* --------------------------------------- */
/* HERO ACTION ZONE */
.hero-action-zone {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

[data-theme="dark"] .hero-action-zone {
  background: rgba(212, 184, 150, 0.1);
  border: 1px solid #2d2d30;
}

.url-action-container {
  margin-bottom: 2rem;
}

.url-examples {
  margin-top: 0.5rem;
  text-align: center; /* Center to match section 1's title/intro */
}

.url-examples p {
  font-size: 0.9rem;
  color: #8b6f47;
  font-style: italic;
  margin: 0;
}

.example-link {
  color: #b8860b;
  font-weight: 600;
  text-decoration: underline dotted;
  cursor: pointer;
  transition: color 0.3s ease;
}

.example-link:hover {
  color: #cd853f;
}

.urlRow {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  align-items: center; /* Vertical center */
}

.urlRow input[type="url"] {
  flex: 1; /* Spans the width */
  min-width: 0;
  padding: 0.7rem;
  border: 2px solid #d4b896;
  border-radius: 8px;
  max-height: 3em;
  overflow-y: auto;
  display: block;
  box-sizing: border-box;
  font-size: 0.95rem;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 600px) {
  .urlRow {
    flex-direction: column;
    align-items: stretch;
  }
}

.urlRow input[type="url"]::placeholder {
  font-size: 0.7rem;
  color: #a08a6a;
  opacity: 0.7; 
}

.urlRow input[type="url"]:focus {
  outline: none;
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.urlRow button {
  flex: 0 0 auto;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #b8860b, #cd853f);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 0;
  display: block;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.urlRow button:hover {
  background: linear-gradient(135deg, #cd853f, #daa520);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.urlRow button:active {
  transform: translateY(0);
}



/* --------------------------------------- */
/* PROGRESS BOX */
.progress-box {
  font-style: italic;
  color: #5a4a3a;
  font-size: 0.9em;
  margin-top: 0.5rem;
  min-height: 1.2em; /* prevents layout jump when text appears */
}

.progress-box.hidden {
  display: none;
}

#progressBox {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #fff8f0;
  border-left: 4px solid #cd853f;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #5a4a3a;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

#progressBox.visible {
  opacity: 1;
}

#progressBox.error-state {
  background: #fee2e2 !important;
  border-left: 4px solid #ef4444 !important;
  color: #991b1b !important;
}

@keyframes highlightGlow {
  0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); border-color: #b8860b; }
  50% { box-shadow: 0 0 15px 5px rgba(184, 134, 11, 0.2); border-color: #cd853f; }
  100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); border-color: #d4b896; }
}

.highlight-glow {
  animation: highlightGlow 1.5s ease-out;
}

/* --------------------------------------- */
/* RESULT ANIMATION */
.result {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.result.visible {
  opacity: 1;
}

/* --------------------------------------- */
/* PROPERTY HEADER */
#propertyName {
  margin-bottom: 0.2rem;
}

.property-location {
  margin: 0 0 1rem 0;
  color: #8b6f47;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
}

/* --------------------------------------- */
/* PROPERTY STATS */
.property-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0.5rem 0 2rem 0;
  color: #5a4a3a;
  font-size: 0.95rem;
  font-weight: 500;
}

.property-stats span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #654321;
}

.property-stats span svg {
  width: 22px;
  height: 22px;
  stroke: #8b6f47;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* MOBILE RESPONSIVENESS FOR HEADER */
@media (max-width: 768px) {
  #propertyName {
    font-size: 1.6rem;
  }
  
  .property-location {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .property-stats {
    gap: 0.8rem;
    font-size: 0.85rem;
  }

  .property-stats span svg {
    width: 18px;
    height: 18px;
  }
}

.analysis-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

/* --------------------------------------- */
/* IMAGE + MAP ROW */
#imageMapRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mediaItem {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

#propertyThumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mapContainer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* STACK IMAGE + MAP ON MOBILE */
@media (max-width: 600px) {
  #imageMapRow {
    grid-template-columns: 1fr;  /* stack */
    gap: 1rem;
  }

  .mediaItem img {
    width: 100%;
    height: auto;
  }

  #mapContainer {
    aspect-ratio: auto;
    height: 250px;
    width: 100%;
  }

  #mapContainer iframe {
    width: 100%;
    height: 100%;
  }
}

/* --------------------------------------- */
/* SUMMARY CARDS */
.summary-section {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.summary-card {
  background: #fff8f0;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(101, 67, 33, 0.08);
  border: 1px solid #e8d4bb;
  position: relative; /* For info-badge alignment */
  overflow: hidden;    /* Keep tooltips contained */
}

[data-theme="dark"] .summary-card {
  background: rgba(212, 184, 150, 0.1); /* Match partner section and recent smokes */
  border: 1px solid rgba(212, 184, 150, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* CHART HEADER & TOGGLE */
.chart-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.6rem;
}

.chart-header h3 {
  margin: 0 !important;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.toggle-label {
  font-size: 0.8rem;
  color: #8b6f47;
  font-weight: 600;
}

/* THEMED TOGGLE SWITCH */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d4b896;
  transition: .3s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #b8860b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #b8860b;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

@media (max-width: 600px) {
  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}


.summary-card:has(.info-badge:hover) .card-detail-tooltip,
.summary-card .info-badge:hover ~ .card-detail-tooltip,
.summary-card .info-badge:hover + .card-detail-tooltip {
  opacity: 1;
  visibility: visible;
  transition-delay: 300ms;
}

/* --------------------------------------- */
/* RATINGS CHART & RECOMMENDATIONS */
.recommendation-summary-bar {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  color: #92400e;
  font-family: 'Playfair Display', serif; /* Use a sophisticated serif fallback for 'assessment' feel */
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 10px rgba(184, 134, 11, 0.05);
}

.recommendation-summary-bar::before {
  content: '★';
  margin-right: 0.5rem;
  color: #b8860b;
}

.recommendation-fragment-highlight {
  background-color: #fef08a; /* Soft yellow marker */
  color: #854d0e;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.summary-card.chart-card {
  background: linear-gradient(135deg, #fffbf5, #fff8f0);
}

.summary-card.improvement {
  border-left: 4px solid #cd853f;
  background: linear-gradient(135deg, #fef5eb, #fff0e0);
}

.summary-card p {
  margin: 0;
  line-height: 1.45;
  color: #5a4a3a;
}

/* FEEDBACK BUTTONS */
.feedback-container {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 184, 150, 0.3);
  text-align: left;
}

.feedback-label {
  display: block;
  font-size: 0.8rem;
  color: #8b6f47;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.feedback-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: space-between; /* Smokin/Soggy left, Share right */
  align-items: center;
}

/* Stack on mobile */
@media (max-width: 600px) {
  .feedback-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.feedback-btn {
  background: #fdfbf7;
  border: 1px solid #d4b896;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #654321;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  white-space: nowrap; /* Prevent text wrapping inside button */
  min-width: 140px; /* Ensure buttons have a solid footprint */
}

.feedback-btn:hover {
  background: #fff8eb;
  border-color: #b8860b;
  transform: translateY(-1px);
}

.feedback-btn.active {
  background: #b8860b;
  color: white;
  border-color: #b8860b;
}

#thumbsUp.active {
  background: #339966;
  border-color: #339966;
}

#thumbsDown.active {
  background: #CC3333;
  border-color: #CC3333;
}

.feedback-img, .share-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.share-btn {
  background: rgba(45, 33, 19, 0.99); /* Match hover panel color exactly */
  color: #f1f5f9;
  border-color: #5a4a3a;
  margin-left: auto; /* Push to right */
}

.share-btn:hover {
  background: rgba(45, 33, 19, 1); /* Fully opaque on hover */
  border-color: #fbbf24;
}


.feedback-thanks {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #339966;
  font-weight: 600;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------- */
/* OPTIONAL: SHIMMER (nice for loading) */
.skeleton {
  background: linear-gradient(
    90deg,
    #eee 0%,
    #f6f6f6 50%,
    #eee 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --------------------------------------- */
/* CHART STYLES */
.chart-card {
  grid-column: 1 / -1;
  margin-top: 2rem;
  background: #fffbf5;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(101, 67, 33, 0.1);
  border: 1px solid #e8d4bb;
  transition: transform 0.3s ease;
}

.chart-card:hover {
  transform: translateY(-2px);
}

.chart-container {
  width: 100%;
  height: 220px;
  position: relative;
  margin-top: 1rem;
}

.chart-note {
  font-size: 0.75rem;
  color: #8b6f47;
  margin-top: 1rem;
  font-style: italic;
}

/* --------------------------------------- */
/* FLAME CURSOR STYLES */

.smoking {
  cursor: none !important;
}

.smoking * {
  cursor: none !important;
}

#flameContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
  display: none;
}

.smoking #flameContainer {
  display: block;
}

.flame {
  position: absolute;
  width: 14px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, #ff4500);
  border-radius: 50% 50% 20% 20% / 100% 100% 20% 20%;
  transform: translate(-50%, -90%);
  filter: blur(0.5px); /* Reduced blur for sharper boundary */
  animation: flicker 0.15s infinite alternate ease-in-out;
  transform-origin: bottom center;
  /* Sharp dark shadow to define the edge on light backgrounds */
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.4));
  z-index: 10000;
}

.flame::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 20px;
  background: #ff8c00;
  border-radius: 50% 50% 20% 20% / 100% 100% 20% 20%;
  filter: blur(0.5px);
  animation: flicker-inner 0.1s infinite alternate-reverse;
}

.flame::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: #ffffff;
  border-radius: 50% 50% 20% 20% / 100% 100% 20% 20%;
  box-shadow: 0 0 8px #ffffff;
}

/* Smoke particles - Darker for visibility on light BG */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@keyframes flicker {
  0% { 
    height: 28px;
    transform: translate(-50%, -90%) scaleX(0.9) rotate(-2deg);
  }
  100% { 
    height: 32px;
    transform: translate(-50%, -90%) scaleX(1.1) rotate(2deg);
  }
}

@keyframes flicker-inner {
  0% { transform: translateX(-50%) scale(0.9); }
  100% { transform: translateX(-50%) scale(1.1); }
}

/* --------------------------------------- */
/* AFFILIATE / PROVISIONS CARD */

.affiliate-card {
  margin-top: 1.5rem;
  background: #fffbf7; /* Slightly lighter than standard summary card */
  border-color: #d4b896;
}

.affiliate-card h3 {
  border-bottom: 1px dashed #d4b896;
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}

.affiliate-intro {
  font-style: italic;
  font-size: 0.95rem;
  color: #8c6b4a; /* Muted brown */
  margin-bottom: 5rem; /* Significantly more spacing */
}

.affiliate-links-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.affiliate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  /* Add a transparent border so hover state doesn't shift pixels */
  border: 2px solid transparent; 
  box-sizing: border-box; /* Lock dimensions including border */
  border-radius: 50%; /* Make it a circle */
  width: 74px; 
  height: 74px; 
  flex-shrink: 0; 
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: none;
  overflow: hidden;
  /* Fix for sub-pixel shifting/jitter on transform */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0); 
}

.affiliate-btn:hover {
  /* Only scale, don't move. Moving combined with scaling often causes the jitter. */
  transform: scale(1.1); 
  /* Highlight border on hover */
  /* Highlight border on hover */
  border-color: #b8860b; 
  /* Using a darker, more vivid shadow to mimic a 'highlight' */
  box-shadow: 0 0 10px 2px rgba(184, 134, 11, 0.6); 
  filter: brightness(1.1);
}

.affiliate-logo {
  width: 100%; /* Fill the entire button area */
  height: 100%;
  object-fit: cover; /* Cover ensures it fills without empty space, though cropping may occur if aspect ratio differs */
  margin-bottom: 0;
  filter: opacity(0.9);
  transition: filter 0.3s ease;
}

.affiliate-btn:hover .affiliate-logo {
  filter: opacity(1);
}

.affiliate-name {
  display: none; /* Hide name entirely */
}

/* Specific logic to balance visual weight */
.affiliate-btn img[alt="HomeToGo"] {
  transform: scale(1.05); /* Slightly boosted, but aligned better with others */
}

.affiliate-btn img[alt="Holidu"] {
  transform: scale(0.9); /* Nudged down so the circle doesn't feel 'oversuffed' compared to Airbnb/Booking */
}


/* --------------------------------------- */
/* TESTIMONIALS CAROUSEL */

.testimonial-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #d4b896;
  text-align: center;
  /* Fade transition for the container */
  opacity: 0;
  transition: opacity 1s ease;
}

.testimonial-section.visible {
  opacity: 1;
}

.testimonial-header {
  font-family: 'Inter', serif; /* Or a serif font if imported */
  font-style: italic;
  font-weight: 500;
  color: #8c6b4a;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-text {
  font-family: 'Georgia', serif; /* Using Georgia for that 'book' feel */
  font-size: 1.1rem;
  line-height: 1.5;
  color: #5a4a3a;
  font-style: italic;
  max-width: 80%;
  margin: 0 auto 0.5rem auto;
  min-height: 3.5rem; /* Reserve space to prevent jarring jumps */
  
  /* Text fade transition */
  transition: opacity 0.8s ease;
  opacity: 1;
}

.testimonial-text.fade-out {
  opacity: 0;
}

.testimonial-author {
  font-size: 0.85rem;
  color: #b8860b; /* Gold accent */
  font-weight: 600;
  
  /* Text fade transition */
  transition: opacity 0.8s ease;
  opacity: 1;
}

.testimonial-author.fade-out {
  opacity: 0;
}

/* --------------------------------------- */
/* SITE FOOTER */
.site-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #d4b896;
  text-align: left;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem; /* Increase to match Disclosure padding-top for equidistance */
}

.footer-col h4 {
  color: #654321;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0; /* Explicitly reset top margin to 0 */
  font-weight: 700;
}

.manifesto p {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #8b6f47;
  line-height: 1.4;
  margin: 0; 
  padding-left: 0.5rem; /* Set away from the container edge */
}

.provisions nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.provisions a {
  color: #5a4a3a;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.provisions a:hover {
  color: #b8860b;
  text-decoration: underline;
}

.hearth p {
  font-size: 0.9rem;
  color: #5a4a3a;
  margin: 0;
}

.hearth .copyright, .hearth .support-contact {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.ember {
  display: inline-block;
  animation: emberFlicker 1.5s infinite alternate;
}

@keyframes emberFlicker {
  from { filter: drop-shadow(0 0 1px orange); transform: scale(1); }
  to { filter: drop-shadow(0 0 4px red); transform: scale(1.1); }
}

.footer-disclosure {
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 184, 150, 0.4);
  font-size: 0.75rem;
  color: #8b6f47;
  line-height: 1.4;
}

.footer-disclosure p {
  margin: 0; /* Reset margins to ensure equidistance is governed by padding */
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .provisions nav {
    align-items: center;
  }

  .manifesto p {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
}

/* --------------------------------------- */
/* HOW IT WORKS PAGE */
.how-it-works-page {
  text-align: left;
}

.how-it-works-page .header {
  text-align: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* Increased gap for a more spacious, professional feel */
  margin-top: 2rem;
}

.how-it-works-page .summary-card {
  padding: 2rem; /* More generous internal padding */
}

.how-it-works-page .summary-card h4 {
  margin-top: 1.5rem; /* Space out sub-headings */
}

.how-it-works-list {
  margin: 1.2rem 0;
  padding-left: 1.5rem;
  list-style-type: none;
}

.how-it-works-list li {
  margin-bottom: 0.8rem;
  position: relative;
  line-height: 1.5;
  color: #5a4a3a;
  font-size: 0.95rem;
}

.how-it-works-list li::before {
  content: '•';
  color: #b8860b;
  font-weight: bold;
  position: absolute;
  left: -1.2rem;
}

.back-home {
  margin: 2rem 0;
  text-align: center;
}

/* .home-btn definition removed to resolve conflict with newer style at line 2142 */

.logo-link {
  display: block;
  text-decoration: none;
}

.disclosure-inline {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 184, 150, 0.3);
  font-size: 0.85rem;
  color: #8b6f47;
  font-style: italic;
  line-height: 1.5;
}
/* --------------------------------------- */
/* REVIEW SPOTLIGHT CARD */
.spotlight-card {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #fffbf5, #fdfbf7);
  border-left: 4px solid #b8860b;
  animation: fadeInSpotlight 0.4s ease-out;
}

@keyframes fadeInSpotlight {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 184, 150, 0.3);
}

.spotlight-header .stars {
  font-size: 1.2rem;
  color: #b8860b;
  font-weight: bold;
}

.spotlight-header .date {
  font-size: 0.9rem;
  color: #8b6f47;
  font-style: italic;
}

.spotlight-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a4a3a;
  white-space: pre-wrap; /* Preserve line breaks from Airbnb */
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom scrollbar for long reviews */
.spotlight-text::-webkit-scrollbar {
  width: 6px;
}
.spotlight-text::-webkit-scrollbar-track {
  background: rgba(212, 184, 150, 0.1);
}
.spotlight-text::-webkit-scrollbar-thumb {
  background: #d4b896;
  border-radius: 3px;
}

.close-spotlight {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #8b6f47;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  line-height: 1;
}

.close-spotlight:hover {
  color: #654321;
}

/* --------------------------------------- */
/* FEEDBACK & SHARE BUTTONS */
.feedback-container {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 184, 150, 0.3);
  text-align: left;
}

.feedback-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.feedback-btn {
  background: #fdfbf7;
  border: 1px solid #d4b896;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #654321;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 140px;
  justify-content: center;
}

.feedback-btn:hover {
  background: #fff8eb;
  border-color: #b8860b;
  transform: translateY(-1px);
}

.share-btn {
  background: rgba(45, 33, 19, 0.99); /* Match hover panel color exactly */
  color: #f1f5f9;
  border-color: #5a4a3a;
  margin-left: auto; /* Push to right */
}

.share-btn:hover {
  background: rgba(45, 33, 19, 1); /* Fully opaque on hover */
  border-color: #fbbf24;
}


.feedback-img, .share-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .feedback-buttons {
    flex-direction: column;
  }
  .feedback-btn {
    width: 100%;
  }
}

/* --------------------------------------- */
/* RECENT SMOKES SECTION */

.recent-smokes-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #d4b896;
  text-align: center;
}

[data-theme="dark"] .recent-smokes-section {
  background: rgba(212, 184, 150, 0.1); /* Match support-partners-row */
  border: 1px solid rgba(212, 184, 150, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  border-top: none; /* Remove the top border since we have a full border now */
}

.recent-smokes-section h3 {
  color: #654321;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.recent-smokes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.recent-smoke-card {
  background: #fff8f0;
  border: 1px solid #e8d4bb;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: left;
  text-decoration: none;
  color: #5a4a3a;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(101, 67, 33, 0.05);
}

.recent-smoke-card:hover {
  transform: translateY(-4px);
  border-color: #b8860b;
  box-shadow: 0 6px 16px rgba(101, 67, 33, 0.1);
  background: #fffbf5;
}

.recent-smoke-card .card-top {
  margin-bottom: auto; /* Pushes the body and footer to the bottom */
  padding-bottom: 1rem;
  min-height: 85px; /* Aligns the start of the stats/summary block */
}

.recent-smoke-card h4 {
  margin: 0 0 0.3rem 0;
  color: #654321;
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-smoke-card .location {
  font-size: 0.75rem;
  color: #8b6f47;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-smoke-card .card-body {
  margin-bottom: 0.8rem;
}

.card-stats {
  display: flex;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: #654321;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

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

.card-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(212, 184, 150, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

.card-stats svg {
  width: 14px;
  height: 14px;
  stroke: #8b6f47;
}

.card-summary {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #5a4a3a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: italic;
}

.recent-smoke-card .card-footer {
  border-top: 1px dashed rgba(212, 184, 150, 0.4);
  padding-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recent-smoke-card .timestamp {
  font-size: 0.75rem;
  color: #a08a6a;
}

.card-finish {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.finish-balanced { background: #e0f2f1; color: #00695c; } /* Peat Fire themed? Actually Peat is brown. */
.finish-complimentary { background: #f1f8e9; color: #33691e; }
.finish-critical { background: #fff3e0; color: #e65100; }

/* Let's redo those colors to be more "Reestit" */
.finish-balanced { background: rgba(101, 67, 33, 0.1); color: #654321; } /* Peat */
.finish-complimentary { background: rgba(122, 145, 122, 0.15); color: #2e3d2e; } /* Birch/Greenish */
.finish-critical { background: rgba(160, 82, 45, 0.15); color: #8b4513; } /* Salt/Sienna */

.view-all-smokes {
  margin-top: 1.5rem;
}

.view-all-link {
  color: #b8860b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px dotted #b8860b;
  transition: all 0.2s ease;
}

.view-all-link:hover {
  color: #654321;
  border-bottom-style: solid;
}

/* Neutral "Back to Hearth" style that fits everywhere */
.home-btn {
  display: inline-block;
  color: #6b7280; /* Neutral gray */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid transparent; 
  transition: all 0.2s ease;
  margin-top: 1.5rem;
  padding-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-btn:hover {
  color: #b45309; /* Deep amber/rust on hover */
  border-bottom-color: #b45309;
}

/* Specific styling for the Walls of Flame page cards */

.wall-of-flame .recent-smoke-card .card-summary {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #3d342c;
  transform: rotate(-0.5deg);
  margin-top: 0.2rem;
}

/* --------------------------------------- */
/* SUBTLE SUPPORT ROW PANEL */
.support-partners-row {
  margin: 1.5rem auto; /* Significantly tighter spacing */
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(212, 184, 150, 0.1); /* Extremely subtle tint */
  border: 1px solid rgba(212, 184, 150, 0.2);
  border-radius: 12px;
}

.support-partners-row.hidden {
  display: none !important;
}

.support-label {
  font-size: 0.75rem;
  color: #8b6f47;
  font-style: italic;
  font-weight: 500;
}

.support-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 800px;
}

.support-logos span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #654321;
}

.support-logos .affiliate-btn {
  width: auto;      /* Override fixed circle width */
  height: auto;     /* Override fixed circle height */
  min-height: 0;    /* Remove any minimum height constraints */
  border-radius: 50px; /* Ensure pill/lozenge shape */
  padding: 0.4rem 1.4rem; /* Slimmer height */
  display: flex;
  align-items: center;
  background: #fdfbf7;
  border: 1px solid #d4b896;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(101, 67, 33, 0.05);
}

.support-logos .affiliate-btn:hover {
  background: #fff8eb;
  border-color: #b8860b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(101, 67, 33, 0.12);
}

/* Dark mode styling for partner support section */
[data-theme="dark"] .support-label {
  color: var(--text-secondary); /* Lighter text for dark mode */
}

[data-theme="dark"] .support-logos span {
  color: var(--text-main); /* Lighter text for dark mode */
}

[data-theme="dark"] .support-logos .affiliate-btn {
  background: var(--bg-card); /* Dark background like recent smoke cards */
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

[data-theme="dark"] .support-logos .affiliate-btn:hover {
  background: var(--bg-highlight);
  border-color: var(--accent-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .support-logos {
    gap: 0.8rem;
  }
  .support-logos a {
    padding: 0.4rem 1rem;
  }
  .support-logos span {
    font-size: 0.8rem;
  }

}

/* --------------------------------------- */
/* PARTIAL DATA WARNING */
.partial-warning {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff8e1; /* Amber/Yellow tint */
  border: 1px solid #ffe0b2;
  border-left: 4px solid #ffb74d;
  color: #bf360c;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeIn 0.5s ease-out;
}

.partial-warning svg {
  flex-shrink: 0;
  color: #f57c00;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------- */
/* HYBRID UX & EXPERIMENTAL LAYOUT */
/* --------------------------------------- */

.hero-action-zone {
  margin-top: 0.25rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem 1rem 1.5rem; /* Reduced top padding to move text up */
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px dashed #d4b896;
}

#smoke-finish.experimental-hidden {
  display: none !important;
}

#smoke-finish.experimental-visible {
  display: block !important;
  animation: fadeInDown 0.5s ease forwards;
}

/* Better anchors: Give them some breathing room from the top of the viewport */
#propertyName {
  scroll-margin-top: 2rem;
}

#progressBox {
  scroll-margin-top: 10vh;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Adjusting margins for the reordered sections */
.url-action-container {
    margin-bottom: 1rem;
}

.url-action-container h3 {
    margin-top: 0.2rem; /* Minimal top space */
}

/* Redesigned Progress Box: Now internal to the Hero */
#progressBox {
  margin: 1.5rem auto 0 auto !important;
  padding: 1rem !important;
  background: rgba(255, 248, 240, 0.9) !important;
  border: 1px solid #cd853f !important;
  border-radius: 8px !important;
  font-size: 1.1rem !important;
  color: #5a4a3a !important;
  max-width: 500px !important;
  text-align: center !important;
  box-shadow: 0 4px 12px rgba(205, 133, 63, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
  opacity: 1 !important; /* Force visibility when not hidden */
  transform: none !important;
  transition: none !important;
}

#progressBox::before {
  content: '🔥';
  font-size: 1.5rem;
  animation: pulseHeart 1.5s infinite ease-in-out;
}

@keyframes pulseHeart {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

#progressBox.hidden {
  display: none !important;
}

/* Focus Mode: Clean up the Hero when smoking is active */
body.smoking .urlRow input,
body.smoking .urlRow button {
  opacity: 0.6;
  pointer-events: none;
}

body.smoking .url-examples,
body.smoking #smoke-finish {
  display: none !important;
}

/* --- FIRST-TIMER MODAL --- */
#aboutModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 27, 24, 0.85); /* Dark smoky */
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* Enable scrolling if content overflows */
  padding: 2rem 1rem; /* Padding for when content hits edges */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#aboutModal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.about-modal-box {
  background: #fdfbf7;
  max-width: 750px;
  width: 90%;
  padding: 3rem;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid #d4b896;
  text-align: left;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#aboutModal.is-visible .about-modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #5a4a3a;
  line-height: 1;
}

.modal-cta-container {
  margin-top: 2rem;
  text-align: center;
}

.dismiss-cta {
  background: #654321;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.dismiss-cta:hover {
  transform: scale(1.05);
  background: #4a3219;
}

.first-timer-badge {
  display: inline-block;
  background: #f3f4f6;
  color: #6b7280;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Ensure images in the modal don't blow up on mobile */
.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

/* MOBILE RESPONSIVENESS FOR THE MODAL */
@media (max-width: 600px) {
  #aboutModal {
    align-items: flex-start !important; /* Start at top so scrolling works naturally */
  }

  .about-modal-box {
    padding: 1.5rem !important;
    margin: 2rem auto !important; /* Center horizontally with margin for scroll room */
    width: 95% !important;
  }

  .about-content {
    flex-direction: column !important;
  }

  .about-modal-box h2 {
    font-size: 1.5rem !important;
  }

  .dismiss-cta {
    width: 100% !important; /* Full width button for easier tapping */
    padding: 1rem !important;
  }
}

/* --- TESTIMONIAL WISP --- */
.testimonial-wisp {
  margin-top: 1rem;
  min-height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.testimonial-wisp.fading {
  opacity: 0;
}

.wisp-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #8b6f47;
  max-width: 600px;
  line-height: 1.4;
  margin-bottom: 0.3rem;
  position: relative;
  padding: 0 1rem; /* Space for quote marks */
  
  /* Clamp to 3 lines with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wisp-text::before,
.wisp-text::after {
  content: '"';
  font-size: 2rem;
  opacity: 0.25;
  position: absolute;
  font-family: 'Playfair Display', serif;
  color: #8b6f47;
  line-height: 1;
}

.wisp-text::before {
  left: 0;
  top: -0.3rem;
}

.wisp-text::after {
  right: 0;
  bottom: -0.5rem;
}

.wisp-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #bfa38a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media (max-width: 600px) {
  .testimonial-wisp {
    margin-top: 1.5rem;
    min-height: 7rem; /* Increased for 4 lines */
  }
  
  .wisp-text {
    font-size: 0.8rem;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

/* --- HERO TRANSITION ZONE --- */
.hero-transition-zone {
  /* Removed min-height to prevent unwanted spacing */
  position: relative;
}

.testimonial-wisp.hidden-state {
  display: none !important;
}
/* --------------------------------------- */
/* FOOTER VITALS (THE MASTER BLENDER'S LEDGER) */
.footer-vitals {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px dashed rgba(212, 184, 150, 0.2);
  padding-top: 1rem;
}

.footer-vital-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.vital-count {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #edb949;
  min-width: 4.5rem;
  text-align: right;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.vital-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #948b80;
  font-weight: 600;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .manifesto p {
    text-align: center;
  }
  .footer-vitals {
    align-items: flex-start; /* Maintains internal right-justification/left-alignment */
    width: fit-content;
    margin: 1.25rem auto 0;
    border-top: 1px solid rgba(212, 184, 150, 0.1);
  }
}

/* --------------------------------------- */
/* WELCOME SIGNPOST (Non-disruptive intro) */
.welcome-signpost {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #fdfbf7;
  border: 1px solid #654321;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(101, 67, 33, 0.2);
  z-index: 4000;
  max-width: 320px;
  animation: signpostSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

@keyframes signpostSlideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.welcome-signpost p {
  margin: 0;
  font-size: 0.95rem;
  color: #1e1b18;
  line-height: 1.5;
}

.welcome-signpost .signpost-link {
  color: #654321;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.welcome-signpost .signpost-link:hover {
  text-decoration: underline;
}

.welcome-signpost .close-signpost {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: #a19d99;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
}

.welcome-signpost.hidden {
  display: none !important;
}

/* --------------------------------------- */
/* COMPREHENSIVE DARK MODE (Legacy Support) */
[data-theme="dark"] body {
  background: var(--bg-body) !important;
  color: var(--text-main) !important;
}

[data-theme="dark"] a {
  color: var(--accent-primary); 
  text-decoration-color: var(--accent-primary);
}

[data-theme="dark"] a:hover {
  color: #fbbf24;
}

[data-theme="dark"] .container {
  background: var(--bg-card) !important;
  border-color: var(--border-subtle) !important;
  box-shadow: var(--shadow-main) !important;
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4 {
  color: var(--text-main) !important;
}

[data-theme="dark"] .hero-subhead {
  color: var(--text-main) !important; /* Boosted for contrast */
  opacity: 0.9;
}

[data-theme="dark"] .support-ribbon {
  background: var(--bg-ribbon) !important;
  border-bottom-color: var(--border-subtle) !important;
}

[data-theme="dark"] .urlRow input[type="url"] {
  background: var(--bg-input) !important;
  border-color: var(--border-subtle) !important;
  color: var(--text-main) !important;
}

[data-theme="dark"] .urlRow input[type="url"]::placeholder {
  color: #a19d99 !important; /* Brighter grey */
  opacity: 0.8 !important;   /* Less transparency */
}

[data-theme="dark"] .url-examples p,
[data-theme="dark"] .wisp-text,
[data-theme="dark"] .manifesto-body p,
[data-theme="dark"] .summary-card p,
[data-theme="dark"] .how-it-works-list li {
  color: var(--text-main) !important;
  opacity: 0.95;
}

[data-theme="dark"] .wisp-author {
  color: #e4e4e7 !important; /* Extremely light grey (almost white) */
}

/* Dark Mode Home Button Override */
[data-theme="dark"] .home-btn {
  color: #9ca3af !important; /* Lighter cool gray */
}
[data-theme="dark"] .home-btn:hover {
  color: #fbbf24 !important; /* Bright amber */
  border-bottom-color: #fbbf24 !important;
}

[data-theme="dark"] .example-link,
[data-theme="dark"] .manifesto-subtitle {
  color: #fbbf24 !important; /* Bright amber */
}

[data-theme="dark"] .how-it-works-list li strong {
  color: #fff !important; /* Pure white for emphasis */
}

[data-theme="dark"] #submitBtn {
  box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
}

/* CARDS: Smoke Selectors, Summaries, and Smokes */
[data-theme="dark"] .smoke-card,
[data-theme="dark"] .summary-card,
[data-theme="dark"] .recent-smoke-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .about-section {
  background: var(--bg-input) !important;
  border-color: var(--border-subtle) !important;
  color: var(--text-main) !important;
}

[data-theme="dark"] .recent-smoke-card h4,
[data-theme="dark"] .blog-card h3,
[data-theme="dark"] .blog-card h4,
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .hero-text h1,
[data-theme="dark"] .about-section h2,
[data-theme="dark"] .vital-count {
  color: var(--text-main) !important;
}

[data-theme="dark"] .tasting-notes,
[data-theme="dark"] .about-section p,
[data-theme="dark"] .blog-card p,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .hero-text p,
[data-theme="dark"] .selector-intro,
[data-theme="dark"] .smoke-out-meta,
[data-theme="dark"] .vital-label,
[data-theme="dark"] .provisions a,
[data-theme="dark"] .hearth p,
[data-theme="dark"] .manifesto p {
  color: var(--text-secondary) !important;
}

[data-theme="dark"] .hearth .copyright,
[data-theme="dark"] .hearth .support-contact {
  color: var(--text-muted) !important;
}

/* Walls of Flame: Handwritten Font Boost */
[data-theme="dark"] .wall-of-flame .recent-smoke-card .card-summary {
  color: #c9b7a4 !important; /* Soft parchment white for Caveat font legibility */
  opacity: 1;
}

[data-theme="dark"] .card-stats span {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-main) !important;
}

[data-theme="dark"] .card-stats svg {
  stroke: var(--text-secondary) !important;
}

[data-theme="dark"] .recent-smoke-card .timestamp {
  color: var(--text-muted) !important;
}

/* Finish Badge Overrides for Dark Mode */
[data-theme="dark"] .finish-balanced { background: rgba(189, 91, 45, 0.2) !important; color: #ff9d6e !important; }
[data-theme="dark"] .finish-complimentary { background: rgba(122, 145, 122, 0.2) !important; color: #a8c6a8 !important; }
[data-theme="dark"] .finish-critical { background: rgba(160, 82, 45, 0.2) !important; color: #ffa07a !important; }

[data-theme="dark"] .smoke-card.active {
  border-color: var(--accent-primary) !important;
  background: rgba(189, 91, 45, 0.1) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
}

[data-theme="dark"] .smoke-subtitle {
  color: var(--accent-primary) !important;
}

[data-theme="dark"] .smoke-keywords span {
  background: #2a2a2d !important;
  color: var(--text-muted) !important;
  border-color: #3f3f46 !important;
}

[data-theme="dark"] .smoke-card.active .smoke-keywords span {
  background: var(--accent-primary) !important;
  color: #fff !important;
}

[data-theme="dark"] .blog-cta {
  background: var(--accent-primary) !important;
  color: #fff !important;
  border-color: var(--accent-primary) !important;
}

[data-theme="dark"] .blog-cta:hover {
  background: transparent !important;
  color: #fbbf24 !important; /* Bright amber on hover */
  border-color: #fbbf24 !important;
}

/* High Contrast Stoker Buttons for Dark Mode */
[data-theme="dark"] .stoker-cta-btn,
[data-theme="dark"] .chrome-store-btn {
  background: #fbbf24 !important; /* Bright Amber Background */
  color: #000000 !important;      /* Pitch Black Text - Max Contrast */
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
  border: 1px solid #fbbf24 !important;
}

[data-theme="dark"] .stoker-cta-btn:hover,
[data-theme="dark"] .chrome-store-btn:hover {
  background: #f59e0b !important; /* Slightly darker amber on hover */
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
}

[data-theme="dark"] .site-footer {
  background: #09090a !important;
  border-top-color: var(--border-subtle) !important;
}

[data-theme="dark"] .footer-col h4 {
  color: var(--accent-primary) !important;
}

[data-theme="dark"] .nav-whisper-container {
  background: var(--bg-card) !important;
}
