/* VIBE Styles - Standalone Design for easycosmetic.de VIBE sub-application */
/* Works independently of easycosmetic.de shell CSS */

/* =================================================================
   Shell SVG Sprite Fix - Hide broken SVG sprite images
   Shell uses SVG sprites with fragment IDs (e.g., sprite.svg#home-icon)
   which don't work cross-origin via <img> tags. The shell's JS should
   inline these, but it fails in dev/staging. Hide them to prevent
   giant SVG icons from filling the viewport.
   ================================================================= */
img[data-inlined="true"] {
  display: none !important;
}

/* =================================================================
   Shell Overlay Fix - Hide blocking overlay after domain choice dismissed
   Shell's overlay element (used for modals/loading) blocks content
   on some domains (.be, .nl). Only hide after user dismisses domain popup.
   vibe-domain-dismissed class is added when localStorage vibe_domain_choice = 'dismissed'
   ================================================================= */
body.vibe-domain-dismissed > .overlay[style*="display: block"],
body.vibe-domain-dismissed > .overlay[style*="display:block"],
body.vibe-domain-dismissed .overlay[style*="z-index: 1010"],
body.vibe-domain-dismissed .overlay[style*="z-index:1010"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =================================================================
   Font Overrides - MOVED TO routes.ts generateFontOverrideCss()
   Dynamic generation handles environment-specific font paths:
   - development/staging: /v/fonts/
   - production: https://www.easycosmetic.de/WebFonts/
   ================================================================= */

/* =================================================================
   No global box-sizing reset - let elements use browser defaults
   This preserves shell element styling (header, footer, autocomplete)
   ================================================================= */

/* =================================================================
   VIBE Content Typography - Only applies to VIBE page wrappers
   This ensures shell elements (header, footer, search dropdown) 
   use easycosmetic.de's own styles without interference
   ================================================================= */

/* VIBE page containers - scoped to avoid affecting shell dropdowns */
.vibe-faq-page,
.vibe-landing-page,
.vibe-brand-page,
.vibe-lead-page,
.vibe-root {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Typography for VIBE content only */
.vibe-faq-page h1, .vibe-faq-page h2, .vibe-faq-page h3, .vibe-faq-page h4, .vibe-faq-page h5, .vibe-faq-page h6,
.vibe-landing-page h1, .vibe-landing-page h2, .vibe-landing-page h3, .vibe-landing-page h4, .vibe-landing-page h5, .vibe-landing-page h6,
.vibe-brand-page h1, .vibe-brand-page h2, .vibe-brand-page h3, .vibe-brand-page h4, .vibe-brand-page h5, .vibe-brand-page h6,
.vibe-root h1, .vibe-root h2, .vibe-root h3, .vibe-root h4, .vibe-root h5, .vibe-root h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #2d3748;
}

[class^="vibe-"] h1 { font-size: 2rem; }
[class^="vibe-"] h2 { font-size: 1.5rem; }
[class^="vibe-"] h3 { font-size: 1.25rem; }
[class^="vibe-"] h4 { font-size: 1.125rem; }

[class^="vibe-"] p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Link colors are set on specific VIBE elements, not globally */

/* Only affect images inside VIBE containers */
[class^="vibe-"] img {
  max-width: 100%;
}

[class^="vibe-"] button, [class^="vibe-"] input, [class^="vibe-"] textarea, [class^="vibe-"] select {
  font-family: inherit;
  font-size: inherit;
}

/* Base container styles - only apply centering in fallback mode */
/* When shell CSS loads, let easycosmetic.de control the layout */

/* Fallback mode: grey background, centered content, override broken shell styles */
body.vibe-fallback {
  background-color: #f5f5f5 !important;
  font-family: Verdana, Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #333 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Fallback mode typography - needs !important to override broken shell */
body.vibe-fallback h1, body.vibe-fallback h2, body.vibe-fallback h3,
body.vibe-fallback h4, body.vibe-fallback h5, body.vibe-fallback h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #2d3748 !important;
}

body.vibe-fallback h1 { font-size: 2rem !important; }
body.vibe-fallback h2 { font-size: 1.5rem !important; }
body.vibe-fallback h3 { font-size: 1.25rem !important; }
body.vibe-fallback h4 { font-size: 1.125rem !important; }

/* Link styles only for VIBE content, not header/autocomplete */
body.vibe-fallback [class^="vibe-"] a {
  text-decoration: none !important;
}

body.vibe-fallback [class^="vibe-"] a:hover {
  color: #D18200 !important;
  text-decoration: underline !important;
}


body.vibe-fallback .container,
body.vibe-fallback #basecontainer,
body.vibe-fallback #content {
  max-width: 1024px !important;
  margin: 0 auto !important;
  padding: 1rem !important;
  background: #fff !important;
  min-height: 50vh !important;
  box-sizing: border-box !important;
}

body.vibe-fallback #content.basecontainer {
  padding: 2rem 1rem !important;
}

/* Hide document-left and document-right in fallback mode */
body.vibe-fallback #document-left,
body.vibe-fallback #document-right {
  display: none !important;
}

/* =================================================================
   Shell Mode - When easycosmetic.de CSS is loaded (no fallback)
   Shell controls header/footer and #content positioning
   We only style VIBE content inside .vibe-* wrappers
   ================================================================= */

/* Let shell control the layout - minimal interference */
#basecontainer,
#content {
  box-sizing: border-box;
}

/* Override shell's padding on #content.basecontainer (shell sets 15px 0 15px 10px) */
#content.basecontainer {
  padding: 0 !important;
}

/* Mobile: Add padding-top to prevent content from being hidden under fixed header */
/* Mobile: Reset shell's overflow-x on .ui-container (not needed for VIBE pages) */
/* Mobile: Remove shell's padding on #content */
/* IMPORTANT: Use !important on padding-top to override shell inline styles after cookie consent */
@media (max-width: 767px) {
  body:not(.vibe-fallback) #content {
    padding-top: 100px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
  }

  .ui-container {
    overflow-x: hidden !important;
  }
}

/* VIBE page wrappers - constrained width for readability */
/* These are rendered by our content, not the shell */
.vibe-faq-page,
.vibe-landing-page,
.vibe-brand-page,
.vibe-lead-page,
.vibe-root {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

/* Hide cookie popups when consent stored in localStorage */
/* Note: Do NOT hide .ui-overlay as it's used by shell for header spacing on mobile */
body.vibe-consent-accepted #CookiePopUp,
body.vibe-consent-accepted .cookie-banner,
body.vibe-consent-accepted [id*="ookiePopUp"],
body.vibe-consent-accepted [id*="CookiePopUp"],
body.vibe-consent-accepted [class*="cookie-consent"],
body.vibe-consent-accepted [class*="cookies-consent"],
body.vibe-consent-accepted .cookies-consent-container,
body.vibe-consent-accepted .footer-cookies-consent,
body.vibe-consent-accepted .overlay.overlay-cookie,
body.vibe-consent-accepted .overlay-cookie,
body.vibe-consent-accepted [class*="cookie-popup"],
body.vibe-consent-accepted [class*="cookie-overlay"],
body.vibe-consent-accepted [class*="gdpr"],
body.vibe-consent-accepted [class*="privacy-popup"],
body.vibe-consent-accepted .modal-backdrop {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Scrolling is restored via JS (client-scripts.ts) which clears inline overflow styles */
/* CSS fallback: Force scrolling when consent is accepted (overrides shell's no-scroll) */
html.vibe-consent-accepted,
html.vibe-consent-accepted body,
body.vibe-consent-accepted {
  overflow-y: auto !important;
  position: static !important;
  height: auto !important;
}

/* Hide cookie overlays marked by JS with data-vibe-cookie-overlay attribute */
/* This attribute is only added to overlays containing cookie popups, not search/menu overlays */
/* Exclude .vibe-trust-overlay-active for trust popup */
body.vibe-consent-accepted .ui-overlay[data-vibe-cookie-overlay]:not(.vibe-trust-overlay-active),
.ui-overlay[data-vibe-cookie-overlay]:not(.vibe-trust-overlay-active) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Note: We removed the .ui-overlay.open and generic .overlay hiding rules */
/* because they were too broad and hiding the search overlay. */
/* The JS handles cookie overlays by: */
/*   1. Removing the .open class from overlays containing cookie popups */
/*   2. Setting inline display:none on specific cookie elements */
/* Only elements with data-vibe-cookie-overlay attribute are hidden by CSS above. */

/* Trust overlay should show with black background when active */
.ui-overlay.vibe-trust-overlay-active,
.overlay.vibe-trust-overlay-active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background: rgba(0, 0, 0, 0.7) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 9998 !important;
}

/* Trust popup content should appear in front of the overlay */
/* Only target Trusted Shops specific elements, not cookie popups */
.ts-info.ts-open,
#trustbadge-container,
.trustbadge-container {
  z-index: 9999 !important;
}

/* =================================================================
   Shell Fallback Styles - When easycosmetic.de CSS fails to load
   Applied via body.vibe-fallback class added by shell detection script
   ================================================================= */

/* Hide ALL broken shell elements when shell CSS fails */
body.vibe-fallback header,
body.vibe-fallback .header,
body.vibe-fallback #header,
body.vibe-fallback .topnav,
body.vibe-fallback .mainnav,
body.vibe-fallback nav:not(.vibe-breadcrumb),
body.vibe-fallback footer,
body.vibe-fallback .footer,
body.vibe-fallback #footer,
body.vibe-fallback .uspmenu,
body.vibe-fallback .shopinfo,
body.vibe-fallback .paymentandpartner,
body.vibe-fallback #CookiePopUp,
body.vibe-fallback .cookie-banner,
body.vibe-fallback [class*="cookieConsent"],
body.vibe-fallback .serviceline,
body.vibe-fallback .bottomLinks,
body.vibe-fallback .trustpilot,
body.vibe-fallback .sidebar,
body.vibe-fallback .footertop,
body.vibe-fallback .footerbottom,
body.vibe-fallback .topbar,
body.vibe-fallback .menubar,
body.vibe-fallback .menuicon,
body.vibe-fallback .searchfield,
body.vibe-fallback .cart,
body.vibe-fallback .usersection,
body.vibe-fallback .logo,
body.vibe-fallback .navigation,
body.vibe-fallback .breadcrumb:not(.vibe-breadcrumb),
body.vibe-fallback [class*="menu"],
body.vibe-fallback [class*="nav"]:not(.vibe-breadcrumb),
body.vibe-fallback svg:not(.vibe-icon):not([class*="search"] svg),
body.vibe-fallback img:not(.vibe-img):not([src*="data:"]):not([class*="search"] img):not(#AutocompletePopup img):not([id*="Autocomplete"] img) {
  display: none !important;
}

/* =================================================================
   Shell Search Dropdown Fallback Styles (#AutocompletePopup)
   Production-matching styles for when shell CSS fails to load
   ================================================================= */

/* Main dropdown container - matches production easycosmetic.de */
body.vibe-fallback #AutocompletePopup {
  position: absolute !important;
  background: #fff !important;
  border: 1px solid #ccc !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
  z-index: 99999 !important;
  max-height: 400px !important;
  overflow-y: auto !important;
  font-family: Verdana, Geneva, sans-serif !important;
  font-size: 12px !important;
}

/* Show images in autocomplete - override the global hide */
body.vibe-fallback #AutocompletePopup img,
body.vibe-fallback [id*="Autocomplete"] img {
  display: block !important;
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  background: #fff !important;
}

/* Product result rows - horizontal flex layout */
body.vibe-fallback #AutocompletePopup a,
body.vibe-fallback #AutocompletePopup .autocomplete-item,
body.vibe-fallback #AutocompletePopup > div {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 8px 10px !important;
  border-bottom: 1px solid #eee !important;
  text-decoration: none !important;
  color: #333 !important;
  gap: 10px !important;
  cursor: pointer !important;
}

body.vibe-fallback #AutocompletePopup a:hover,
body.vibe-fallback #AutocompletePopup .autocomplete-item:hover,
body.vibe-fallback #AutocompletePopup > div:hover {
  background: #f5f5f5 !important;
}

/* Last item no border */
body.vibe-fallback #AutocompletePopup a:last-child,
body.vibe-fallback #AutocompletePopup > div:last-child {
  border-bottom: none !important;
}

/* Text content area next to image */
body.vibe-fallback #AutocompletePopup .product-info,
body.vibe-fallback #AutocompletePopup .item-text,
body.vibe-fallback #AutocompletePopup span:not(.category) {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Product name - bold */
body.vibe-fallback #AutocompletePopup .product-name,
body.vibe-fallback #AutocompletePopup strong,
body.vibe-fallback #AutocompletePopup b {
  font-weight: 700 !important;
  color: #333 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  display: block !important;
}

/* Category badge - small gray pill */
body.vibe-fallback #AutocompletePopup .category,
body.vibe-fallback #AutocompletePopup .product-category,
body.vibe-fallback #AutocompletePopup em {
  display: inline-block !important;
  font-size: 10px !important;
  font-style: normal !important;
  color: #666 !important;
  background: #f0f0f0 !important;
  padding: 2px 6px !important;
  border-radius: 2px !important;
  margin-top: 3px !important;
}

/* "Show all results" button at bottom */
body.vibe-fallback #AutocompletePopup .show-all,
body.vibe-fallback #AutocompletePopup .view-all,
body.vibe-fallback #AutocompletePopup [class*="alle"] {
  display: block !important;
  background: #F29400 !important;
  color: #fff !important;
  text-align: center !important;
  padding: 10px 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

body.vibe-fallback #AutocompletePopup .show-all:hover,
body.vibe-fallback #AutocompletePopup .view-all:hover,
body.vibe-fallback #AutocompletePopup [class*="alle"]:hover {
  background: #D18200 !important;
}

/* Fix for .autocomplete-results - remove problematic border-right */
.autocomplete-results,
#AutocompletePopup .autocomplete-results,
body.vibe-fallback .autocomplete-results {
  border-right: none !important;
}

/* Fix box-sizing issue - reset to content-box for shell elements */
/* Override both shell CSS and any global resets */
#basecontainer,
#basecontainer *,
#basecontainer *::before,
#basecontainer *::after,
#content,
#content *,
#content *::before,
#content *::after,
#AutocompletePopup,
#AutocompletePopup *,
#AutocompletePopup *::before,
#AutocompletePopup *::after,
.autocomplete-results,
.autocomplete-results *,
.autocomplete-results *::before,
.autocomplete-results *::after,
[id*="Autocomplete"],
[id*="Autocomplete"] *,
[id*="Autocomplete"] *::before,
[id*="Autocomplete"] *::after,
[class*="autocomplete"],
[class*="autocomplete"] *,
[class*="autocomplete"] *::before,
[class*="autocomplete"] *::after {
  box-sizing: content-box !important;
}

/* Generic fallback for any remaining autocomplete selectors */
body.vibe-fallback [id*="Autocomplete"] {
  background: #fff !important;
  border: 1px solid #ccc !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
  z-index: 99999 !important;
}

/* Simple fallback header for VIBE pages */
body.vibe-fallback::before {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #F29400 0%, #D18200 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

body.vibe-fallback::after {
  content: 'easycosmetic.de';
  display: block;
  position: fixed;
  top: 15px;
  left: 20px;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 10000;
}

/* Add padding to account for fixed header */
body.vibe-fallback #basecontainer,
body.vibe-fallback #content {
  margin-top: 70px !important;
}

/* Simple fallback footer */
body.vibe-fallback #basecontainer::after {
  content: 'easycosmetic.de - VIBE';
  display: block;
  width: 100%;
  padding: 2rem;
  margin-top: 3rem;
  background: #333;
  color: #999;
  text-align: center;
  font-size: 0.875rem;
}

/* =================================================================
   Hero Section
   ================================================================= */
.vibe-hero {
  background: linear-gradient(135deg, #e6c9a8 0%, #d1aa83 50%, #b8925f 100%) !important;
  color: white !important;
  padding: 5rem 0;
  margin: -1rem -1rem 3rem -1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vibe-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.vibe-hero-content {
  color: black;
  position: relative;
  z-index: 1;
}

.vibe-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.vibe-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* =================================================================
   Statistics Section
   ================================================================= */
.vibe-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3.75rem;
  padding: 0 1.25rem;
}

.vibe-stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.875rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.vibe-stat-card:hover {
  transform: translateY(-5px);
}

.vibe-stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.625rem;
}

.vibe-stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  display: block;
}

/* =================================================================
   General Sections
   ================================================================= */
.vibe-container {
  padding-right: 1.3em;
  margin-top: 1em;
}

.vibe-section {
  margin-bottom: 3rem;
}

.vibe-section h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.vibe-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: #2d3748;
}

.vibe-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 3.75rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =================================================================
   Benefits Section
   ================================================================= */
.vibe-benefits-section {
  padding: 1rem 0;
  background: #f8f9fa;
}

.vibe-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.vibe-benefit-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.vibe-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #667eea;
}

.vibe-benefit-card-with-bg {
  background-image: url('/reichweite-bg.png') !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}

.vibe-benefit-card-with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  z-index: 0;
}

.vibe-benefit-card-with-bg .vibe-benefit-title,
.vibe-benefit-card-with-bg .vibe-benefit-description {
  position: relative;
  z-index: 1;
  color: black !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.vibe-benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
}

.vibe-benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.9375rem;
  color: #2d3748;
}

.vibe-benefit-description {
  color: #718096;
  font-size: 1.5rem;
  line-height: 1.7;
}

/* =================================================================
   CTA Section
   ================================================================= */
.vibe-cta-box {
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.vibe-cta-box h2 {
  margin-bottom: 1rem;
}

.vibe-cta-box p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =================================================================
   Process Section
   ================================================================= */
.vibe-process-section {
  padding: 1rem 0;
  background: white;
}

.vibe-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3.125rem;
}

.vibe-process-step {
  text-align: center;
  position: relative;
}

.vibe-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.vibe-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: #2d3748;
}

.vibe-step-description {
  color: #718096;
  font-size: 1rem;
}

/* =================================================================
   Trust Section
   ================================================================= */
.vibe-trust-section {
  padding: 1rem 0;
  background: white;
}

.vibe-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.vibe-trust-badge {
  text-align: center;
}

.vibe-trust-icon {
  font-size: 3rem;
  color: #667eea !important;
  margin-bottom: 0.9375rem;
}

.vibe-trust-label {
  font-size: 1.1rem;
  color: #2d3748;
  font-weight: 500;
}

/* =================================================================
   Contact Form Section
   ================================================================= */
.vibe-contact-section {
  padding: 1rem 0;
  background: #f8f9fa;
}

.vibe-form-container {
  max-width: 700px;
  margin: 3.125rem auto 0;
  background: white;
  border-radius: 20px;
  padding: 3.125rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.vibe-form-group {
  margin-bottom: 1.5625rem;
}

.vibe-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2d3748;
  font-size: 1rem;
}

.vibe-form-label .required {
  color: #e53e3e;
}

.vibe-form-input,
.vibe-form-textarea,
.vibe-form-select {
  width: 100%;
  padding: 0.9375rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.vibe-form-input:focus,
.vibe-form-textarea:focus,
.vibe-form-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.vibe-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.vibe-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.vibe-form-submit {
  width: 100%;
  background: #d1aa83 !important;
  color: white !important;
  padding: 1.125rem;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.625rem;
}

.vibe-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(209, 170, 131, 0.4);
}

.vibe-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =================================================================
   Success Page Styles
   ================================================================= */
.vibe-success-container {
  text-align: center;
  padding: 2rem;
}

.vibe-success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.vibe-success-container h1 {
  margin-bottom: 1rem;
}

.vibe-success-container>p {
  margin-bottom: 2rem;
}

.vibe-submitted-info {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.vibe-submitted-info h3 {
  margin-bottom: 0.5rem;
}

/* =================================================================
   Home Page Styles
   ================================================================= */

/* Hero Section - centered, no background */
.vibe-landing-hero {
  text-align: center;
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 1024px;
  box-sizing: border-box;
}

.vibe-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.vibe-hero-badge {
  display: inline-block;
  background: #F29400;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.vibe-landing-hero h1 {
  color: #2d3748 !important;
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
}

.vibe-landing-hero .vibe-hero-subtitle {
  color: #666;
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Section Headers */
.vibe-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 3rem;
}

.vibe-section-header h2 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin-bottom: 0.5rem;
}

.vibe-section-header p {
  color: #666;
  font-size: 1.125rem;
}

/* Cards Grid */
.vibe-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* Featured Cards */
.vibe-card {
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vibe-card-featured {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.vibe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}

.vibe-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.vibe-card:hover .vibe-card-icon {
  transform: scale(1.05);
}

.vibe-icon-brand {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
  color: #F29400;
}

.vibe-icon-faq {
  background: linear-gradient(135deg, #e6f4ff 0%, #cce8ff 100%);
  color: #0066cc;
}

.vibe-card-content {
  flex: 1;
}

.vibe-card h3 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 0.75rem;
}

.vibe-card p {
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.vibe-card-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #F29400;
  font-size: 0.9375rem;
  transition: gap 0.2s ease;
}

.vibe-card:hover .vibe-card-link {
  gap: 0.75rem;
}

.vibe-card-link svg {
  transition: transform 0.2s ease;
}

.vibe-card:hover .vibe-card-link svg {
  transform: translateX(2px);
}

/* Features Section */
.vibe-features-section {
  padding: 1rem 0 3rem;
}

.vibe-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.vibe-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.vibe-feature:hover {
  background: #fff;
  border-color: #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.vibe-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F29400 0%, #e88600 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-feature-icon svg {
  width: 22px;
  height: 22px;
}

.vibe-feature-text h4 {
  font-size: 1.1875rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 0.25rem;
}

.vibe-feature-text p {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* =================================================================
   FAQ Page Styles - easycosmetic.de Brand Design
   These styles always apply (not scoped to fallback mode)
   ================================================================= */

/* FAQ Page Container - standalone styling */
.vibe-faq-page,
.container {
  font-family: Verdana, Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ body text — consistent 16px for all paragraphs in #content (desktop only) */
@media (min-width: 769px) {
  #content p,
  #content p strong {
    font-size: 16px !important;
  }
}

/* Container centering - always apply for VIBE pages */
.vibe-landing-page .container,
.vibe-brand-page .container,
.vibe-faq-page .container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* FAQ container - only center in fallback mode */
body.vibe-fallback .vibe-faq-page .container,
body.vibe-fallback #basecontainer .container,
body.vibe-fallback #content .container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* FAQ Header - Clean easycosmetic style */
.vibe-faq-header {
  margin-bottom: 2.5rem;
  text-align: center;
  padding: 2.5rem 1rem;
  background: #fff !important;
  border-bottom: 1px solid #eee;
}

.vibe-faq-header h1 {
  margin-bottom: 0.75rem;
  font-family: Futura, 'Futura-Bold', Arial, sans-serif !important;
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #333 !important;
  letter-spacing: -0.02em;
}

.vibe-faq-header p {
  color: #666 !important;
  font-size: 1.05rem !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* FAQ List */
.vibe-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.vibe-faq-item {
  padding: 1.5rem;
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  transition: border-color 0.2s ease;
}

.vibe-faq-item:hover {
  border-color: #F29400;
}

.vibe-faq-item h3 {
  margin-bottom: 0.5rem;
  font-family: Futura, Arial, sans-serif;
  font-weight: 600;
  color: #333;
}

.vibe-faq-item p {
  color: #555;
  line-height: 1.6;
}

/* FAQ CTA Box - easycosmetic orange accent */
.vibe-faq-cta {
  margin-top: 3rem;
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #fff5eb 0%, #ffeedc 100%);
  border: 1px solid #F29400;
}

.vibe-faq-cta h2 {
  margin-bottom: 0.75rem;
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1.5rem;
  color: #333;
}

.vibe-faq-cta p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1rem;
}

/* Shell Breadcrumb Enhancements - DEVS-5857 */
/* Breadcrumb: rely on shell's original styles from easycosmetic.de
   Shell provides: .header-breadcrumb > span { display: inline-block; vertical-align: top; white-space: nowrap; text-transform: uppercase; }
   Shell provides: .header-breadcrumb > span::after { separator arrow }
   Shell provides: .header-breadcrumb > span:last-child { max-width: 350px; overflow: hidden; text-overflow: ellipsis; } */
.header-breadcrumb > span:last-child {
  max-width: 250px !important;
}

/* Breadcrumb Navigation - easycosmetic style */
/* Hide vibe-breadcrumb — shell breadcrumb is used on both desktop and mobile */
.vibe-breadcrumb {
  display: none !important;
}

.vibe-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

.vibe-breadcrumb-link {
  color: #F29400;
  text-decoration: none;
  transition: color 0.2s ease;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.vibe-breadcrumb-link:hover {
  color: #d17e00;
  text-decoration: underline;
}

.vibe-breadcrumb-separator {
  color: #999;
  margin: 0 0.2rem;
}

.vibe-breadcrumb-current {
  color: #666;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

/* Search Box - easycosmetic style */
.vibe-faq-search {
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.vibe-faq-search-wrapper {
  position: relative;
}

.vibe-faq-search-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  background: #fff;
}

.vibe-faq-search-input:focus {
  outline: none;
  border-color: #F29400;
  box-shadow: 0 0 0 2px rgba(242, 148, 0, 0.15);
}

.vibe-faq-search-input::placeholder {
  color: #999;
}

.vibe-faq-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  margin-top: 0.25rem;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

.vibe-faq-search-section {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.vibe-faq-search-section:last-child {
  border-bottom: none;
}

.vibe-faq-search-section h4 {
  padding: 0.5rem 1rem;
  margin: 0;
  font-size: 0.75rem;
  font-family: Futura, Arial, sans-serif;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vibe-faq-search-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}

.vibe-faq-search-item:hover {
  background: #fff5eb;
}

.vibe-faq-search-icon {
  font-size: 1rem;
  color: #F29400;
}

.vibe-faq-search-empty {
  padding: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}

/* Category Cards Grid - fixed 2 columns */
.vibe-faq-categories-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  padding: 0 1rem !important;
  margin-bottom: 3rem !important;
  list-style: none !important;
}

.vibe-faq-category-card {
  background: #fff !important;
  border: 1px solid #ddd !important;
  overflow: hidden !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  list-style: none !important;
}

.vibe-faq-category-card:hover {
  border-color: #F29400 !important;
  box-shadow: 0 2px 8px rgba(242, 148, 0, 0.12) !important;
}

.vibe-faq-category-header {
  display: block !important;
  padding: 1.25rem 1.5rem !important;
  text-decoration: none !important;
  background: #fafafa !important;
  border-bottom: 1px solid #eee !important;
}

.vibe-faq-category-header h2 {
  margin: 0 0 0.35rem !important;
  font-family: Futura, 'Futura-Bold', Arial, sans-serif !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: #333 !important;
}

.vibe-faq-category-desc {
  margin: 0;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
}

.vibe-faq-subcategory-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vibe-faq-subcategory-list li {
  border-bottom: 1px solid #f0f0f0 !important;
  list-style: none !important;
  margin: 0 !important;
}

.vibe-faq-subcategory-list li:last-child {
  border-bottom: none !important;
}

.vibe-faq-subcategory-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1rem 1.5rem !important;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 1.15rem !important;
  font-family: Futura, 'Futura-Bold', Arial, sans-serif !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}

.vibe-faq-subcategory-link:hover {
  background: #fff5eb !important;
  color: #F29400 !important;
}

.vibe-faq-subcategory-link::after {
  content: "›";
  color: #999;
  font-size: 1.25rem;
  transition: transform 0.15s ease, color 0.15s ease;
}

.vibe-faq-subcategory-link:hover::after {
  transform: translateX(3px);
  color: #F29400;
}

.vibe-faq-no-subcategories {
  padding: 1rem 1.5rem;
  color: #999;
  font-style: italic;
  margin: 0;
  font-size: 0.9rem;
}

/* Subcategory Cards Grid - fixed 2 columns */
.vibe-faq-subcategories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.vibe-faq-subcategory-card {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vibe-faq-subcategory-card:hover {
  border-color: #F29400;
  box-shadow: 0 2px 8px rgba(242, 148, 0, 0.12);
}

.vibe-faq-subcategory-card h2 {
  margin: 0 0 0.35rem;
  font-family: Futura, Arial, sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vibe-faq-subcategory-card h2::after {
  content: "›";
  color: #999;
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.15s ease, color 0.15s ease;
}

.vibe-faq-subcategory-card:hover h3::after {
  transform: translateX(3px);
  color: #F29400;
}

.vibe-faq-subcategory-card p {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: Futura, Arial, sans-serif;
}

/* Questions List - easycosmetic style */
.vibe-faq-questions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.vibe-faq-question-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.vibe-faq-question-item:hover {
  background: #fff5eb;
  border-color: #F29400;
}

.vibe-faq-question-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  flex-shrink: 0;
}

.vibe-faq-question-text {
  flex: 1;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

.vibe-faq-question-arrow {
  color: #999;
  font-size: 1.125rem;
  transition: transform 0.15s ease, color 0.15s ease;
}

.vibe-faq-question-item:hover .vibe-faq-question-arrow {
  transform: translateX(3px);
  color: #F29400;
}

/* Question Article (Answer Page) - easycosmetic style */
.vibe-faq-question-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.vibe-faq-question-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #F29400;
}

.vibe-faq-question-header h1 {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #333;
  margin: 0;
  font-weight: 600;
}

.vibe-faq-answer {
  margin-bottom: 2rem;
}

/* easycosmetic.de branded answer content styling */
.vibe-faq-answer-content {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.vibe-faq-answer-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
}

.vibe-faq-answer-content h1 {
  font-family: Futura, 'Futura-Bold', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.vibe-faq-answer-content h2 {
  font-family: 'Futura-Bold', Futura, sans-serif;
  font-size: 22px;
  margin-top: 1.75rem;
  margin-bottom: 0.875rem;
  color: #333;
}

.vibe-faq-answer-content h3 {
  font-family: Futura, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.vibe-faq-answer-content h4 {
  font-family: Futura, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.vibe-faq-answer-content ul,
.vibe-faq-answer-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.vibe-faq-answer-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-family: Futura-Light, Futura, Arial, sans-serif;
}

.vibe-faq-answer-content a {
  color: #F29400;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.vibe-faq-answer-content a:hover {
  color: #D1AA83;
}

.vibe-faq-answer-content strong,
.vibe-faq-answer-content b {
  font-weight: 700;
  color: #222;
}

.vibe-faq-answer-content em,
.vibe-faq-answer-content i {
  font-style: italic;
}

.vibe-faq-answer-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border-left: 4px solid #D1AA83;
  border-radius: 0 6px 6px 0;
  color: #555;
  font-style: italic;
}

.vibe-faq-answer-content code {
  background: #f5f5f5;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: Consolas, Monaco, 'Courier New', monospace;
  font-size: 0.9em;
}

.vibe-faq-answer-content pre {
  background: #2d3748;
  color: #e2e8f0;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1.25rem 0;
}

.vibe-faq-answer-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.vibe-faq-answer-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.vibe-faq-answer-content table th,
.vibe-faq-answer-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid #e2e8f0;
}

.vibe-faq-answer-content table th {
  background: #D1AA83;
  color: #000;
  font-weight: 600;
}

.vibe-faq-answer-content table tr:nth-child(even) {
  background: #f8f9fa;
}

.vibe-faq-answer-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
}

.vibe-faq-answer-content hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 2rem 0;
}

.vibe-faq-answer-placeholder {
  padding: 2rem;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  color: #92400e;
}

.vibe-faq-answer-placeholder p {
  margin: 0;
}

/* Similar Questions Section */
.vibe-faq-similar-questions {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1.5rem 1rem;
}

.vibe-faq-similar-questions h2 {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1rem 0;
}

.vibe-faq-similar-questions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vibe-faq-similar-questions-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vibe-faq-similar-questions-list li::marker {
  content: none;
}

.vibe-faq-similar-question-link,
.vibe-faq-similar-question-link:visited {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.vibe-faq-similar-question-link:hover {
  background: #fff5eb;
  border-color: #F29400;
  text-decoration-color: #f29400;
}

/* FAQ Product Recommendations — 5 columns desktop, 6th visible only on mobile */
.vibe-faq-product-recommendations h2 {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
}

.vibe-faq-product-recommendations.vibe-products ul.products {
  grid-template-columns: repeat(5, 1fr);
}

.vibe-faq-product-recommendations.vibe-products ul.products li.product:nth-child(6) {
  display: none;
}

@media (max-width: 768px) {
  .vibe-faq-product-recommendations ul.products li.product:nth-child(6) {
    display: flex !important;
  }
}

/* All Answers Page (show_all_answers=true) - FAQ Subcategory with all Q&A visible */
.vibe-faq-all-answers {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.vibe-faq-qa-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.vibe-faq-qa-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vibe-faq-qa-question {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F29400;
}

.vibe-faq-qa-answer {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.vibe-faq-qa-answer p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.vibe-faq-qa-answer p:last-child {
  margin-bottom: 0;
}

.vibe-faq-qa-answer ul,
.vibe-faq-qa-answer ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.vibe-faq-qa-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.vibe-faq-qa-answer a {
  color: #F29400;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.vibe-faq-qa-answer a:hover {
  color: #D1AA83;
}

.vibe-faq-qa-answer strong,
.vibe-faq-qa-answer b {
  font-weight: 700;
  color: #222;
}

/* Category All-In-One Page (show_all_on_category=true) - All subcategories and Q&A on one page */
.vibe-faq-category-all-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.vibe-faq-category-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.vibe-faq-category-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.vibe-faq-section-heading {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #F29400;
}

.vibe-faq-section-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.vibe-faq-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Questions inside category sections use h3 (since section heading is h2) */
.vibe-faq-qa-question-h3 {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}

/* Accordion styles for collapsible FAQ items on overview page */
.vibe-faq-accordion-item {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #eee;
}

.vibe-faq-accordion-item:last-child {
  border-bottom: none;
}

.vibe-faq-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  gap: 1rem;
  transition: color 0.2s ease;
}

.vibe-faq-accordion-trigger:hover {
  color: #F29400;
}

.vibe-faq-accordion-title {
  flex: 1;
  line-height: 1.4;
}

.vibe-faq-qa-number {
  font-weight: 600;
  color: #F29400;
  margin-right: 0.25em;
}

.vibe-faq-accordion-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #666;
  transition: transform 0.3s ease, color 0.2s ease;
}

.vibe-faq-accordion-trigger:hover .vibe-faq-accordion-icon {
  color: #F29400;
}

.vibe-faq-accordion-trigger[aria-expanded="true"] .vibe-faq-accordion-icon {
  transform: rotate(180deg);
  color: #F29400;
}

.vibe-faq-accordion-content {
  display: none;
  padding: 0 0 1.5rem 0;
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.vibe-faq-accordion-item.is-open .vibe-faq-accordion-content {
  display: block;
}

.vibe-faq-accordion-content p {
  margin-bottom: 1rem;
}

.vibe-faq-accordion-content p:last-child {
  margin-bottom: 0;
}

.vibe-faq-accordion-content ul,
.vibe-faq-accordion-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.vibe-faq-accordion-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.vibe-faq-accordion-content a {
  color: #F29400;
  text-decoration: underline;
}

.vibe-faq-accordion-content a:hover {
  color: #D1AA83;
}

/* General Category Q&A Page (Shopping Experience) - Non-accordion list style */
.vibe-faq-general-qa-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vibe-faq-general-qa-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.vibe-faq-general-qa-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vibe-faq-general-question {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #F29400;
}

.vibe-faq-general-answer {
  font-family: Futura, 'Futura-Bold', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.vibe-faq-general-answer p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.vibe-faq-general-answer p:last-child {
  margin-bottom: 0;
}

.vibe-faq-general-answer ul,
.vibe-faq-general-answer ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.vibe-faq-general-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.vibe-faq-general-answer a {
  color: #F29400;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.vibe-faq-general-answer a:hover {
  color: #D1AA83;
}

/* Shopping Experience Card on FAQ Overview */
.vibe-faq-shopping-card {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  border: 2px solid #F29400;
}

.vibe-faq-shopping-header {
  background: #F29400;
  color: #fff;
  padding: 1rem 1.25rem;
}

.vibe-faq-shopping-header h2 {
  color: #fff;
  margin: 0;
}

/* Navigation Buttons - easycosmetic style */
.vibe-faq-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-top: 1px solid #eee;
}

.vibe-faq-back {
  padding: 2rem 1rem;
}

/* Primary Button - easycosmetic orange */
.vibe-button-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #F29400;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.vibe-button-primary:hover {
  background: #d17e00;
  color: #fff;
  text-decoration: none;
}

/* Secondary Button - dealbook loadmore style */
.vibe-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #868686;
  color: #fff !important;
  text-decoration: none;
  border-radius: 0;
  font-family: 'Futura', Futura, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.vibe-button-secondary::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid #fff;
}

.vibe-button-secondary:hover {
  background: #f29400;
  color: #fff;
  text-decoration: none;
}

/* Pagination - easycosmetic style */
.vibe-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  padding: 1.5rem 1rem;
  flex-wrap: wrap;
}

.vibe-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 0.625rem;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.vibe-pagination-link:hover {
  background: #F29400;
  border-color: #F29400;
  color: #fff;
}

.vibe-pagination-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 0.625rem;
  background: #F29400;
  border: 1px solid #F29400;
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

.vibe-pagination-ellipsis {
  padding: 0 0.35rem;
  color: #999;
}

/* Empty State - easycosmetic style */
.vibe-faq-empty {
  padding: 2.5rem;
  text-align: center;
  color: #666;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px;
  margin: 0 1rem;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* =================================================================
   Error Page Styles
   ================================================================= */
.vibe-error-page {
  padding: 20px;
  text-align: center;
}

/* =================================================================
   Responsive Design - Mobile Optimizations
   ================================================================= */
@media (max-width: 768px) {
  .vibe-hero {
    padding: 3rem 1rem;
    margin: -0.5rem -0.5rem 2rem -0.5rem;
  }

  .vibe-hero h1 {
    font-size: 2.5rem !important;
  }

  .vibe-hero-subtitle {
    font-size: 1.35rem !important;
  }

  .vibe-stats {
    gap: 1.5rem;
  }

  .vibe-stat-number {
    font-size: 2.5rem !important;
  }

  .vibe-stat-label {
    font-size: 1.15rem !important;
  }

  .vibe-section-title {
    font-size: 2.25rem !important;
  }

  .vibe-benefits-section {
    padding: 3rem 0;
  }

  .vibe-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vibe-process-section {
    padding: 3rem 0;
  }

  .vibe-trust-section {
    padding: 3rem 0;
  }

  .vibe-contact-section {
    padding: 3rem 0;
  }

  .vibe-form-container {
    padding: 1.875rem 1.25rem;
  }

  .vibe-form-row {
    grid-template-columns: 1fr;
  }

  .vibe-cta-box {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .vibe-form-submit {
    padding: 0.875rem 2rem;
    font-size: 1.15rem !important;
  }

  .vibe-landing-hero {
    padding: 3rem 1.5rem 4rem;
  }

  .vibe-landing-hero h1 {
    font-size: 2.5rem !important;
  }

  .vibe-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vibe-card-featured {
    flex-direction: column;
    text-align: center;
  }

  .vibe-card-featured .vibe-card-icon {
    margin: 0 auto;
  }

  .vibe-card-featured .vibe-card-link {
    justify-content: center;
  }

  .vibe-features-grid {
    grid-template-columns: 1fr;
  }

  .vibe-section-header {
    padding-top: 2rem;
  }

  /* Mobile font size improvements for better readability */
  .vibe-section-header h2 {
    font-size: 2.25rem !important;
  }

  .vibe-section-header p {
    font-size: 1.35rem !important;
  }

  .vibe-card h3 {
    font-size: 1.75rem !important;
  }

  .vibe-card p {
    font-size: 1.35rem !important;
    line-height: 1.6;
  }

  .vibe-card-link {
    font-size: 1.25rem !important;
  }

  .vibe-feature-text h4 {
    font-size: 1.5rem !important;
  }

  .vibe-feature-text p {
    font-size: 1.25rem !important;
    line-height: 1.5;
  }

  .vibe-landing-hero .vibe-hero-subtitle {
    font-size: 1.5rem !important;
    line-height: 1.6;
  }

  .vibe-hero-badge {
    font-size: 1.1rem !important;
    padding: 0.5rem 1.25rem;
  }

  /* Form labels and inputs */
  .vibe-form-group label {
    font-size: 1.15rem !important;
  }

  .vibe-form-group input,
  .vibe-form-group select,
  .vibe-form-group textarea {
    font-size: 1.15rem !important;
  }

  /* Benefits section */
  .vibe-benefit-card h3 {
    font-size: 1.5rem !important;
  }

  .vibe-benefit-card p {
    font-size: 1.25rem !important;
  }

  /* Process steps */
  .vibe-process-step h3 {
    font-size: 1.5rem !important;
  }

  .vibe-process-step p {
    font-size: 1.25rem !important;
  }

  /* CTA box */
  .vibe-cta-box h3 {
    font-size: 1.75rem !important;
  }

  .vibe-cta-box p {
    font-size: 1.25rem !important;
  }

  /* Trust section */
  .vibe-trust-item {
    font-size: 1.15rem !important;
  }
}

@media (max-width: 480px) {
  /* Only padding overrides - font sizes inherit from 768px */
  .vibe-form-container { padding: 1.5rem 1rem; }
  .vibe-benefit-card { padding: 1.5rem; }
  .vibe-card { padding: 1.5rem; }
  .vibe-feature { padding: 1rem; }
}

/* =================================================================
   FAQ Responsive Styles
   ================================================================= */

/* Reduce padding on smaller screens (below 1024px) - fallback mode only */
@media (max-width: 1024px) {
  body.vibe-fallback .container,
  body.vibe-fallback #basecontainer,
  body.vibe-fallback #content {
    padding: 0.75rem !important;
  }
  
  .vibe-faq-header h1 {
    font-size: 2rem;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  /* Fallback header tablet adjustments */
  body.vibe-fallback::before {
    height: 55px;
  }

  body.vibe-fallback::after {
    top: 13px;
    left: 16px;
    font-size: 1.35rem;
  }

  body.vibe-fallback #basecontainer,
  body.vibe-fallback #content {
    margin-top: 65px !important;
  }

  .vibe-faq-header {
    padding: 1.5rem 0.5rem;
  }

  .vibe-faq-categories-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 0.5rem !important;
  }

  .vibe-faq-subcategories-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 0.5rem !important;
  }

  .vibe-faq-header h1 {
    font-size: 2.5rem !important;
  }

  .vibe-faq-header p {
    font-size: 1.35rem !important;
  }

  .vibe-faq-category-header h2 {
    font-size: 30px !important;
  }

  .vibe-faq-category-desc {
    font-size: 1.25rem !important;
  }

  .vibe-faq-subcategory-link {
    font-size: 28px !important;
    padding: 1.25rem 1.5rem !important;
  }

  .vibe-faq-subcategory-card h2 {
    font-size: 1.625rem !important;
  }

  .vibe-faq-subcategory-card p {
    font-size: 1.35rem !important;
  }

  .vibe-faq-questions-list {
    padding: 0 0.5rem;
  }

  .vibe-faq-question-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .vibe-faq-question-number {
    width: 32px;
    height: 32px;
    font-size: 1rem !important;
  }

  .vibe-faq-question-text {
    font-size: 1.35rem !important;
  }

  .vibe-faq-answer-content,
  .vibe-faq-answer-content p {
    font-size: 29px !important;
    line-height: 1.75 !important;
  }

  .vibe-faq-answer-content h1 {
    font-size: 2.5rem !important;
  }

  .vibe-faq-answer-content h2 {
    font-size: 35px !important;
    font-weight: normal;
  }

  .vibe-faq-answer-content h3 {
    font-size: 2rem !important;
  }

  .vibe-faq-answer-content h4 {
    font-size: 1.85rem !important;
  }

  .vibe-faq-answer-content li {
    font-size: 29px !important;
    line-height: 1.75 !important;
  }

  .vibe-faq-answer-content ul,
  .vibe-faq-answer-content ol {
    font-size: 1.7rem !important;
  }

  .vibe-faq-question-header h1 {
    font-size: 2.25rem !important;
  }

  .vibe-faq-similar-questions {
    padding: 1rem 0.5rem;
    margin-top: 1.5rem;
  }

  .vibe-faq-similar-questions h2 {
    font-size: 29px;
  }

  .vibe-faq-similar-question-link,
  .vibe-faq-similar-question-link:visited {
    font-size: 26px;
    font-family: 'Futura', 'Futura-Bold', Arial, sans-serif;
    padding: 1rem;
  }

  .vibe-faq-navigation .vibe-button-secondary {
    font-size: 26px;
    font-family: 'Futura', 'Futura-Bold', Arial, sans-serif;
    padding: 0.75rem 0;
  }

  /* All Answers Page - Tablet */
  .vibe-faq-all-answers {
    padding: 0 0.5rem;
  }

  .vibe-faq-qa-question {
    font-size: 1.75rem !important;
  }

  .vibe-faq-qa-answer,
  .vibe-faq-qa-answer p {
    font-size: 1.5rem !important;
    line-height: 1.75 !important;
  }

  .vibe-faq-qa-answer li {
    font-size: 1.5rem !important;
    line-height: 1.75 !important;
  }

  /* Category All-In-One Page - Tablet */
  .vibe-faq-category-all-content {
    padding: 0 0.5rem;
  }

  .vibe-faq-section-heading {
    font-size: 1.75rem !important;
    font-family: Futura-Bold !important;
  }

  .vibe-faq-accordion-trigger {
    font-size: 30px !important;
    font-family: Futura !important;
  }

  .vibe-faq-accordion-content {
    font-family: Futura !important;
    font-size: 28px !important;
  }

  .vibe-faq-qa-question-h3 {
    font-size: 1.4rem !important;
  }

  /* General Q&A page mobile styles */
  .vibe-faq-general-qa-list {
    padding: 0 0.5rem;
  }

  .vibe-faq-general-question {
    font-size: 1.5rem !important;
  }

  .vibe-faq-general-answer,
  .vibe-faq-general-answer p {
    font-size: 1.5rem !important;
    line-height: 1.6 !important;
  }

  .vibe-faq-navigation {
    flex-direction: column;
    padding: 1.5rem 0.5rem;
  }

  .vibe-faq-navigation .vibe-button-primary,
  .vibe-faq-navigation .vibe-button-secondary {
    padding-left: 1rem;
    text-align: center;
  }

  .vibe-faq-back {
    padding: 1.5rem 0.5rem;
  }

  .vibe-faq-cta {
    padding: 1.5rem;
    margin: 2rem 0.5rem;
  }

  .vibe-breadcrumb {
    font-size: 1.5rem;
    padding: 0.75rem 0.5rem;
    margin-top: 60px; /* Push below fixed mobile header */
  }
  
  .vibe-breadcrumb-link {
    max-width: 150px;
  }
  
  .vibe-breadcrumb-current {
    max-width: 200px;
  }
  
  /* Extra margin when advertisement banner is present */
  body.vibe-has-ad-banner .vibe-breadcrumb {
    margin-top: 160px;
  }

  .vibe-faq-search {
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .vibe-faq-search-input {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }

  .vibe-pagination {
    padding: 1rem 0.5rem;
    gap: 0.35rem;
  }

  .vibe-pagination-link,
  .vibe-pagination-current {
    min-width: 32px;
    height: 32px;
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }

  .vibe-faq-empty {
    padding: 2rem 1rem;
    margin: 0 0.5rem;
  }
}

/* Small phones (480px) - only unique overrides, font sizes inherit from 768px */
@media (max-width: 480px) {
  .vibe-faq-header p { padding: 0 0.5rem; }
  .vibe-faq-category-header { padding: 1.25rem; }
  .vibe-faq-subcategory-card { padding: 1.5rem; }
  .vibe-faq-question-header h1 { line-height: 1.4; }
  .vibe-breadcrumb { flex-wrap: wrap; gap: 0.25rem; }
  .vibe-breadcrumb-link { max-width: 120px; }
  .vibe-breadcrumb-current { max-width: 160px; }
  .vibe-button-primary,
  .vibe-button-secondary {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }
  body.vibe-fallback .container,
  body.vibe-fallback #basecontainer,
  body.vibe-fallback #content { padding: 0.5rem !important; }
  body.vibe-fallback::before { height: 50px; }
  body.vibe-fallback::after { top: 12px; left: 12px; font-size: 1.25rem; }
  body.vibe-fallback #basecontainer,
  body.vibe-fallback #content { margin-top: 60px !important; }
}

/* =================================================================
   FAQ Hero Image with Gradient Overlay (Variant C)
   ================================================================= */

.vibe-faq-hero-image {
  position: relative;
  width: 994px;
  margin: 0 0 1.5rem -22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.vibe-faq-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vibe-faq-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem 2rem;
}

.vibe-faq-hero-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .vibe-faq-hero-image { border-radius: 0; margin: 0 -15px 1rem; width: calc(100% + 30px); max-width: none; }
  .vibe-faq-hero-title { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .vibe-faq-hero-title { font-size: 1.1rem; }
}

/* =================================================================
   FAQ Answer Image with Zoom Functionality
   ================================================================= */

.vibe-faq-answer-image {
  position: relative;
  margin: 1.5rem 0;
  text-align: center;
  max-width: 100%;
}

.vibe-faq-infographic {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vibe-faq-infographic:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.vibe-faq-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.vibe-faq-zoom-hint:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.vibe-faq-zoom-hint svg {
  width: 20px;
  height: 20px;
}

/* Image Zoom Modal */
.vibe-image-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.vibe-image-zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}

.vibe-image-zoom-container {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-image-zoom-img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.vibe-image-zoom-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 10001;
  padding: 0;
  line-height: 1;
}

.vibe-image-zoom-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.vibe-image-zoom-close svg {
  width: 24px;
  height: 24px;
}

/* Responsive zoom - 768px */
@media (max-width: 768px) {
  .vibe-faq-zoom-hint { width: 36px; height: 36px; bottom: 8px; right: 8px; }
  .vibe-faq-zoom-hint svg { width: 18px; height: 18px; }
  .vibe-image-zoom-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 20px; }
  .vibe-image-zoom-close svg { width: 20px; height: 20px; }
}

/* Responsive zoom - 480px */
@media (max-width: 480px) {
  .vibe-faq-answer-image { margin: 1rem 0; }
  .vibe-faq-infographic { border-radius: 4px; }
  .vibe-faq-zoom-hint { width: 32px; height: 32px; bottom: 6px; right: 6px; }
  .vibe-faq-zoom-hint svg { width: 16px; height: 16px; }
}

/* =================================================================
   Lead Form Styles
   ================================================================= */

/* Box-sizing override — beats #content * { content-box !important } from line ~440 */
#content .vibe-lead-page,
#content .vibe-lead-page *,
#content .vibe-lead-page *::before,
#content .vibe-lead-page *::after {
  box-sizing: border-box !important;
}

/* Lead hero — desktop only (matches perfumers-listing hero pattern) */
.vibe-lead-hero.desktop-only {
  display: none !important;
}
@media (min-width: 769px) {
  .vibe-lead-hero.desktop-only {
    display: block !important;
  }
}
.vibe-lead-hero .content-info.floatcontainer {
  min-height: 437px;
  width: 994px;
  margin-left: -22px;
}

#content .vibe-lead-page {
  max-width: 640px !important;
  min-width: 0 !important;
  padding: 40px 20px 60px;
}

/* Progress bar */
.vibe-lead-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.vibe-lead-progress-bar {
  flex: 1;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}
.vibe-lead-progress-fill {
  height: 100%;
  background: #000;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.vibe-lead-progress-text {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
}

/* Step container */
.vibe-lead-step {
  display: none;
}
.vibe-lead-step.active {
  display: block;
  animation: vibeLeadFadeIn 0.3s ease;
}
@keyframes vibeLeadFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Question */
.vibe-lead-question {
  font-size: 20px !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #1a1a1a;
}

/* Answer option buttons */
.vibe-lead-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vibe-lead-option {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 16px !important;
  font-family: inherit;
  text-align: left;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, transform 0.1s;
  color: #1a1a1a;
}
.vibe-lead-option:hover {
  border-color: #000;
  background: #fafafa;
}
.vibe-lead-option:active {
  transform: scale(0.98);
}

/* Email step — reuses .vibe-form-group, .vibe-form-label, .vibe-form-input */
.vibe-lead-page .vibe-form-input {
  font-size: 16px !important;
  border-radius: 12px;
  padding: 14px 16px;
  border-color: #e0e0e0;
}
.vibe-lead-page .vibe-form-input:focus {
  border-color: #000;
  box-shadow: none;
}
.vibe-lead-page .vibe-form-input.error {
  border-color: #dc3545;
}
.vibe-lead-email-error {
  font-size: 13px;
  color: #dc3545;
  margin-top: 6px;
  display: none;
}

/* Submit button */
.vibe-lead-submit {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px !important;
  font-weight: 600;
  font-family: inherit;
  color: #fff !important;
  background: #000 !important;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
.vibe-lead-submit:hover {
  background: #333 !important;
}
.vibe-lead-submit:active {
  transform: scale(0.98);
}
.vibe-lead-submit:disabled {
  background: #999 !important;
  cursor: not-allowed;
}

/* End screens */
.vibe-lead-end {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.vibe-lead-end.active {
  display: block;
  animation: vibeLeadFadeIn 0.4s ease;
}
.vibe-lead-end-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vibe-lead-end-icon.success {
  background: #e8f5e9;
  color: #2e7d32;
}
.vibe-lead-end-icon.reject {
  background: #fff3e0;
  color: #e65100;
}
.vibe-lead-end-icon svg {
  width: 32px;
  height: 32px;
}
.vibe-lead-end-title {
  font-size: 24px !important;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.vibe-lead-end-text {
  font-size: 16px !important;
  line-height: 1.6;
  color: #555;
  max-width: 480px;
  margin: 0 auto;
}

/* Duplicate message */
.vibe-lead-duplicate {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.vibe-lead-duplicate.active {
  display: block;
}
.vibe-lead-duplicate-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #e3f2fd;
  color: #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vibe-lead-duplicate-icon svg {
  width: 32px;
  height: 32px;
}
.vibe-lead-duplicate-title {
  font-size: 24px !important;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.vibe-lead-duplicate-text {
  font-size: 16px !important;
  line-height: 1.6;
  color: #555;
  max-width: 480px;
  margin: 0 auto;
}

/* Loading spinner */
.vibe-lead-loading {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.vibe-lead-loading.active {
  display: block;
}
.vibe-lead-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e0e0e0;
  border-top-color: #000;
  border-radius: 50%;
  animation: vibeLeadSpin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes vibeLeadSpin {
  to { transform: rotate(360deg); }
}

/* Intro */
.vibe-lead-intro {
  margin-bottom: 32px;
}
.vibe-lead-intro-title {
  font-size: 28px !important;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.vibe-lead-intro-desc {
  font-size: 16px !important;
  line-height: 1.6;
  color: #555;
}

/* Lead Form Responsive */
@media (max-width: 768px) {
  #content .vibe-lead-page { padding: 24px 16px 40px; }
  .vibe-lead-intro-title { font-size: 34px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-intro-desc { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-progress-text { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-question { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-page .vibe-form-group .vibe-form-label { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-page .vibe-form-input { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-submit { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-option { padding: 14px 16px; font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-end-title { font-size: 34px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-end-text { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-duplicate-title { font-size: 34px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-duplicate-text { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
  .vibe-lead-email-error { font-size: 29px !important; font-family: Futura, 'Futura-Bold', Arial, sans-serif !important; }
}