/* ═══════════════════════════════════════════════════════════════════
   LavendelLab — Premium Light Brand System v5.1
   Based on logo: Purple #5e4d7f · Gold #bf9855
   Light theme with warm cream + purple accent (.nl)
   ═══════════════════════════════════════════════════════════════════ */

/* --- 1. Brand Tokens (CSS Custom Properties) --- */
:root {
  /* NL Light Theme — Primary */
  --ll-primary: #5e4d7f;
  --ll-primary-dark: #4a3d66;
  --ll-primary-light: #7466a0;
  --ll-primary-subtle: #ede8f4;
  /* NL Light Theme — Accent */
  --ll-accent: #bf9855;
  --ll-accent-dark: #a88545;
  --ll-accent-light: #d4b87a;
  --ll-accent-subtle: #f8f0e3;
  /* NL Light Theme — Backgrounds */
  --ll-bg: #faf7f2;
  --ll-bg-alt: #f3ede4;
  --ll-bg-card: #ffffff;
  --ll-surface: #ffffff;
  --ll-text: #2c2833;
  --ll-text-secondary: #6b6177;
  --ll-text-tertiary: #756d82;
  --ll-border: #e5ddd3;
  --ll-border-strong: #d4ccc2;
  /* Botanical — light versions */
  --ll-sage: #7a9e6c;
  --ll-sage-light: #e8f0e4;
  --ll-sage-subtle: rgba(107,127,94,0.10);
  /* Feedback */
  --ll-success: #6aab6e;
  --ll-error: #c75050;
  --ll-error-bg: #fdf0f0;
  --ll-warning: #d4a95e;
  /* Spacing (shared) */
  --ll-space-xs: 4px;
  --ll-space-sm: 8px;
  --ll-space-md: 16px;
  --ll-space-lg: 24px;
  --ll-space-xl: 32px;
  --ll-space-2xl: 48px;
  --ll-space-3xl: 40px;
  --ll-space-4xl: 48px;
  --ll-space-5xl: 72px;
  /* Typography (shared) */
  --ll-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ll-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ll-radius: 12px;
  --ll-radius-lg: 20px;
  /* NL Light shadows */
  --ll-shadow-sm: 0 1px 2px rgba(44,40,51,0.04), 0 2px 8px rgba(44,40,51,0.06);
  --ll-shadow-md: 0 2px 4px rgba(44,40,51,0.06), 0 8px 24px rgba(44,40,51,0.08);
  --ll-shadow-lg: 0 4px 8px rgba(44,40,51,0.06), 0 16px 48px rgba(44,40,51,0.12);
  --ll-transition: 200ms ease;
  /* Override Astra — NL light */
  --ast-global-color-0: #5e4d7f;
  --ast-global-color-1: #2c2833;
  --ast-global-color-2: #2c2833;
  --ast-global-color-3: #6b6177;
  --ast-global-color-4: #faf7f2;
  --ast-global-color-5: #ffffff;
  --ast-global-color-6: #bf9855;
  --ast-global-color-7: rgba(44,40,51,0.74);
  --ast-global-color-8: #ffffff;
  /* Astra internal overrides — NL light */
  --ast-code-block-background: #f3ede4;
  --ast-comment-inputs-background: #ffffff;
  --ast-widget-bg-color: transparent;
  --ast-wc-container-head-bg-color: #ffffff;
  --ast-title-layout-bg: #faf7f2;
  --ast-search-border-color: #d4ccc2;
  --ast-global-dark-bg-style: #faf7f2;
  --ast-global-dark-lfs: #ffffff;
}

/* ── Prevent horizontal overflow on all devices ── */
html, body { overflow-x: hidden; max-width: 100vw; }
/* Override Astra font families */
body, .ast-body-font-family,
.entry-content, .entry-content p,
.ast-header-custom-item,
.woocommerce .woocommerce-ordering select,
.woocommerce .quantity .qty {
  font-family: var(--ll-font) !important;
}
h1, h2, h3, h4, h5, h6,
.entry-title, .page-title,
.woocommerce .product_title,
.woocommerce-loop-product__title {
  font-family: var(--ll-font-display) !important;
}

/* --- 2. Fonts loaded via <link> in wp_head (priority 5) --- */

/* --- 3. Base & Typography --- */
body,
body.ast-body-font-family {
  background: var(--ll-bg) !important;
  color: var(--ll-text);
  font-family: var(--ll-font) !important;
  font-size: 1.05em;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.entry-content, .entry-content p {
  color: var(--ll-text);
  font-family: var(--ll-font) !important;
  font-size: 1.05em;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.012;
  pointer-events: none;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6,
.entry-content :where(h1,h2,h3,h4,h5,h6),
.entry-content :where(h1,h2,h3,h4,h5,h6) a {
  color: var(--ll-text) !important;
  font-family: var(--ll-font-display) !important;
  font-weight: 400 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none !important;
}
h1, .entry-content :where(h1) { font-size: 2.6em !important; font-size: clamp(2em, 4.5vw, 3.2em) !important; }
h2, .entry-content :where(h2) { font-size: 1.9em !important; font-size: clamp(1.6em, 3vw, 2.2em) !important; }
h3, .entry-content :where(h3) { font-size: 1.28em !important; font-size: clamp(1.15em, 2vw, 1.4em) !important; }
h4, .entry-content :where(h4) { font-size: 1.12em !important; font-size: clamp(1.05em, 1.5vw, 1.2em) !important; }

/* Typography utility classes */
.ll-eyebrow {
  display: block;
  font-family: var(--ll-font);
  font-size: 0.78em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ll-accent);
  margin-bottom: 0.5em;
}
.ll-body-lg {
  font-size: 1.18em;
  font-size: clamp(1.1em, 1.8vw, 1.25em);
  line-height: 1.75;
}
.ll-caption {
  font-size: 0.82em;
  color: var(--ll-text-tertiary);
}
.ll-overline {
  font-size: 0.72em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ll-text-secondary);
}

a { color: var(--ll-primary); transition: color var(--ll-transition); }
a:hover { color: var(--ll-primary-light); }

::selection {
  background: rgba(94,77,127,0.2);
  color: #2c2833;
}

/* Global form inputs */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
select,
textarea {
  background: #fff !important;
  color: var(--ll-text) !important;
  border-color: var(--ll-border) !important;
  font-family: var(--ll-font) !important;
}
input::placeholder,
textarea::placeholder {
  color: var(--ll-text-tertiary) !important;
}

code {
  background: var(--ll-primary-subtle);
  color: var(--ll-primary-light);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9em;
}

/* --- 4. Astra Header Override (NL light) --- */
.ast-primary-header,
.ast-main-header-wrap .main-header-bar,
header.site-header {
  background: rgba(250,247,242,0.97) !important;
  border-bottom: 1px solid var(--ll-border) !important;
  box-shadow: 0 1px 20px rgba(44,40,51,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.ast-primary-header.ll-header-scrolled,
.ast-main-header-wrap .main-header-bar.ll-header-scrolled {
  box-shadow: 0 2px 16px rgba(44,40,51,0.12);
  background: rgba(250,247,242,1) !important;
}
.custom-logo-link img,
.ast-site-identity .custom-logo,
.astra-logo-svg {
  filter: brightness(1) contrast(1.05) sepia(0.15) hue-rotate(-5deg);
}
.ast-primary-header .site-title a,
.ast-primary-header .site-title,
.main-header-bar .site-title a,
header .site-title a {
  color: var(--ll-text) !important;
  font-family: var(--ll-font-display);
  font-weight: 400;
  font-size: 1.35em;
  letter-spacing: 0.01em;
}
.ast-primary-header .ast-builder-menu a,
.main-header-bar .menu-link,
.ast-header-break-point .ast-mobile-header-wrap .ast-builder-menu a,
.ast-nav-menu a,
header nav a {
  color: var(--ll-text) !important;
  font-family: var(--ll-font);
  font-weight: 500;
  font-size: 0.92em;
  letter-spacing: 0.02em;
  transition: color var(--ll-transition);
}
.ast-primary-header .ast-builder-menu a:hover,
.main-header-bar .menu-link:hover,
header nav a:hover {
  color: var(--ll-primary) !important;
}
/* Active nav indicator */
.current-menu-item > a,
.current_page_item > a {
  border-bottom: 2px solid var(--ll-accent) !important;
  padding-bottom: 4px;
}
.ast-mobile-popup-drawer,
.ast-mobile-popup-content,
.ast-mobile-popup-inner,
.ast-mobile-popup-drawer.active .ast-mobile-popup-inner {
  background: var(--ll-bg) !important;
}
.ast-mobile-header-content,
.ast-desktop-header-content {
  background: var(--ll-bg) !important;
}
.ast-mobile-popup-drawer .ast-builder-menu a {
  color: var(--ll-text) !important;
}
/* NL Header cart icon */
.ast-site-header-cart .ast-cart-menu-wrap,
.ast-header-woo-cart .ast-cart-menu-wrap {
  color: var(--ll-text) !important;
}
/* NL Header account/cart SVG icons */
.ast-header-account-type-icon svg,
.ast-site-header-cart svg,
.ast-header-woo-cart svg { fill: var(--ll-text); }

/* --- 5. Main Content Area --- */
.site-content,
.ast-container,
#primary {
  max-width: 100% !important;
}
.site-content,
body .site-content {
  padding-top: 0 !important;
}
#primary,
body #primary,
body.ast-separate-container #primary {
  padding-top: 0 !important;
}
body .ast-separate-container .ast-article-post,
body .ast-separate-container .ast-article-single,
body.ast-separate-container .ast-article-post,
body.ast-separate-container .ast-article-single {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.entry-content {
  max-width: 100% !important;
  padding: 0 !important;
}
.ast-single-post .entry-content > *,
.page .entry-content > * {
  max-width: 100%;
}

/* --- 6. Layout / Section System --- */
.ll-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--ll-space-4xl) var(--ll-space-lg);
}
.ll-section-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--ll-space-4xl) var(--ll-space-lg);
}
.ll-section-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--ll-space-4xl) var(--ll-space-lg);
}
.ll-section-title {
  text-align: center;
  margin-bottom: var(--ll-space-xl);
}
.ll-section-title h2 {
  margin-bottom: 0.3em;
}
.ll-section-title p {
  color: var(--ll-text-secondary);
  font-size: 1.1em;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}
.ll-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--ll-accent), var(--ll-accent-light));
  border: none;
  margin: 0.7em auto;
  border-radius: 2px;
}

/* --- 7. Hero Section --- */
.ll-hero {
  text-align: center;
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}
/* Animated purple orb */
.ll-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  left: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,77,127,0.30) 0%, transparent 70%);
  filter: blur(90px);
  animation: ll-float 20s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}
/* Animated gold orb */
.ll-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,152,85,0.22) 0%, transparent 70%);
  filter: blur(90px);
  animation: ll-float 25s ease-in-out infinite reverse;
  pointer-events: none;
  will-change: transform;
  z-index: -1;
}
/* NL Hero — softer orbs */
.ll-hero::before { background: radial-gradient(circle, rgba(94,77,127,0.08) 0%, transparent 70%); }
.ll-hero::after { background: radial-gradient(circle, rgba(191,152,85,0.06) 0%, transparent 70%); }
@keyframes ll-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 40px) scale(1.03); }
}
.ll-hero h1, .ll-hero h2 {
  margin-bottom: 0.4em;
  color: var(--ll-text);
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .ll-hero h1, .ll-hero h2 { margin-top: 1em; }
  .ll-hero .ll-subtitle { margin-top: 1em; }
}
.ll-hero .ll-hero-accent {
  background: linear-gradient(135deg, var(--ll-accent), var(--ll-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ll-hero .ll-subtitle {
  font-size: 1.18em;
  font-size: clamp(1.05em, 2vw, 1.3em);
  color: var(--ll-text-secondary);
  max-width: 700px;
  margin: 0 auto 2em;
  line-height: 1.7;
  font-family: var(--ll-font);
  position: relative;
  z-index: 1;
}
.ll-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- 8. Buttons --- */
.ll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--ll-radius);
  text-decoration: none !important;
  font-family: var(--ll-font);
  font-size: 1em;
  font-weight: 600;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}
.ll-btn-primary {
  background: linear-gradient(135deg, var(--ll-primary), var(--ll-primary-dark));
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(94,77,127,0.3);
}
.ll-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,122,175,0.4);
  color: #fff !important;
}
.ll-btn-accent {
  background: linear-gradient(135deg, #bf9855, #d4a95e, #e0bc78);
  background-size: 200% 200%;
  color: #141218 !important;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 4px 16px rgba(191,152,85,0.3);
  position: relative;
  overflow: hidden;
}
.ll-btn-accent::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transition: left 500ms cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.ll-btn-accent:hover::after { left: 120%; }
.ll-btn-accent:hover {
  transform: translateY(-2px);
  background-position: 100% 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 30px rgba(191,152,85,0.35), 0 8px 28px rgba(191,152,85,0.25);
  color: #141218 !important;
}
.ll-btn-outline {
  background: transparent;
  color: var(--ll-primary) !important;
  border-color: var(--ll-border-strong);
}
.ll-btn-outline:hover {
  background: var(--ll-primary-subtle);
  color: var(--ll-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139,122,175,0.15);
}
.ll-btn-white {
  background: #fff;
  color: var(--ll-text) !important;
  border: 1px solid var(--ll-border);
  box-shadow: var(--ll-shadow-sm);
}
.ll-btn-white:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--ll-shadow-md);
}
.ll-btn-accent {
  color: #fff !important;
}
.ll-btn-accent:hover {
  color: #fff !important;
}
.ll-btn-sm {
  padding: 9px 20px;
  font-size: 0.9em;
}
.ll-btn-lg {
  padding: 16px 40px;
  font-size: 1.1em;
}

/* --- 8b. wpautop fixes & button row fallback --- */
.ll-btn-row { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; }
.ll-btn-row br { display: none; }
/* Fallback for browsers without :has() */
.ll-card > p:last-child { margin-bottom: 0; }
.ll-card > p:last-child:has(a.ll-btn) { margin: 0; }
.ll-card a.ll-btn { display: inline-block; margin-top: 1em; }
/* Fix inline-styled button containers missing display:flex */
.ll-hero div:has(> a.ll-btn),
.ll-card div:has(> a.ll-btn),
.ll-cta-banner div:has(> a.ll-btn) { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; }
.ll-card div:has(> a.ll-btn) { justify-content: flex-start; }

/* --- 9. Cards --- */
.ll-card {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius-lg);
  padding: 24px 22px;
  box-shadow: var(--ll-shadow-sm);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 300ms ease, border-color 300ms ease;
  position: relative;
  overflow: hidden;
}
.ll-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ll-accent), var(--ll-accent-light));
  opacity: 0;
  transition: opacity 300ms ease;
}
.ll-card:hover::before { opacity: 1; }
.ll-card:hover {
  transform: translateY(-6px);
  border-color: var(--ll-border-strong);
  box-shadow: 0 16px 40px rgba(44,40,51,0.1);
}
.ll-card h3 {
  color: var(--ll-text);
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.ll-card p {
  color: var(--ll-text-secondary);
  line-height: 1.7;
}

.ll-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--ll-space-xl);
}
.ll-card-vertical {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

/* --- 10. Feature Icon --- */
.ll-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ll-radius);
  background: linear-gradient(135deg, var(--ll-primary-subtle), rgba(94,77,127,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--ll-space-sm);
  font-size: 1.6em;
}
.ll-icon-gold {
  background: linear-gradient(135deg, var(--ll-accent-subtle), rgba(191,152,85,0.06));
}
.ll-icon-sage {
  background: linear-gradient(135deg, var(--ll-sage-light), rgba(107,127,94,0.06));
}

/* --- 11. CTA Banner --- */
.ll-cta-banner {
  background: linear-gradient(145deg, var(--ll-primary), #5a4a7a, var(--ll-primary-dark));
  color: #fff;
  border-radius: var(--ll-radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin: var(--ll-space-xl) var(--ll-space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.ll-cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(191,152,85,0.15), transparent 65%);
  pointer-events: none;
}
.ll-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 65%);
  pointer-events: none;
}
.ll-cta-banner h2 {
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.ll-cta-banner p {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 1.2em;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}
.ll-cta-banner .ll-btn {
  position: relative;
  z-index: 1;
}

/* --- 12. Trust Bar --- */
.ll-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--ll-space-md);
  padding: var(--ll-space-md) var(--ll-space-lg);
  max-width: 1100px;
  margin: 0 auto;
}
.ll-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ll-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ll-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  flex-shrink: 0;
}
.ll-trust-icon-gold {
  background: var(--ll-accent-subtle);
}
.ll-trust-item strong {
  display: block;
  font-size: 0.95em;
  color: var(--ll-text);
}
.ll-trust-item span {
  font-size: 0.85em;
  color: var(--ll-text-tertiary);
}


/* --- 17. FAQ --- */
.ll-faq-item {
  background: var(--ll-bg-card);
  border-radius: var(--ll-radius);
  padding: 18px 22px;
  margin-bottom: 16px;
  border: 1px solid var(--ll-border);
  transition: box-shadow var(--ll-transition), border-color var(--ll-transition);
}
.ll-faq-item:hover {
  border-color: var(--ll-border-strong);
  box-shadow: var(--ll-shadow-sm);
}
.ll-faq-item.ll-faq-open {
  border-color: rgba(191,152,85,0.25);
}
.ll-faq-item { cursor: pointer; }
.ll-faq-item h3,
.ll-faq-item .ll-faq-question {
  color: var(--ll-text);
  font-size: 1.05em;
  font-family: var(--ll-font);
  font-weight: 600;
  margin-bottom: 0;
}
.ll-faq-item h3::after,
.ll-faq-item .ll-faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d4a95e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 2px;
}
.ll-faq-item.ll-faq-open h3::after,
.ll-faq-item.ll-faq-open .ll-faq-question::after { transform: rotate(180deg); }
.ll-faq-item h3,
.ll-faq-item .ll-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ll-faq-item p,
.ll-faq-item .ll-faq-answer {
  color: var(--ll-text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  transition: max-height 400ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms ease, margin 300ms ease, padding 300ms ease;
}
.ll-faq-item.ll-faq-open p,
.ll-faq-item.ll-faq-open .ll-faq-answer {
  max-height: 800px;
  opacity: 1;
  margin-top: 0.8em;
  padding-bottom: 4px;
}

/* --- 18. Documentation --- */
.ll-doc-section {
  margin-bottom: 2em;
}
.ll-doc-section h2 {
  color: var(--ll-primary);
  font-size: 1.35em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--ll-border);
  margin-bottom: 1em;
}
.ll-doc-section h3 {
  color: var(--ll-text);
  font-size: 1.1em;
  margin-top: 1.5em;
}
.ll-doc-section ol,
.ll-doc-section ul {
  line-height: 1.9;
  color: var(--ll-text);
}
.ll-doc-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  background: var(--ll-bg-card);
  border-radius: var(--ll-radius);
  overflow: hidden;
  border: 1px solid var(--ll-border);
}
.ll-doc-section th {
  background: var(--ll-primary-subtle);
  padding: 12px 14px;
  text-align: left;
  font-weight: 500;
  color: var(--ll-primary-light);
  font-size: 0.9em;
}
.ll-doc-section td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--ll-border);
  color: var(--ll-text);
  font-size: 0.93em;
}

/* --- 19. Contact --- */
.ll-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ll-space-lg);
  margin: 1em 0;
}
@media (max-width: 600px) {
  .ll-contact-grid { grid-template-columns: 1fr; }
}
.ll-contact-card {
  background: var(--ll-bg-card);
  border-radius: var(--ll-radius);
  padding: 28px;
  border: 1px solid var(--ll-border);
}
.ll-contact-card h3 { color: var(--ll-primary); font-size: 1.1em; }
.ll-contact-card p { color: var(--ll-text-secondary); line-height: 1.6; }
.ll-contact-form {
  display: grid;
  gap: 1.2em;
  max-width: 520px;
}
.ll-contact-form label {
  display: block;
  color: var(--ll-text-secondary);
  font-size: 0.9em;
  font-weight: 500;
}
.ll-contact-form input,
.ll-contact-form select,
.ll-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ll-border);
  border-radius: 10px;
  margin-top: 6px;
  font-size: 1em;
  font-family: var(--ll-font);
  transition: border-color var(--ll-transition), box-shadow var(--ll-transition);
  box-sizing: border-box;
  background: #fff;
  color: var(--ll-text);
}
.ll-contact-form input::placeholder,
.ll-contact-form textarea::placeholder {
  color: var(--ll-text-tertiary);
}
.ll-contact-form input:focus,
.ll-contact-form select:focus,
.ll-contact-form textarea:focus {
  border-color: var(--ll-accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(191,152,85,0.12);
}

/* --- 20. Info Box --- */
.ll-info-box {
  background: var(--ll-accent-subtle);
  border-radius: var(--ll-radius-lg);
  padding: 22px;
  border: 1px solid var(--ll-border);
  border-left: 4px solid var(--ll-accent);
}
.ll-info-box h3 { color: var(--ll-accent); }

/* --- 21. Steps --- */
.ll-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}
.ll-steps li {
  counter-increment: step-counter;
  padding: 16px 0 16px 64px;
  position: relative;
  border-bottom: 1px solid var(--ll-border);
  line-height: 1.6;
  color: var(--ll-text);
}
.ll-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: var(--ll-radius);
  background: linear-gradient(135deg, var(--ll-primary), var(--ll-primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95em;
}

/* --- 22. Stats --- */
.ll-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--ll-space-lg);
  text-align: center;
  margin: 2em 0;
}
.ll-stat-number {
  font-size: 2.8em;
  font-weight: 700;
  font-family: var(--ll-font-display);
  color: var(--ll-primary);
  line-height: 1;
}
.ll-stat-label {
  font-size: 0.88em;
  color: var(--ll-text-secondary);
  margin-top: 4px;
}

/* --- 23. Footer (NL warm light) --- */
.ast-footer-overlay,
.site-footer,
.ast-small-footer,
footer.site-footer {
  background: var(--ll-bg-alt) !important;
  color: var(--ll-text-secondary);
  border-top: none;
  position: relative;
}
.ast-footer-overlay::before,
.site-footer::before,
footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bf9855, #d4b87a, transparent);
}
.site-footer a,
.ast-small-footer a {
  color: var(--ll-text) !important;
}
.site-footer a:hover,
.ast-small-footer a:hover {
  color: var(--ll-accent) !important;
}
.ast-footer-copyright {
  color: var(--ll-text-tertiary) !important;
  padding-top: 16px;
}
.site-footer .widget-title,
.site-footer h4 {
  color: var(--ll-text) !important;
  font-family: var(--ll-font-display);
  font-size: 1.05em;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--ll-accent);
  padding-bottom: 8px;
  display: inline-block;
}

/* --- 23b. Button row fix --- */
.ll-hero-actions br,
div:has(> a.ll-btn) br { display: none; }

/* --- 24. Animations --- */
@keyframes ll-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.ll-animate {
  animation: ll-fade-up 0.6s ease both;
}
.ll-animate-delay-1 { animation-delay: 0.1s; }
.ll-animate-delay-2 { animation-delay: 0.2s; }
.ll-animate-delay-3 { animation-delay: 0.3s; }
.ll-animate-delay-4 { animation-delay: 0.4s; }
.ll-animate-delay-5 { animation-delay: 0.5s; }

/* Stagger children */
@keyframes ll-fade-in { from { opacity: 0; } to { opacity: 1; } }
.ll-stagger > *:nth-child(1) { animation-delay: 0.08s; }
.ll-stagger > *:nth-child(2) { animation-delay: 0.16s; }
.ll-stagger > *:nth-child(3) { animation-delay: 0.24s; }
.ll-stagger > *:nth-child(4) { animation-delay: 0.32s; }
.ll-stagger > *:nth-child(5) { animation-delay: 0.40s; }
.ll-stagger > *:nth-child(6) { animation-delay: 0.48s; }
.ll-stagger > * {
  animation: ll-fade-in 0.4s ease both;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .ll-animate { animation: none; opacity: 1; }
  .ll-hero::before, .ll-hero::after { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ═══════════════════════════════════════════════════════════════════
   26. WooCommerce Premium Styling (.nl only)
   ═══════════════════════════════════════════════════════════════════ */

/* --- Shop page layout --- */
.woocommerce .woocommerce-result-count {
  color: var(--ll-text-secondary);
  font-size: 0.9em;
}
.woocommerce .woocommerce-ordering select {
  border: 2px solid var(--ll-border);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--ll-font);
  color: var(--ll-text);
  background: #fff;
}

/* --- Product cards — flexbox layout for consistent height --- */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: var(--ll-space-md) !important;
  margin-bottom: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  padding: 0;
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 300ms ease, border-color 300ms ease;
  box-shadow: var(--ll-shadow-sm);
  display: flex !important;
  flex-direction: column;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  border-color: rgba(191,152,85,0.25);
  box-shadow: 0 12px 36px rgba(44,40,51,0.12);
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.woocommerce ul.products li.product img {
  border-radius: 0;
  margin: 0;
  transition: transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.woocommerce ul.products li.product:hover img {
  transform: scale(1.04);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ll-font-display) !important;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--ll-text);
  padding: 14px 16px 4px;
  margin: 0;
  line-height: 1.3;
}
.woocommerce ul.products li.product .price {
  color: var(--ll-primary) !important;
  font-family: var(--ll-font-display);
  font-weight: 600;
  font-size: 1.15em;
  padding: 2px 16px 10px;
}
.woocommerce ul.products li.product .price del {
  color: var(--ll-text-tertiary) !important;
  font-size: 0.85em;
}
.woocommerce ul.products li.product .price ins {
  color: var(--ll-accent-dark) !important;
  text-decoration: none;
  font-weight: 700;
}
.woocommerce ul.products li.product .star-rating {
  margin: 0 20px 4px;
}

/* Add to cart button — pinned to bottom */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  background: linear-gradient(135deg, #bf9855, #d4a95e, #e0bc78) !important;
  background-size: 200% 200% !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 0 var(--ll-radius-lg) var(--ll-radius-lg) !important;
  padding: 12px 16px !important;
  font-family: var(--ll-font) !important;
  font-weight: 600 !important;
  font-size: 0.93em !important;
  text-transform: none !important;
  letter-spacing: 0.02em;
  width: 100%;
  display: block;
  text-align: center;
  margin: auto 0 0 !important;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background-position: 100% 100% !important;
  box-shadow: 0 0 20px rgba(191,152,85,0.3) !important;
}
@media (max-width: 600px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: var(--ll-space-sm) !important; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 0.95em; padding: 10px 10px 3px; }
  .woocommerce ul.products li.product .price { padding: 2px 10px 6px; font-size: 1em; }
  .woocommerce ul.products li.product .button { padding: 10px 10px !important; font-size: 0.85em !important; }
  .woocommerce section.related,
  .woocommerce section.up-sells { margin-top: 1.5em !important; }
}

/* Branded placeholder image treatment — replaces generic gray WooCommerce placeholder */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: relative;
}
.woocommerce ul.products li.product:has(img[src*="placeholder"]) .woocommerce-loop-product__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  padding-bottom: 100%;
  background: linear-gradient(155deg, #ede8f4 0%, #f5f0eb 40%, #f8f0e3 70%, #f0ece6 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Cpath d='M40 15c-2 8-8 14-8 22s4 14 8 18c4-4 8-10 8-18s-6-14-8-22z' fill='rgba(94,77,127,0.06)' stroke='rgba(94,77,127,0.18)' stroke-width='1.5'/%3E%3Cpath d='M32 19c-4 6-10 12-8 20s6 12 10 14' fill='none' stroke='rgba(94,77,127,0.12)' stroke-width='1'/%3E%3Cpath d='M48 19c4 6 10 12 8 20s-6 12-10 14' fill='none' stroke='rgba(94,77,127,0.12)' stroke-width='1'/%3E%3Cline x1='40' y1='55' x2='40' y2='70' stroke='rgba(107,127,94,0.2)' stroke-width='2'/%3E%3Cpath d='M36 60c-2 2-6 4-8 4' fill='none' stroke='rgba(107,127,94,0.18)' stroke-width='1.5'/%3E%3Cpath d='M44 62c2 2 6 3 8 3' fill='none' stroke='rgba(107,127,94,0.18)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72px;
  z-index: 1;
  pointer-events: none;
}
.woocommerce ul.products li.product:has(img[src*="placeholder"]) img {
  visibility: hidden;
}
/* :has() fallback — JS adds .ll-has-placeholder class */
.woocommerce ul.products li.product.ll-has-placeholder .woocommerce-loop-product__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  padding-bottom: 100%;
  background: linear-gradient(155deg, #ede8f4 0%, #f5f0eb 40%, #f8f0e3 70%, #f0ece6 100%);
  z-index: 1;
  pointer-events: none;
}
.woocommerce ul.products li.product.ll-has-placeholder img {
  visibility: hidden;
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--ll-accent) !important;
  color: #fff !important;
  font-family: var(--ll-font);
  font-weight: 600;
  font-size: 0.8em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--ll-radius) !important;
  padding: 6px 14px !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1.4 !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
}

/* --- Reduce bottom spacing on shop/product pages --- */
.woocommerce-page .site-content,
.woocommerce-page #primary {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.woocommerce-page .ast-container {
  padding-bottom: 0 !important;
}
.woocommerce-page .entry-content,
.woocommerce-page .ast-article-post,
.woocommerce-page .ast-article-single,
.woocommerce-page article.product {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* Related products & upsells — tighter spacing */
.woocommerce section.related,
.woocommerce .related.products,
.woocommerce section.up-sells {
  margin-top: 2em !important;
  margin-bottom: 0 !important;
  padding-bottom: 1em !important;
}
.woocommerce section.related h2,
.woocommerce section.up-sells h2 {
  font-family: var(--ll-font-display);
  font-size: 1.5em;
  margin-bottom: 0.8em;
}
/* Product tabs — reduce bottom gap */
.woocommerce div.product .woocommerce-tabs {
  margin-bottom: 0 !important;
}

/* --- Single product page --- */
.woocommerce div.product {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 0 !important;
}
.woocommerce div.product .product_title {
  font-family: var(--ll-font-display);
  font-size: 2em;
  font-weight: 600;
  color: var(--ll-text);
}
.woocommerce div.product p.price {
  font-family: var(--ll-font-display);
  font-size: 1.8em !important;
  color: var(--ll-primary) !important;
  font-weight: 600;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--ll-text-secondary);
  font-size: 1.05em;
  line-height: 1.8;
  border-left: 3px solid var(--ll-accent);
  padding-left: 20px;
  margin: 1.5em 0;
}

/* Single product add to cart */
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button {
  background: linear-gradient(135deg, #bf9855, #d4a95e, #e0bc78) !important;
  background-size: 200% 200% !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ll-radius) !important;
  padding: 16px 40px !important;
  font-family: var(--ll-font) !important;
  font-weight: 600 !important;
  font-size: 1.1em !important;
  text-transform: none !important;
  box-shadow: 0 4px 16px rgba(191,152,85,0.25);
  transition: all var(--ll-transition) !important;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product .single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(191,152,85,0.35) !important;
}


/* Quantity input — force visible (Astra may hide) */
.woocommerce .quantity {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  min-width: 80px;
  margin-right: 8px;
}
.woocommerce .quantity .qty {
  border: 2px solid var(--ll-border) !important;
  border-radius: 10px !important;
  padding: 12px !important;
  font-family: var(--ll-font);
  width: 80px !important;
  background: #fff !important;
  color: var(--ll-text) !important;
}
.woocommerce .quantity .qty:focus {
  border-color: var(--ll-accent) !important;
  outline: none;
  box-shadow: 0 0 0 4px rgba(191,152,85,0.12) !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 2px solid var(--ll-border) !important;
  padding: 0 !important;
  margin-bottom: 2em !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom-color: var(--ll-border) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--ll-text-secondary) !important;
  font-family: var(--ll-font);
  font-weight: 600;
  font-size: 0.95em;
  padding: 12px 24px !important;
  border-bottom: 3px solid transparent;
  transition: all var(--ll-transition);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ll-primary) !important;
  border-bottom-color: var(--ll-primary);
}

/* Product gallery */
.woocommerce div.product div.images {
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  box-shadow: var(--ll-shadow-sm);
}

/* Star rating */
.woocommerce .star-rating span::before {
  color: var(--ll-accent) !important;
}
.woocommerce .star-rating::before {
  color: var(--ll-border-strong) !important;
}

/* --- Reviews form — compact --- */
.woocommerce #reviews #respond .comment-form textarea {
  height: 100px !important;
  min-height: 80px !important;
}
.woocommerce #reviews #respond .comment-form p {
  margin-bottom: 10px !important;
}
.woocommerce #reviews #respond .comment-form input[type="text"],
.woocommerce #reviews #respond .comment-form input[type="email"] {
  padding: 10px 14px !important;
}

/* --- Related products / Upsells bottom gap --- */
.woocommerce .related.products,
.woocommerce .up-sells {
  margin-bottom: 0 !important;
  padding-bottom: 1em !important;
}
.woocommerce .related.products > h2,
.woocommerce .up-sells > h2 {
  font-family: var(--ll-font-display);
  font-size: 1.4em;
  margin-bottom: 0.8em;
  margin-top: 1.5em;
}
/* WooCommerce product tabs — reduce gap below */
.woocommerce div.product .woocommerce-tabs {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  margin-bottom: 0 !important;
  padding-bottom: 1em !important;
}

/* --- Cart page --- */
.woocommerce-cart .woocommerce table.cart {
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ll-border);
  box-shadow: var(--ll-shadow-sm);
  background: var(--ll-bg-card);
}
.woocommerce-cart table.cart th {
  background: var(--ll-primary-subtle);
  color: var(--ll-text-secondary);
  font-family: var(--ll-font);
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.woocommerce-cart table.cart td {
  border-bottom: 1px solid var(--ll-border);
  vertical-align: middle;
  color: var(--ll-text);
  background: transparent;
}
.woocommerce a.button.wc-forward,
.woocommerce .cart .button,
.woocommerce .checkout-button {
  background: linear-gradient(135deg, var(--ll-primary), var(--ll-primary-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ll-radius) !important;
  padding: 14px 32px !important;
  font-family: var(--ll-font) !important;
  font-weight: 600 !important;
  text-transform: none !important;
  transition: all var(--ll-transition) !important;
}
.woocommerce a.button.wc-forward:hover,
.woocommerce .cart .button:hover,
.woocommerce .checkout-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(94,77,127,0.3) !important;
}

/* Checkout proceed button - gold shimmer for primary CTA */
.woocommerce .checkout-button,
.woocommerce #place_order {
  background: linear-gradient(135deg, #bf9855, #d4a95e, #e0bc78) !important;
  background-size: 200% 200% !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(191,152,85,0.3) !important;
  font-size: 1.1em !important;
  padding: 16px 40px !important;
}
.woocommerce .checkout-button:hover,
.woocommerce #place_order:hover {
  background-position: 100% 100% !important;
  box-shadow: 0 0 30px rgba(191,152,85,0.35), 0 8px 28px rgba(191,152,85,0.25) !important;
}

/* --- Checkout page --- */
.woocommerce-checkout .woocommerce-checkout-review-order {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius-lg);
  padding: 28px;
  box-shadow: var(--ll-shadow-sm);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 2px solid var(--ll-border) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-family: var(--ll-font) !important;
  transition: border-color var(--ll-transition), box-shadow var(--ll-transition) !important;
  background: #fff !important;
  color: var(--ll-text) !important;
}
.woocommerce form .form-row input.input-text::placeholder {
  color: var(--ll-text-tertiary) !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--ll-accent) !important;
  box-shadow: 0 0 0 4px rgba(191,152,85,0.12) !important;
  outline: none !important;
}

/* WooCommerce notices */
.woocommerce .woocommerce-message {
  border-top-color: var(--ll-sage) !important;
  background: var(--ll-sage-light);
  color: var(--ll-text);
}
.woocommerce .woocommerce-message::before {
  color: var(--ll-sage) !important;
}
.woocommerce .woocommerce-error {
  border-top-color: var(--ll-error) !important;
  background: var(--ll-error-bg);
  color: var(--ll-text);
}
.woocommerce .woocommerce-info {
  border-top-color: var(--ll-primary) !important;
  background: var(--ll-primary-subtle);
  color: var(--ll-text);
}
.woocommerce .woocommerce-info::before {
  color: var(--ll-primary) !important;
}

/* Breadcrumbs (WooCommerce) */
.woocommerce .woocommerce-breadcrumb {
  color: var(--ll-text-tertiary);
  font-size: 0.88em;
  padding: 8px 0;
  margin: 0;
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--ll-primary);
}

/* My Account page */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius);
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--ll-border);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 20px;
  color: var(--ll-text-secondary);
  font-weight: 500;
  transition: all var(--ll-transition);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--ll-primary);
  background: var(--ll-primary-subtle);
  font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--ll-primary);
  background: var(--ll-primary-subtle);
}

/* ═══════════════════════════════════════════════════════════════════
   27. Premium Utility & Trust Components
   ═══════════════════════════════════════════════════════════════════ */

/* Premium badge */
.ll-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(191,152,85,0.15), rgba(191,152,85,0.05));
  color: var(--ll-accent);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(191,152,85,0.2);
}

/* Feature list with checkmarks */
.ll-feature-list {
  list-style: none;
  padding: 0;
}
.ll-feature-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--ll-text-secondary);
  line-height: 1.6;
}
.ll-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ll-sage);
  font-weight: 700;
}

/* Testimonial card */
.ll-testimonial {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius-lg);
  padding: 22px;
  position: relative;
}
.ll-testimonial::before {
  content: "\201C";
  font-family: var(--ll-font-display);
  font-size: 4em;
  color: var(--ll-accent);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.ll-testimonial p {
  color: var(--ll-text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1em;
}
.ll-testimonial cite {
  color: var(--ll-text-secondary);
  font-style: normal;
  font-size: 0.9em;
  font-weight: 600;
}

/* Premium section background */
.ll-section-cream {
  background: var(--ll-bg-alt);
  padding: var(--ll-space-3xl) 0;
}
.ll-section-purple {
  background: var(--ll-primary-subtle);
  padding: var(--ll-space-3xl) 0;
}

/* Image with caption */
.ll-image-block {
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  box-shadow: var(--ll-shadow-md);
}
.ll-image-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* Two-column layout */
.ll-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ll-space-xl);
  align-items: center;
}
@media (max-width: 768px) {
  .ll-two-col { grid-template-columns: 1fr; gap: var(--ll-space-xl); }
}

/* Tag / category pill */
.ll-tag {
  display: inline-block;
  background: var(--ll-primary-subtle);
  color: var(--ll-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ll-tag-gold {
  background: var(--ll-accent-subtle);
  color: var(--ll-accent);
}

/* --- 28. Responsive --- */
@media (max-width: 768px) {
  .ll-hero { padding: 56px 20px 40px; }
  h1, .entry-content :where(h1) { font-size: 2.1em !important; font-size: clamp(1.8em, 6vw, 2.4em) !important; }
  .ll-section, .ll-section-narrow, .ll-section-wide {
    padding: var(--ll-space-xl) var(--ll-space-md);
  }
  .ll-pricing { grid-template-columns: 1fr; max-width: 380px; }
  .ll-pricing-card.ll-featured { transform: none; }
  .ll-pricing-card.ll-featured:hover { transform: translateY(-4px); }
  .ll-cta-banner { padding: 40px 24px; margin: 20px 16px; border-radius: var(--ll-radius); }
  .ll-btn { padding: 14px 28px; font-size: 1em; }
  .ll-stats { grid-template-columns: repeat(2, 1fr); }
  .ll-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .ll-hero-actions { flex-direction: column; align-items: center; }
  .ll-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ll-trust-bar { grid-template-columns: 1fr; }
  .ll-stats { grid-template-columns: 1fr; }
}

/* --- 28b. Accessibility --- */
.ll-btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ll-accent);
  outline-offset: 2px;
}
.ll-faq-item h3:focus-visible,
.ll-faq-item .ll-faq-question:focus-visible {
  outline: 2px solid var(--ll-accent);
  outline-offset: -2px;
  border-radius: var(--ll-radius);
}
/* Hero badge */
.ll-hero-badge {
  display: inline-block;
  background: var(--ll-primary-subtle);
  color: var(--ll-primary);
  font-family: var(--ll-font);
  font-size: 0.82em;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(94,77,127,0.2);
  box-shadow: 0 0 20px rgba(94,77,127,0.1);
  position: relative;
  z-index: 1;
}

/* Story section */
.ll-story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--ll-space-xl) var(--ll-space-lg);
}
.ll-story-visual {
  background: linear-gradient(145deg, var(--ll-primary-subtle), var(--ll-accent-subtle));
  border-radius: var(--ll-radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--ll-border);
  position: relative;
  overflow: hidden;
}
.ll-story-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(191,152,85,0.12), transparent 70%);
  pointer-events: none;
}
.ll-story-visual .ll-story-icon {
  font-size: 4em;
  margin-bottom: 16px;
  display: block;
}
.ll-story-visual .ll-story-label {
  font-family: var(--ll-font-display);
  font-size: 1.6em;
  color: var(--ll-primary-dark);
  font-weight: 400;
  line-height: 1.3;
}
.ll-story-visual .ll-story-sublabel {
  color: var(--ll-text-secondary);
  font-size: 0.92em;
  margin-top: 8px;
}
.ll-story-text h2 {
  margin-bottom: 0.6em;
}
.ll-story-text p {
  color: var(--ll-text-secondary);
  line-height: 1.8;
  margin-bottom: 1em;
}
.ll-story-text .ll-story-signature {
  font-family: var(--ll-font-display);
  font-size: 1.15em;
  color: var(--ll-primary);
  font-style: italic;
}
@media (max-width: 768px) {
  .ll-story-section { grid-template-columns: 1fr; gap: 32px; }
}

/* Category cards - larger variant */
.ll-category-card {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius-lg);
  padding: 20px 18px;
  text-align: center;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.ll-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ll-primary), var(--ll-accent));
  opacity: 0;
  transition: opacity 300ms ease;
}
.ll-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44,40,51,0.12);
  border-color: var(--ll-primary);
}
.ll-category-card:hover::before { opacity: 1; }
.ll-category-card .ll-cat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ll-primary-subtle), rgba(94,77,127,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.ll-category-card .ll-cat-icon svg {
  color: var(--ll-primary);
}
.ll-category-card h3 {
  color: var(--ll-text);
  font-family: var(--ll-font-display);
  font-size: 1.3em;
  margin-bottom: 0.5em;
}
.ll-category-card p {
  color: var(--ll-text-secondary);
  font-size: 0.95em;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ll-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ll-category-card.ll-cat-full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  text-align: left;
  padding: 22px 28px;
}
.ll-category-card.ll-cat-full .ll-cat-icon { margin: 0; }
.ll-category-card.ll-cat-full p { margin-bottom: 0; }
.ll-category-card.ll-cat-full h3 { margin-bottom: 0.2em; }
@media (max-width: 768px) {
  .ll-categories-grid { grid-template-columns: 1fr; }
  .ll-category-card.ll-cat-full { grid-template-columns: 1fr; text-align: center; }
  .ll-category-card.ll-cat-full .ll-cat-icon { margin: 0 auto; }
}

/* Stats bar */
.ll-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--ll-space-lg) var(--ll-space-lg);
  text-align: center;
}
.ll-stat-item {
  padding: 16px 12px;
}
.ll-stat-number {
  font-family: var(--ll-font-display);
  font-size: 2.2em;
  color: var(--ll-accent);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ll-stat-label {
  color: var(--ll-text-secondary);
  font-size: 0.9em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .ll-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ll-stat-item { padding: 12px; }
}

/* Feature list (horizontal) */
.ll-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--ll-space-lg);
}
.ll-feature-item {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 300ms ease;
}
.ll-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,40,51,0.08);
}
.ll-feature-item .ll-feat-icon {
  font-size: 2em;
  margin-bottom: 12px;
}
.ll-feature-item h3 {
  font-family: var(--ll-font-display);
  font-size: 1.15em;
  color: var(--ll-text);
  margin-bottom: 0.5em;
}
.ll-feature-item p {
  color: var(--ll-text-secondary);
  font-size: 0.92em;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .ll-features-row { grid-template-columns: 1fr; }
}

/* Promise banner */
.ll-promise-section {
  background: linear-gradient(145deg, var(--ll-primary-subtle), rgba(191,152,85,0.08));
  border-radius: var(--ll-radius-lg);
  padding: 22px 24px;
  max-width: 1100px;
  margin: var(--ll-space-lg) auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border: 1px solid var(--ll-border);
}
.ll-promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ll-promise-item .ll-promise-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ll-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3em;
  border: 1px solid var(--ll-border);
}
.ll-promise-item h3 {
  font-family: var(--ll-font-display);
  font-size: 1.1em;
  color: var(--ll-text);
  margin-bottom: 0.3em;
}
.ll-promise-item p {
  color: var(--ll-text-secondary);
  font-size: 0.9em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .ll-promise-section { grid-template-columns: 1fr; padding: 18px 16px; }
}

/* NL CTA enhanced — darker purple for readable white text */
.ll-cta-banner {
  background: linear-gradient(145deg, #3d3258, #2d2344) !important;
  position: relative;
  overflow: hidden;
}
.ll-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}
.ll-cta-banner h2 {
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.ll-cta-banner p {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}
.ll-cta-banner .ll-btn-accent {
  background: linear-gradient(135deg, #bf9855, #d4a95e, #e0bc78);
  color: #1a1524 !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(191,152,85,0.4);
  position: relative;
  z-index: 1;
}
.ll-cta-banner .ll-btn-accent:hover {
  color: #1a1524 !important;
  box-shadow: 0 6px 28px rgba(191,152,85,0.5);
  transform: translateY(-2px);
}

/* NL divider accent */
.ll-section-divider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--ll-space-lg);
}
.ll-section-divider hr {
  border: none;
  height: 1px;
  background: var(--ll-border);
}

/* NL cart drawer mobile fix */
.astra-cart-drawer { max-width: 100vw; }
@media (max-width: 480px) {
  .astra-cart-drawer .astra-cart-drawer-content { width: 100vw; max-width: 100vw; }
}

/* --- 29. Astra Misc Overrides --- */
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-comment-list li.depth-1,
.ast-separate-container .comment-respond {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.ast-separate-container .site-content > .ast-container {
  max-width: 100% !important;
}
.ast-page-builder-template .site-content > .ast-container {
  max-width: 100% !important;
}
.ast-archive-description, .ast-breadcrumbs-wrapper {
  display: none !important;
}
/* Remove Astra bottom gaps on WooCommerce pages */
.ast-separate-container.woocommerce-page #primary {
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.ast-separate-container.woocommerce-page #primary > .ast-woocommerce-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.woocommerce-page .site-content {
  padding: 0 !important;
}
#secondary { display: none !important; }
#primary { width: 100% !important; float: none !important; }


.ast-header-button-1,
.ast-builder-layout-element[data-section="button-1"],
.site-header-section .ast-builder-layout-element.ast-header-button-1 {
  display: none !important;
}
.ast-page-builder-template .entry-header,
.page .entry-header,
.ast-single-page-title-layout .entry-header {
  display: none !important;
}

/* --- 30. Toast Notifications --- */
.ll-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ll-bg-card);
  color: var(--ll-text);
  padding: 14px 24px;
  border-radius: var(--ll-radius);
  border: 1px solid var(--ll-border);
  box-shadow: var(--ll-shadow-lg);
  z-index: 10000;
  animation: ll-fade-up 0.3s ease;
  font-size: 0.95em;
  font-family: var(--ll-font);
}
.ll-toast.ll-toast-error { background: rgba(199,80,80,0.9); color: #fff; }
.ll-toast.ll-toast-success { background: rgba(106,171,110,0.9); color: #fff; }

/* --- 31. Scrollbar --- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--ll-bg-alt); }
::-webkit-scrollbar-thumb { background: rgba(191,152,85,0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(191,152,85,0.45); }

/* --- 32. Site Switcher Bar --- */
.ll-site-switcher {
  background: #0e0c12;
  padding: 0;
  text-align: center;
  font-size: 0.82em;
  letter-spacing: 0.02em;
  z-index: 99999;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ll-site-switcher-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.ll-site-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--ll-font);
  transition: all var(--ll-transition);
  border-bottom: 2px solid transparent;
}
.ll-site-switcher a:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
}
.ll-site-switcher a.ll-switcher-active {
  color: rgba(255,255,255,0.95);
  border-bottom-color: var(--ll-accent);
  font-weight: 600;
}
.ll-site-switcher a .ll-switcher-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ll-accent);
  display: inline-block;
}
.ll-site-switcher a:not(.ll-switcher-active) .ll-switcher-dot {
  background: rgba(255,255,255,0.2);
}
/* --- Language toggle in switcher bar --- */
.ll-lang-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 16px;
  font-size: 0.9em;
  font-family: var(--ll-font);
}
.ll-lang-toggle a {
  padding: 5px 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  transition: all 0.2s;
  border-radius: 3px;
}
.ll-lang-toggle a:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}
.ll-lang-toggle a.ll-lang-current {
  color: rgba(255,255,255,0.95);
  font-weight: 700;
}
.ll-lang-toggle a.ll-lang-other {
  color: rgba(255,255,255,0.35);
}
.ll-lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.85em;
}
@media (max-width: 480px) {
  .ll-site-switcher a { padding: 6px 12px; font-size: 0.92em; }
  .ll-lang-toggle { padding: 0 10px; }
  .ll-lang-toggle a { padding: 4px 6px; font-size: 0.88em; }
}

/* ── Hide Astra entry-title only on pages with custom ll-hero h1 ── */
.page-template-astra-page-builder-template .entry-header .entry-title { display: none; }
.page-template-astra-page-builder-template .entry-header.ast-no-title { display: none; }
/* Hide Astra archive banner on WooCommerce pages where we have custom hero */
.woocommerce-page .ast-archive-entry-banner { display: none; }
.woocommerce-page .woocommerce-products-header { margin-bottom: 0.5em; margin-top: 0; }
.woocommerce-page .woocommerce-products-header .page-title { display: none; }
/* Hide WC breadcrumb — plugin has its own ll-breadcrumbs */
.woocommerce-breadcrumb { display: none !important; }

/* Astra on-card add-to-cart overlay button */
.ast-on-card-button.ast-select-options-trigger {
  background: linear-gradient(135deg, #bf9855, #d4a95e) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50% !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(191,152,85,0.35) !important;
  transition: all 300ms ease !important;
  opacity: 0;
}
.woocommerce ul.products li.product:hover .ast-on-card-button.ast-select-options-trigger {
  opacity: 1;
}
.ast-on-card-button.ast-select-options-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(191,152,85,0.5) !important;
}
.ast-on-card-button .ast-card-action-tooltip {
  background: var(--ll-text) !important;
  color: #fff !important;
  font-family: var(--ll-font) !important;
  font-size: 0.8em !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
}
.ast-on-card-button .ast-icon.icon-cart svg {
  fill: #fff !important;
  width: 18px;
  height: 18px;
}
.woocommerce-page #primary,
.woocommerce-page .ast-article-post,
.woocommerce-page .ast-article-single,
.woocommerce-page .site-content > .ast-container { padding-top: 0 !important; margin-top: 0 !important; }

/* ── 404 Page (global) ── */
.error-404 {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.error-404 .page-title {
  font-family: var(--ll-font-display);
  color: var(--ll-accent);
  font-size: 4em !important;
  font-size: clamp(3em, 8vw, 5em) !important;
  margin-bottom: 0.2em;
}
.error-404 .page-content p {
  color: var(--ll-text-secondary);
  font-size: 1.1em;
  margin-bottom: 1.5em;
}
.error-404 .wp-block-search,
.error-404 .search-form {
  max-width: 400px;
  margin: 0 auto;
}

/* ── Search box (global) ── */
.wp-block-search__input,
.search-field,
input[type="search"] {
  background: var(--ll-bg-card) !important;
  color: var(--ll-text) !important;
  border: 2px solid var(--ll-border-strong) !important;
  border-radius: var(--ll-radius) !important;
  padding: 12px 16px !important;
  font-family: var(--ll-font) !important;
  font-size: 1em;
}
.wp-block-search__input:focus,
.search-field:focus,
input[type="search"]:focus {
  border-color: var(--ll-primary) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(139,122,175,0.15);
}
.wp-block-search__button,
.search-submit {
  background: linear-gradient(135deg, var(--ll-primary), var(--ll-primary-dark)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--ll-radius) !important;
  padding: 12px 24px !important;
  font-family: var(--ll-font) !important;
  cursor: pointer;
  transition: all 200ms ease;
}
.wp-block-search__button:hover,
.search-submit:hover {
  box-shadow: 0 4px 16px rgba(139,122,175,0.3);
}

/* ── Info table (global) ── */
.ll-info-table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.ll-info-table td { padding: 12px 16px; border-bottom: 1px solid var(--ll-border); color: var(--ll-text); }
.ll-info-table td:first-child { font-weight: 600; color: var(--ll-text-secondary); width: 35%; }

/* ── Site-Switcher NL override ── */
.ll-site-switcher { background: var(--ll-bg-alt); border-bottom-color: var(--ll-border); }
.ll-site-switcher a { color: var(--ll-text-tertiary); }
.ll-site-switcher a:hover { color: var(--ll-text); background: rgba(94,77,127,0.06); }
.ll-site-switcher a.ll-switcher-active { color: var(--ll-text); }
.ll-site-switcher a:not(.ll-switcher-active) .ll-switcher-dot { background: var(--ll-border-strong); }

/* ── WooCommerce Coming Soon ── */
.woocommerce-coming-soon-store-only { padding: 80px 24px; text-align: center; }
.woocommerce-coming-soon-store-only h1 { font-family: var(--ll-font-display) !important; color: var(--ll-primary); }
.woocommerce-coming-soon-store-only p { font-family: var(--ll-font) !important; color: var(--ll-text-secondary); }

/* ── Header NL: match page background (not white) ── */
.ast-primary-header-bar,
.ast-above-header-bar,
.ast-below-header-bar { background-color: var(--ll-bg) !important; }
/* (mobile/desktop header content bg already set above) */

/* ── NL spacing: tighter than dark theme ── */
.ll-hero { padding: 8px 24px 16px; }
.ll-hero .ll-hero-badge { margin-bottom: 8px; }
.ll-hero h1 { margin-top: 6px; margin-bottom: 8px; }
.ll-section, .ll-section-narrow, .ll-section-wide {
  padding: var(--ll-space-xl) var(--ll-space-lg);
}
.ll-subtitle { max-width: 600px; margin-left: auto; margin-right: auto; }
.ll-section-divider { margin: var(--ll-space-lg) auto; }
.ll-cta-banner { padding: 28px 24px; margin: var(--ll-space-xl) var(--ll-space-lg); max-width: 1100px; }
@media (max-width: 768px) {
  .ll-cta-banner { padding: 24px 20px; margin: var(--ll-space-lg) var(--ll-space-md); }
}

/* ── Footer NL refinement ── */
.site-footer { padding-top: var(--ll-space-xl); }

/* ── Hide social links (no real profiles yet) ── */
.ast-builder-social-element { display: none !important; }

/* ── Fix footer widget hover color (Astra hardcodes #7e8427) ── */
.site-footer a:hover,
.footer-widget-area a:hover { color: var(--ll-primary) !important; }

/* ── Hide empty footer widget 4 ── */
.footer-widget-area[data-section="sidebar-widgets-footer-widget-4"]:empty,
.footer-widget-area[data-section="sidebar-widgets-footer-widget-4"] > .ast-no-widget-row { display: none; }


/* ── Hero video background ── */
.ll-hero-video-wrap {
  position: relative;
  width: calc(100% - 2 * var(--ll-space-lg));
  max-width: 1200px;
  overflow: hidden;
  border-radius: var(--ll-radius-lg);
  margin: 0 auto var(--ll-space-lg);
  box-sizing: border-box;
}
.ll-hero-video-wrap > p { margin: 0; padding: 0; line-height: 0; font-size: 0; }
.ll-hero-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
}
.ll-hero-video-wrap .ll-hero {
  position: relative;
  z-index: 2;
  background: rgba(94, 77, 127, 0.55);
  margin: 0;
  border-radius: 0;
  padding: 40px 24px 56px;
}
.ll-hero-video-wrap .ll-hero::before,
.ll-hero-video-wrap .ll-hero::after { display: none; }
.ll-hero-video-wrap .ll-hero *:not(.ll-hero-accent):not(.ll-btn-accent):not(.ll-hero-badge),
.ll-cta-banner *:not(.ll-btn-accent),
.ll-video-cinematic-overlay * {
  background: transparent !important;
}
.ll-hero-video-wrap .ll-hero .ll-hero-accent,
.ll-cta-banner .ll-hero-accent {
  color: var(--ll-accent) !important;
  background: linear-gradient(135deg, #bf9855, #d4b87a) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.ll-hero-video-wrap .ll-hero .ll-btn-accent,
.ll-cta-banner .ll-btn-accent {
  background: linear-gradient(135deg, #bf9855, #d4a95e, #e0bc78) !important;
}
.ll-hero-video-wrap .ll-hero .ll-hero-badge {
  background: rgba(94,77,127,0.4) !important;
}
.ll-hero-video-wrap .ll-hero h1,
.ll-hero-video-wrap .ll-hero .ll-subtitle,
.ll-hero-video-wrap .ll-hero .ll-hero-badge {
  text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}
.ll-hero-video-wrap .ll-hero h1 { color: #fff !important; }
.ll-hero-video-wrap .ll-hero .ll-subtitle { color: rgba(255,255,255,0.92) !important; }
.ll-hero-video-wrap .ll-hero .ll-hero-badge { color: #fff; background: rgba(94,77,127,0.4); border-color: rgba(255,255,255,0.2); }
.ll-hero-video-wrap .ll-hero .ll-btn-outline { color: #fff !important; border-color: rgba(255,255,255,0.5); }
.ll-hero-video-wrap .ll-hero .ll-btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff !important; border-color: #fff; }
@media (max-width: 768px) {
  .ll-hero-video-wrap { margin: 0; border-radius: 0; width: 100vw; max-width: 100%; min-height: 280px; }
  .ll-hero-video-wrap { min-height: auto !important; }
  .ll-hero-video-wrap video { object-position: center 30%; }
  .ll-hero-video-wrap .ll-hero { padding: 30px 20px 30px; background: rgba(94, 77, 127, 0.72); min-height: auto; display: flex; flex-direction: column; justify-content: center; }
  .ll-hero-video-wrap .ll-hero .ll-hero-badge { margin-bottom: 0.2em; }
  .ll-hero-video-wrap .ll-hero h1, .ll-hero-video-wrap .ll-hero h2 { font-size: 1.9em !important; font-size: clamp(1.6em, 5.5vw, 2.2em) !important; text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5); margin-top: 0.3em; }
  .ll-hero-video-wrap .ll-hero .ll-subtitle { font-size: 0.95em; max-width: 90vw; margin-top: 0.8em; }
  .ll-hero-video-wrap .ll-hero .ll-hero-actions { margin-top: 0.6em; }
}

/* ── Cinematic video section (full-width between sections) ── */
.ll-video-cinematic {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: var(--ll-space-xl) auto;
  padding: 0 var(--ll-space-lg);
  box-sizing: border-box;
}
.ll-video-cinematic-inner {
  position: relative;
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ll-video-cinematic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ll-video-cinematic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(transparent, rgba(94, 77, 127, 0.65));
  color: var(--ll-text);
}
.ll-video-cinematic-overlay span {
  font-size: 0.82em;
  opacity: 0.8;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .ll-video-cinematic { padding: 0 var(--ll-space-md); margin: var(--ll-space-xl) auto; }
  .ll-video-cinematic-inner { border-radius: var(--ll-radius); }
}

/* ── Vertical video alongside text ── */
.ll-story-video-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--ll-space-xl);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.ll-story-video-cell {
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
  box-shadow: var(--ll-shadow-lg);
}
.ll-story-video-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .ll-story-video-row { grid-template-columns: 1fr; gap: var(--ll-space-lg); }
  .ll-story-video-cell { max-width: 260px; margin: 0 auto; }
}

/* ── Media grid (press mentions) ── */
.ll-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--ll-space-md);
  max-width: 900px;
  margin: 0 auto;
}
.ll-media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: var(--ll-radius);
  text-decoration: none !important;
  transition: all 300ms ease;
}
.ll-media-item:hover {
  border-color: var(--ll-primary);
  transform: translateY(-3px);
  box-shadow: var(--ll-shadow-md);
}
.ll-media-item strong {
  color: var(--ll-text);
  font-size: 0.95em;
  margin-bottom: 4px;
}
.ll-media-item span {
  color: var(--ll-text-tertiary);
  font-size: 0.8em;
}

/* ── Instagram section (clean) ── */
.ll-instagram-clean {
  max-width: 1100px;
  margin: var(--ll-space-lg) auto;
  padding: 0 var(--ll-space-lg);
}
.ll-ig-clean-inner {
  display: flex;
  align-items: center;
  gap: var(--ll-space-lg);
  padding: var(--ll-space-lg) var(--ll-space-xl);
  background: var(--ll-bg-alt);
  border-radius: var(--ll-radius);
  border: 1px solid var(--ll-border);
}
.ll-ig-clean-inner svg { flex-shrink: 0; }
.ll-ig-clean-inner h3 { font-family: var(--ll-font-display); font-size: 1.1em; margin: 0 0 4px; color: var(--ll-text); }
.ll-ig-clean-inner p { font-size: 0.9em; color: var(--ll-text-secondary); margin: 0; line-height: 1.5; }
.ll-ig-clean-inner .ll-btn { flex-shrink: 0; margin-left: auto; }
@media (max-width: 768px) {
  .ll-ig-clean-inner { flex-direction: column; text-align: center; gap: var(--ll-space-md); padding: var(--ll-space-lg); }
  .ll-ig-clean-inner .ll-btn { margin-left: 0; }
}

/* ── Payment icons bar ── */
.ll-payment-bar { text-align: center; padding: var(--ll-space-lg) 0; border-top: 1px solid var(--ll-border); margin-top: var(--ll-space-lg); }
.ll-payment-bar p { font-size: 0.82em; color: var(--ll-text-tertiary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.ll-payment-icons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; align-items: center; }
.ll-payment-icons svg { width: 42px; height: 28px; background: #fff; border: 1px solid var(--ll-border); border-radius: 6px; padding: 4px 6px; }

/* ── Breadcrumbs ── */
.ll-breadcrumbs {
  background: var(--ll-bg-alt);
  border-bottom: 1px solid var(--ll-border);
  font-size: 0.85em;
  color: var(--ll-text-secondary);
}
.ll-breadcrumbs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ll-breadcrumbs a {
  color: var(--ll-text-secondary);
  text-decoration: none;
  transition: color var(--ll-transition);
}
.ll-breadcrumbs a:hover { color: var(--ll-primary); }
.ll-bc-sep { color: var(--ll-border-strong); margin: 0 2px; }
.ll-breadcrumbs [aria-current="page"] { color: var(--ll-text); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   REDESIGN v2.0 — Premium Boutique Upgrade
   Appended to existing CSS. Overrides above where needed.
   ═══════════════════════════════════════════════════════════════ */

/* --- R1. Header Premium --- */
.ast-primary-header,
.ast-main-header-wrap .main-header-bar,
header.site-header {
  background: rgba(250,247,242,0.92) !important;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(212,204,194,0.5) !important;
  box-shadow: 0 1px 30px rgba(44,40,51,0.04);
}
.ast-primary-header.ll-header-scrolled,
.ast-main-header-wrap .main-header-bar.ll-header-scrolled {
  background: rgba(250,247,242,0.98) !important;
  box-shadow: 0 4px 30px rgba(44,40,51,0.08);
  border-bottom-color: rgba(212,204,194,0.7) !important;
}
/* Menu items — fixed px size for consistency across pages */
.ast-primary-header .ast-builder-menu a,
.main-header-bar .menu-link,
.ast-nav-menu a,
header nav a {
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 14px !important;
  text-transform: uppercase;
  padding: 8px 4px;
  position: relative;
}
.ast-primary-header .ast-builder-menu a::after,
header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ll-accent), var(--ll-accent-light));
  transition: width 0.3s ease, left 0.3s ease;
}
.ast-primary-header .ast-builder-menu a:hover::after,
header nav a:hover::after {
  width: 100%;
  left: 0;
}
/* Active menu — gold underline */
.current-menu-item > a,
.current_page_item > a {
  border-bottom: none !important;
  padding-bottom: 8px;
}
.current-menu-item > a::after,
.current_page_item > a::after {
  width: 100% !important;
  left: 0 !important;
}
/* Logo proper sizing */
.custom-logo-link img,
.ast-site-identity .custom-logo,
.astra-logo-svg {
  max-height: 52px !important;
  width: auto;
  filter: none;
}
/* Cart icon gold badge */
.ast-site-header-cart .count,
.ast-header-woo-cart .count,
.ast-cart-menu-wrap .count {
  background: linear-gradient(135deg, var(--ll-accent), var(--ll-accent-dark)) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.7em;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 9px;
}

/* --- R2. Typography refinement — fixed px base for consistency --- */
html {
  font-size: 16px !important;
}
body, body.ast-body-font-family {
  font-weight: 300;
  font-size: 16px !important;
  line-height: 1.8;
  letter-spacing: 0.005em;
}
.entry-content, .entry-content p {
  font-weight: 300;
  font-size: 16px !important;
  line-height: 1.8;
}
h1, h2, h3, h4, h5, h6,
.entry-content :where(h1,h2,h3,h4,h5,h6) {
  font-weight: 300 !important;
  letter-spacing: -0.02em;
}
h1, .entry-content :where(h1) {
  font-size: clamp(2.2em, 5vw, 3.6em) !important;
  line-height: 1.15;
}
h2, .entry-content :where(h2) {
  font-size: clamp(1.7em, 3.5vw, 2.6em) !important;
  line-height: 1.2;
}
/* Eyebrow — refined */
.ll-eyebrow {
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ll-accent-dark);
}
/* Hero accent — richer gradient */
.ll-hero .ll-hero-accent {
  background: linear-gradient(135deg, #d4b87a, #bf9855, #a88545);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Story signature — italic serif */
.ll-story-signature {
  font-family: var(--ll-font-display) !important;
  font-style: italic;
  font-size: 1.05em;
  color: var(--ll-text-secondary);
  display: block;
  margin-top: 1.5em;
}

/* --- R3. Card system premium --- */
.ll-card {
  padding: 32px 28px;
  border: 1px solid rgba(229,221,211,0.6);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44,40,51,0.03);
  backdrop-filter: blur(4px);
}
.ll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,40,51,0.08);
  border-color: rgba(191,152,85,0.3);
}
/* Gold top line on hover — more subtle */
.ll-card::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ll-accent), transparent);
  border-radius: 0;
}

/* --- R4. Button system upgrade --- */
.ll-btn {
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 10px;
}
.ll-btn-accent {
  background: linear-gradient(135deg, #c9a05c, #bf9855, #b38d4a);
  background-size: 100% 100%;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(191,152,85,0.25);
  border: 1px solid rgba(255,255,255,0.15);
}
.ll-btn-accent:hover {
  color: #fff !important;
  box-shadow: 0 6px 30px rgba(191,152,85,0.35);
  transform: translateY(-2px);
}
.ll-btn-outline {
  border: 1.5px solid var(--ll-accent);
  color: var(--ll-accent-dark) !important;
  background: transparent;
}
.ll-btn-outline:hover {
  background: var(--ll-accent);
  color: #fff !important;
  border-color: var(--ll-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191,152,85,0.2);
}

/* --- R5. Hero Video overlay --- */
.ll-hero-video-wrap {
  position: relative;
}
.ll-hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(44,40,51,0.45) 0%,
    rgba(44,40,51,0.25) 40%,
    rgba(44,40,51,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.ll-hero-video-wrap video {
  border-radius: 20px;
  overflow: hidden;
}
.ll-hero-video-wrap .ll-hero {
  position: relative;
  z-index: 2;
}
.ll-hero-video-wrap .ll-hero h1,
.ll-hero-video-wrap .ll-hero .ll-subtitle,
.ll-hero-video-wrap .ll-hero .ll-hero-badge {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ll-hero-video-wrap .ll-hero .ll-subtitle {
  color: rgba(255,255,255,0.85) !important;
}
/* Hero badge — gold pill */
.ll-hero-badge {
  display: inline-block;
  background: rgba(191,152,85,0.15);
  border: 1px solid rgba(191,152,85,0.3);
  color: var(--ll-accent-light) !important;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5em;
  backdrop-filter: blur(8px);
}
.ll-hero-video-wrap .ll-hero .ll-hero-accent {
  background: linear-gradient(135deg, #e0c68a, #d4b87a, #c9a05c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- R6. Trust bar upgrade --- */
.ll-trust-bar {
  background: var(--ll-bg-card);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--ll-border);
  box-shadow: 0 2px 16px rgba(44,40,51,0.04);
  margin-top: -40px;
  position: relative;
  z-index: 3;
}
.ll-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.ll-trust-item strong {
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.ll-trust-item span {
  font-size: 0.8em;
}

/* --- R7. Story section upgrade --- */
.ll-story-video-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.ll-story-video-cell video {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(44,40,51,0.12);
}
.ll-story-video-row > div:last-child {
  border-left: 3px solid var(--ll-accent);
  padding-left: 32px;
}

/* --- R8. Category cards with hover --- */
.ll-category-card {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.ll-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,40,51,0.1);
  border-color: rgba(191,152,85,0.3);
}
.ll-cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--ll-primary-subtle), rgba(94,77,127,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}
.ll-category-card:hover .ll-cat-icon {
  transform: scale(1.1);
}
.ll-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

/* --- R9. CTA section upgrade --- */
.ll-cta-banner {
  border-radius: 24px;
  padding: 72px 56px;
  margin: var(--ll-space-3xl) var(--ll-space-lg);
}

/* --- R10. WooCommerce Product Cards Premium --- */
.woocommerce ul.products li.product {
  border: 1px solid var(--ll-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ll-bg-card);
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  padding: 0 !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,40,51,0.1);
  border-color: rgba(191,152,85,0.3);
}
/* Product image container */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product > a > img {
  border-radius: 0;
  margin-bottom: 0 !important;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.woocommerce ul.products li.product:hover a img,
.woocommerce ul.products li.product:hover > a > img {
  transform: scale(1.06);
}
.woocommerce ul.products li.product > a {
  overflow: hidden;
  display: block;
}
/* Product info area */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  padding: 16px 20px 4px !important;
  font-size: 1.1em !important;
  font-weight: 400 !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 20px 8px;
  color: var(--ll-accent-dark) !important;
  font-family: var(--ll-font-display);
  font-size: 1.2em !important;
  font-weight: 400;
}
.woocommerce ul.products li.product .price del {
  color: var(--ll-text-tertiary) !important;
  font-size: 0.85em;
}
/* Add to cart button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button {
  margin: 8px 20px 20px !important;
  background: transparent !important;
  color: var(--ll-accent-dark) !important;
  border: 1.5px solid var(--ll-accent) !important;
  border-radius: 10px !important;
  font-family: var(--ll-font) !important;
  font-weight: 500 !important;
  font-size: 0.88em !important;
  letter-spacing: 0.04em;
  padding: 10px 24px !important;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
  display: block;
  text-align: center;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.add_to_cart_button:hover {
  background: var(--ll-accent) !important;
  color: #fff !important;
  transform: none;
  box-shadow: 0 4px 16px rgba(191,152,85,0.25);
}
/* WooCommerce placeholder styling */
.woocommerce ul.products li.product img[src*="placeholder"],
.woocommerce ul.products li.product img[src*="woocommerce-placeholder"] {
  background: linear-gradient(145deg, var(--ll-primary-subtle), var(--ll-accent-subtle));
  opacity: 0.6;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 40px;
}
/* Sorting/results bar */
.woocommerce .woocommerce-result-count {
  font-family: var(--ll-font);
  color: var(--ll-text-secondary);
  font-size: 0.88em;
}
.woocommerce .woocommerce-ordering select {
  border: 1.5px solid var(--ll-border) !important;
  border-radius: 10px !important;
  padding: 8px 14px;
  font-family: var(--ll-font) !important;
  font-size: 0.88em;
  color: var(--ll-text);
  background: var(--ll-bg-card);
}
.woocommerce .woocommerce-ordering select:focus {
  border-color: var(--ll-accent) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(191,152,85,0.12);
}

/* --- R11. Single Product Page --- */
.woocommerce div.product .product_title {
  font-weight: 300 !important;
  font-size: clamp(1.6em, 3vw, 2.4em) !important;
}
.woocommerce div.product .price {
  color: var(--ll-accent-dark) !important;
  font-family: var(--ll-font-display);
  font-size: 1.6em !important;
}
.woocommerce div.product .single_add_to_cart_button {
  background: linear-gradient(135deg, #c9a05c, #bf9855) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 40px !important;
  font-family: var(--ll-font) !important;
  font-weight: 600 !important;
  font-size: 1em !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(191,152,85,0.25);
}
.woocommerce div.product .single_add_to_cart_button:hover {
  box-shadow: 0 8px 30px rgba(191,152,85,0.35) !important;
  transform: translateY(-2px);
}
/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 10px 10px 0 0 !important;
  border-color: var(--ll-border) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom-color: var(--ll-bg-card) !important;
  background: var(--ll-bg-card);
}

/* --- R12. Hide Astra Footer Builder widgets (replaced by premium JS footer) --- */
.site-primary-footer-wrap,
.site-below-footer-wrap,
.site-above-footer-wrap {
  display: none !important;
}

/* --- R12. Dark Footer --- */
.ast-footer-overlay,
.site-footer,
.ast-small-footer,
footer.site-footer {
  background: #2c2833 !important;
  color: rgba(250,247,242,0.7);
  border-top: 1px solid rgba(191,152,85,0.2) !important;
}
.site-footer h4,
.ast-small-footer h4,
footer h4 {
  color: rgba(250,247,242,0.95) !important;
  font-family: var(--ll-font-display);
  border-bottom-color: var(--ll-accent) !important;
}
.site-footer a,
.ast-small-footer a,
footer.site-footer a {
  color: rgba(250,247,242,0.6) !important;
  transition: color 0.2s ease;
}
.site-footer a:hover,
.ast-small-footer a:hover,
footer.site-footer a:hover {
  color: var(--ll-accent-light) !important;
}
.site-footer p,
.ast-small-footer p,
footer.site-footer p {
  color: rgba(250,247,242,0.5);
}
/* Footer legal links — override for dark bg */
.ll-footer-legal {
  border-top-color: rgba(191,152,85,0.15) !important;
}
.ll-footer-legal a {
  color: rgba(250,247,242,0.5) !important;
}
.ll-footer-legal a:hover {
  color: var(--ll-accent-light) !important;
}
/* Copyright text */
.ast-footer-copyright,
.ast-footer-copyright p,
.ast-small-footer .ast-footer-copyright {
  color: rgba(250,247,242,0.35) !important;
}
/* Footer headings in JS-injected nav */
.ll-footer-nav {
  border-bottom: 1px solid rgba(191,152,85,0.12);
  padding-bottom: 24px;
}

/* --- R13. Contact form premium --- */
.ll-contact-form input,
.ll-contact-form select,
.ll-contact-form textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--ll-border);
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.ll-contact-form input:focus,
.ll-contact-form select:focus,
.ll-contact-form textarea:focus {
  border-color: var(--ll-accent);
  box-shadow: 0 0 0 4px rgba(191,152,85,0.1);
  background: #fff;
}
.ll-contact-card {
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,40,51,0.04);
}
.ll-contact-card h3 {
  font-family: var(--ll-font-display);
  font-size: 1.25em;
  font-weight: 400;
}

/* --- R14. WooCommerce Account/Login --- */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: 16px;
  padding: 36px !important;
  box-shadow: 0 2px 16px rgba(44,40,51,0.04);
}
.woocommerce-account .woocommerce-form-login input,
.woocommerce-account .woocommerce-form-register input {
  border-radius: 12px !important;
  padding: 14px 18px !important;
  border: 1.5px solid var(--ll-border) !important;
  font-family: var(--ll-font) !important;
}
.woocommerce-account .woocommerce-form-login input:focus,
.woocommerce-account .woocommerce-form-register input:focus {
  border-color: var(--ll-accent) !important;
  box-shadow: 0 0 0 4px rgba(191,152,85,0.1);
}
.woocommerce-account .woocommerce-Button,
.woocommerce form .button {
  background: linear-gradient(135deg, #c9a05c, #bf9855) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 32px !important;
  font-family: var(--ll-font) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  transition: all 0.3s ease !important;
}
.woocommerce-account .woocommerce-Button:hover,
.woocommerce form .button:hover {
  box-shadow: 0 6px 24px rgba(191,152,85,0.3) !important;
  transform: translateY(-1px);
}

/* --- R15. FAQ refinement --- */
.ll-faq-item {
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(229,221,211,0.6);
}
.ll-faq-item:hover {
  border-color: rgba(191,152,85,0.2);
}
.ll-faq-item h3,
.ll-faq-item .ll-faq-question {
  font-weight: 500;
  font-size: 1em;
}

/* --- R16. Scroll animations --- */
.ll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1), transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.ll-animate.ll-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.ll-categories-grid .ll-animate:nth-child(2) { transition-delay: 0.1s; }
.ll-categories-grid .ll-animate:nth-child(3) { transition-delay: 0.2s; }
.ll-categories-grid .ll-animate:nth-child(4) { transition-delay: 0.3s; }

/* --- R17. Cookie consent premium --- */
.ll-cookie-banner {
  border-radius: 16px !important;
  border: 1px solid var(--ll-border) !important;
  box-shadow: 0 -4px 30px rgba(44,40,51,0.1) !important;
  backdrop-filter: blur(16px);
}

/* --- R18. Site switcher compact --- */
.ll-site-switcher {
  font-size: 0.72em;
  padding: 4px 0;
  background: #2c2833;
  color: rgba(250,247,242,0.5);
}
.ll-site-switcher a {
  color: rgba(250,247,242,0.5) !important;
  text-decoration: none;
}
.ll-site-switcher a:hover,
.ll-site-switcher a.ll-switcher-active {
  color: rgba(250,247,242,0.9) !important;
}
.ll-lang-toggle a {
  color: rgba(250,247,242,0.4) !important;
}
.ll-lang-toggle .ll-lang-current {
  color: var(--ll-accent-light) !important;
  font-weight: 600;
}
.ll-lang-sep {
  color: rgba(250,247,242,0.2) !important;
}

/* ═══════════════════════════════════════════════════════════════
   R20. MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
  .ll-story-video-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ll-story-video-row > div:last-child {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--ll-accent);
    padding-top: 24px;
  }
  .ll-cta-banner {
    padding: 48px 32px;
    border-radius: 16px;
  }
  .ll-hero {
    padding: 60px 20px 48px;
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  /* Hero compact */
  .ll-hero {
    padding: 48px 16px 40px;
  }
  .ll-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .ll-hero-actions .ll-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .ll-hero-badge {
    font-size: 0.68em;
    padding: 5px 16px;
  }
  /* Trust bar 2x2 */
  .ll-trust-bar {
    grid-template-columns: 1fr 1fr;
    padding: 20px 16px;
    gap: 16px;
    margin-top: -24px;
    border-radius: 12px;
  }
  .ll-trust-icon {
    width: 40px;
    height: 40px;
  }
  .ll-trust-item strong { font-size: 0.82em; }
  .ll-trust-item span { font-size: 0.72em; }
  /* Sections */
  .ll-section,
  .ll-section-narrow,
  .ll-section-wide {
    padding: 32px 16px;
  }
  /* Categories */
  .ll-categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ll-category-card {
    padding: 24px 20px;
  }
  /* Cards */
  .ll-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ll-card {
    padding: 24px 20px;
  }
  /* CTA */
  .ll-cta-banner {
    padding: 40px 20px;
    margin: 24px 12px;
    border-radius: 14px;
  }
  .ll-cta-banner h2 { font-size: 1.4em; }
  /* Contact grid */
  .ll-contact-grid {
    grid-template-columns: 1fr;
  }
  /* WooCommerce products 2-col */
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-3 {
    grid-template-columns: 1fr 1fr !important;
  }
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.add_to_cart_button {
    margin: 6px 12px 14px !important;
    padding: 8px 16px !important;
    font-size: 0.8em !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product h2 {
    padding: 10px 12px 2px !important;
    font-size: 0.95em !important;
  }
  .woocommerce ul.products li.product .price {
    padding: 0 12px 4px;
    font-size: 1em !important;
  }
  /* Footer stacked */
  .ll-footer-nav {
    flex-direction: column;
    gap: 24px;
  }
  .ll-footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  /* FAQ */
  .ll-faq-item {
    padding: 16px 18px;
  }
}

/* Small phone (< 480px) */
@media (max-width: 480px) {
  .ll-trust-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-3 {
    grid-template-columns: 1fr !important;
  }
  h1, .entry-content :where(h1) {
    font-size: clamp(1.8em, 6vw, 2.4em) !important;
  }
}

/* iOS zoom prevention */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Safe area (notch) */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer,
  footer.site-footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .ll-cookie-banner {
    bottom: env(safe-area-inset-bottom);
  }
}

/* ═══════════════════════════════════════════════════════════════
   R21. New Homepage Sections
   ═══════════════════════════════════════════════════════════════ */

/* Outline light button (for dark hero backgrounds) */
.ll-btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9) !important;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.ll-btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Cream section background */
.ll-section-cream {
  background: var(--ll-bg-alt);
  padding: 56px 24px;
  margin: 0 -24px;
  position: relative;
}
.ll-section-cream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ll-border), transparent);
}
.ll-section-cream::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ll-border), transparent);
}

/* Features row (3-column) */
.ll-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.ll-feature-item {
  text-align: center;
  padding: 32px 24px;
}
.ll-feat-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 12px rgba(44,40,51,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ll-feature-item:hover .ll-feat-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44,40,51,0.08);
}
.ll-feature-item h3 {
  font-family: var(--ll-font-display);
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  color: var(--ll-text);
}
.ll-feature-item p {
  color: var(--ll-text-secondary);
  font-size: 0.95em;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .ll-features-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ll-feature-item {
    padding: 24px 16px;
  }
  .ll-section-cream {
    margin: 0 -16px;
    padding: 40px 16px;
  }
}

/* Stats bar */
.ll-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}
.ll-stat-item {
  padding: 16px;
}
.ll-stat-number {
  font-family: var(--ll-font-display);
  font-size: 2.8em;
  font-weight: 300;
  color: var(--ll-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ll-stat-label {
  font-size: 0.85em;
  color: var(--ll-text-secondary);
  margin-top: 6px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .ll-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px 16px;
  }
  .ll-stat-number {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  .ll-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   R30. PREMIUM POLISH — Remove all WordPress/WooCommerce tells
   ═══════════════════════════════════════════════════════════════ */

/* --- R30a. Header: hide cart price, clean nav --- */
/* Hide "€ 0,00" text next to cart — screams WooCommerce */
.ast-site-header-cart .ast-woo-header-cart-info-wrap,
.ast-header-woo-cart .ast-woo-header-cart-info-wrap,
.ast-cart-menu-wrap .amount,
.ast-site-header-cart .ast-addon-cart-wrap {
  display: none !important;
}
/* Style cart icon as minimal bag icon */
.ast-site-header-cart,
.ast-header-woo-cart {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ast-site-header-cart:hover,
.ast-header-woo-cart:hover {
  opacity: 1;
}
/* Account icon — subtle */
.ast-header-account-wrap {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ast-header-account-wrap:hover {
  opacity: 1;
}
/* Hide "MIJN ACCOUNT" text if it's in nav — too long for premium */
/* Instead keep the icon-only approach */

/* --- R30b. Hide WooCommerce "Toont alle X resultaten" and raw sorting --- */
.woocommerce .woocommerce-result-count {
  display: none !important;
}
/* Style sorting more elegantly */
.woocommerce .woocommerce-ordering {
  float: none !important;
  text-align: right;
  margin-bottom: 24px;
}
.woocommerce .woocommerce-ordering select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23bf9855' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px !important;
  cursor: pointer;
}

/* --- R30c. Product cards — premium placeholder treatment --- */
.woocommerce ul.products li.product img[src*="placeholder"],
.woocommerce ul.products li.product img[src*="woocommerce-placeholder"] {
  background: linear-gradient(145deg, #ede8f4 0%, #f3ede4 40%, #f8f0e3 100%) !important;
  opacity: 1 !important;
  padding: 0 !important;
  position: relative;
}
/* Overlay text on placeholder images */
.woocommerce ul.products li.product:has(img[src*="placeholder"]) > a::after,
.woocommerce ul.products li.product.ll-has-placeholder > a::after {
  content: 'Foto binnenkort beschikbaar';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ll-font);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ll-text-tertiary);
  white-space: nowrap;
  background: rgba(255,255,255,0.85);
  padding: 4px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.woocommerce ul.products li.product > a {
  position: relative;
}
/* Hide the ugly lavender SVG placeholder icon */
.woocommerce ul.products li.product img[src*="placeholder"] {
  filter: saturate(0.3) brightness(1.1);
}
/* Product category labels */
.woocommerce ul.products li.product .product-category-label,
.woocommerce ul.products li.product .posted_in {
  font-size: 0.72em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ll-accent-dark);
  margin: 0;
  padding: 4px 20px 0;
}

/* --- R30d. Breadcrumbs refinement --- */
.ll-breadcrumbs {
  background: transparent;
  font-size: 0.78em;
  letter-spacing: 0.02em;
}

/* --- R30e. Cookie banner — luxury style --- */
.ll-cookie-banner {
  background: rgba(250,247,242,0.96) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(212,204,194,0.4) !important;
  border-radius: 16px !important;
  box-shadow: 0 -8px 40px rgba(44,40,51,0.08) !important;
  padding: 16px 24px !important;
  font-family: var(--ll-font) !important;
  font-size: 0.88em !important;
}
.ll-cookie-banner a {
  color: var(--ll-accent-dark) !important;
}
.ll-cookie-banner button,
.ll-cookie-banner .ll-btn {
  border-radius: 8px !important;
  font-size: 0.82em !important;
  padding: 8px 20px !important;
  letter-spacing: 0.04em;
}

/* --- R30f. Gold section dividers --- */
.ll-section + .ll-section::before {
  content: '';
  display: block;
  max-width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--ll-accent), var(--ll-accent-light));
  margin: 0 auto 48px;
  border-radius: 1px;
}

/* --- R30g. Hero badge refinement on non-video pages --- */
.ll-hero:not(.ll-hero-video-wrap .ll-hero) .ll-hero-badge {
  background: linear-gradient(135deg, var(--ll-accent-subtle), rgba(191,152,85,0.08));
  border: 1px solid rgba(191,152,85,0.2);
  color: var(--ll-accent-dark) !important;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1em;
}

/* --- R30h. About page — hero badge from KVK to premium label --- */

/* --- R30i. Shop page — force consistent font size --- */
body.woocommerce-shop,
body.woocommerce-shop .ast-container,
body.woocommerce-shop #primary,
body.woocommerce-shop .site-content {
  font-size: 16px !important;
}
body.woocommerce-shop .ast-primary-header .ast-builder-menu a,
body.woocommerce-shop header nav a {
  font-size: 14px !important;
}
.woocommerce .ast-woocommerce-container,
.woocommerce-page .ast-woocommerce-container {
  padding-top: 0 !important;
}

/* --- R30j. WooCommerce cart/checkout premium --- */
.woocommerce-cart .woocommerce table.shop_table,
.woocommerce-checkout .woocommerce table.shop_table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ll-border);
}
.woocommerce-cart .woocommerce table.shop_table th,
.woocommerce-checkout .woocommerce table.shop_table th {
  background: var(--ll-primary-subtle);
  font-family: var(--ll-font);
  font-weight: 500;
  font-size: 0.88em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ll-primary);
}
.woocommerce-cart .woocommerce .button.checkout,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  background: linear-gradient(135deg, #c9a05c, #bf9855) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 40px !important;
  font-family: var(--ll-font) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1em !important;
  box-shadow: 0 4px 20px rgba(191,152,85,0.25);
  transition: all 0.3s ease !important;
}
.woocommerce-cart .woocommerce .button.checkout:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  box-shadow: 0 8px 30px rgba(191,152,85,0.35) !important;
  transform: translateY(-2px);
}

/* --- R30k. Hide WordPress admin bar artifacts --- */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* --- R30l. Global smooth scroll --- */
html { scroll-behavior: smooth; }

/* --- R30m. Selection color luxury --- */
::selection {
  background: rgba(191,152,85,0.2);
  color: var(--ll-text);
}

/* --- R30n. Link style — gold on hover, not purple --- */
.entry-content a:not(.ll-btn):not([class*="woocommerce"]) {
  color: var(--ll-accent-dark);
  text-decoration: underline;
  text-decoration-color: rgba(191,152,85,0.3);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.entry-content a:not(.ll-btn):not([class*="woocommerce"]):hover {
  color: var(--ll-accent);
  text-decoration-color: var(--ll-accent);
}

/* --- R30o. Hide generic Astra elements --- */
/* Remove "Powered by Astra" or similar footprints */
.ast-footer-copyright a[href*="wpastra"],
.ast-footer-copyright a[href*="developer"],
a[href*="developer.wordpress"],
.ast-credits-text a {
  display: none !important;
}
/* Hide Astra "scroll to top" if visible */
#ast-scroll-top {
  background: linear-gradient(135deg, var(--ll-accent), var(--ll-accent-dark)) !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(191,152,85,0.3) !important;
}

/* --- R31. Mijn Account / WooCommerce Account — full premium overhaul --- */
.woocommerce-account .woocommerce,
.woocommerce-account .ast-container,
.woocommerce-account #primary,
.woocommerce-account .entry-content {
  max-width: 960px !important;
  margin: 0 auto;
  padding: 40px 24px;
  width: 100% !important;
}
/* Page title "Welkom bij Lavendel Lab" — already styled by typography rules */

/* Login + Register side by side — override Astra float layout */
body.woocommerce-account .woocommerce .u-columns.col2-set,
body.woocommerce-account .woocommerce .col2-set,
body .woocommerce-account .u-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: start;
  float: none !important;
  width: 100% !important;
  clear: both !important;
}
body.woocommerce-account .woocommerce .col2-set .col-1,
body.woocommerce-account .woocommerce .col2-set .col-2,
body .woocommerce-account .u-column1,
body .woocommerce-account .u-column2 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  body.woocommerce-account .woocommerce .u-columns.col2-set,
  body.woocommerce-account .woocommerce .col2-set,
  body .woocommerce-account .u-columns {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
/* Login/Register column headers */
.woocommerce-account .u-columns h2,
.woocommerce-account .u-column--1 h2,
.woocommerce-account .u-column--2 h2 {
  font-family: var(--ll-font-display) !important;
  font-weight: 300 !important;
  font-size: 1.8em !important;
  color: var(--ll-text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ll-accent);
  display: inline-block;
}
/* Form cards */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account form.woocommerce-form {
  background: var(--ll-bg-card) !important;
  border: 1px solid var(--ll-border) !important;
  border-radius: 20px !important;
  padding: 40px 36px !important;
  box-shadow: 0 4px 24px rgba(44,40,51,0.04) !important;
}
/* Form labels */
.woocommerce-account .woocommerce-form label {
  font-family: var(--ll-font) !important;
  font-weight: 500 !important;
  font-size: 0.88em !important;
  color: var(--ll-text-secondary) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px !important;
  display: block;
}
/* Inputs */
.woocommerce-account .woocommerce-form input[type="text"],
.woocommerce-account .woocommerce-form input[type="email"],
.woocommerce-account .woocommerce-form input[type="password"] {
  width: 100% !important;
  padding: 14px 18px !important;
  border: 1.5px solid var(--ll-border) !important;
  border-radius: 12px !important;
  font-family: var(--ll-font) !important;
  font-size: 1em !important;
  color: var(--ll-text) !important;
  background: #fff !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  box-sizing: border-box !important;
  margin-bottom: 4px !important;
}
.woocommerce-account .woocommerce-form input:focus {
  border-color: var(--ll-accent) !important;
  box-shadow: 0 0 0 4px rgba(191,152,85,0.1) !important;
  outline: none !important;
}
/* Checkbox "Onthouden" — style as toggle */
.woocommerce-account .woocommerce-form-login__rememberme {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  font-size: 0.88em;
  color: var(--ll-text-secondary);
  margin: 12px 0 20px !important;
}
.woocommerce-account .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--ll-accent);
  border-radius: 4px;
}
/* Submit buttons */
.woocommerce-account .woocommerce-form .woocommerce-button,
.woocommerce-account .woocommerce-form button[type="submit"],
.woocommerce-account .woocommerce-form input[type="submit"] {
  width: 100% !important;
  background: linear-gradient(135deg, #c9a05c, #bf9855) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 32px !important;
  font-family: var(--ll-font) !important;
  font-weight: 600 !important;
  font-size: 1em !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(191,152,85,0.25);
  margin-top: 8px;
}
.woocommerce-account .woocommerce-form .woocommerce-button:hover,
.woocommerce-account .woocommerce-form button[type="submit"]:hover {
  box-shadow: 0 8px 30px rgba(191,152,85,0.35) !important;
  transform: translateY(-2px);
}
/* "Wachtwoord vergeten?" link */
.woocommerce-account .woocommerce-LostPassword a,
.woocommerce-account .lost_password a {
  color: var(--ll-accent-dark) !important;
  font-size: 0.88em;
  text-decoration: none;
}
.woocommerce-account .woocommerce-LostPassword a:hover,
.woocommerce-account .lost_password a:hover {
  color: var(--ll-accent) !important;
  text-decoration: underline;
}
/* Privacy text in register form */
.woocommerce-account .woocommerce-privacy-policy-text {
  font-size: 0.82em !important;
  color: var(--ll-text-tertiary) !important;
  line-height: 1.6;
  margin-bottom: 16px;
}
.woocommerce-account .woocommerce-privacy-policy-text a {
  color: var(--ll-accent-dark) !important;
}

/* --- R32. Legal pages (Privacy, Retour, AV) — premium text styling --- */
/* These pages have plain WP content — add luxury text treatment */
.page-id-2107 .entry-content,
.page-id-2108 .entry-content,
.page-id-2109 .entry-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}
.page-id-2107 .entry-content h1,
.page-id-2108 .entry-content h1,
.page-id-2109 .entry-content h1 {
  text-align: center;
  margin-bottom: 0.3em;
}
.page-id-2107 .entry-content h2,
.page-id-2108 .entry-content h2,
.page-id-2109 .entry-content h2 {
  color: var(--ll-primary);
  font-size: 1.3em !important;
  margin-top: 2em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--ll-accent);
  display: inline-block;
}
.page-id-2107 .entry-content h3,
.page-id-2108 .entry-content h3,
.page-id-2109 .entry-content h3 {
  color: var(--ll-text);
  font-size: 1.1em !important;
  margin-top: 1.5em;
}
/* Tables in legal pages */
.page-id-2107 .entry-content table,
.page-id-2108 .entry-content table,
.page-id-2109 .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  background: var(--ll-bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ll-border);
}
.page-id-2107 .entry-content th,
.page-id-2108 .entry-content th,
.page-id-2109 .entry-content th {
  background: var(--ll-primary-subtle);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--ll-font);
  font-weight: 500;
  font-size: 0.88em;
  color: var(--ll-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-id-2107 .entry-content td,
.page-id-2108 .entry-content td,
.page-id-2109 .entry-content td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--ll-border);
  font-size: 0.95em;
}
/* Lists in legal pages */
.page-id-2107 .entry-content ul,
.page-id-2107 .entry-content ol,
.page-id-2108 .entry-content ul,
.page-id-2108 .entry-content ol,
.page-id-2109 .entry-content ul,
.page-id-2109 .entry-content ol {
  padding-left: 1.5em;
  line-height: 1.9;
}
/* "Laatst bijgewerkt" date */
.page-id-2107 .entry-content > p:first-of-type,
.page-id-2108 .entry-content > p:first-of-type,
.page-id-2109 .entry-content > p:first-of-type {
  text-align: center;
  color: var(--ll-text-tertiary);
  font-size: 0.85em;
  font-style: italic;
}

/* --- R34. Contact form — fix excessive spacing (wpautop injects <p>/<br>) --- */
.ll-contact-form {
  gap: 0.6em !important;
}
.ll-contact-form label {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.ll-contact-form p {
  margin: 0 !important;
  padding: 0 !important;
}
.ll-contact-form br {
  display: none !important;
}
.ll-contact-form input,
.ll-contact-form select,
.ll-contact-form textarea {
  margin-top: 4px !important;
  margin-bottom: 0 !important;
}

/* --- R33. WooCommerce notices/messages --- */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--ll-accent) !important;
  background: var(--ll-accent-subtle) !important;
  color: var(--ll-text) !important;
  border-radius: 12px;
  font-family: var(--ll-font);
}
.woocommerce-error {
  border-top-color: var(--ll-error) !important;
  background: var(--ll-error-bg) !important;
  border-radius: 12px;
  font-family: var(--ll-font);
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--ll-accent-dark) !important;
}

/* --- R30p. Subtle page load animation --- */
body {
  animation: ll-page-in 0.5s ease-out;
}
@keyframes ll-page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   R40. DESIGNER POLISH — Luxury details pass
   ═══════════════════════════════════════════════════════════════ */

/* --- R40a. Hero full-bleed — edge-to-edge, no rounded corners --- */
.ll-hero-video-wrap {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
  position: relative;
}
.ll-hero-video-wrap video {
  border-radius: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
}
.ll-hero-video-wrap {
  position: relative !important;
  min-height: 420px;
  background: var(--ll-bg, #faf7f2) !important;
}
/* Kill wpautop whitespace without breaking hero text */
.ll-hero-video-wrap > p {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Overlay — purple tint + fade to cream at bottom */
.ll-hero-video-wrap::after {
  background: linear-gradient(180deg,
    rgba(94,77,127,0.45) 0%,
    rgba(44,40,51,0.30) 30%,
    rgba(44,40,51,0.25) 50%,
    rgba(94,77,127,0.30) 70%,
    rgba(250,247,242,0.6) 90%,
    rgba(250,247,242,1) 100%
  ) !important;
}
/* Remove dark strip — wpautop injects </p> after </video> creating empty p with margin */
.ll-hero-video-wrap > p,
.ll-hero-video-wrap > br,
.woocommerce-products-header > p,
.woocommerce-products-header > br {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  height: 0 !important;
}
.woocommerce-products-header {
  background: transparent !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}
.ll-hero-video-wrap {
  background: var(--ll-bg) !important;
  margin-bottom: 0 !important;
}
/* Hero text — larger, more dramatic */
.ll-hero-video-wrap .ll-hero h1 {
  font-size: clamp(2.6em, 6vw, 4.2em) !important;
  font-weight: 300 !important;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.ll-hero-video-wrap .ll-hero .ll-subtitle {
  font-size: clamp(1.05em, 2vw, 1.25em) !important;
  font-weight: 300;
  max-width: 600px;
  opacity: 0.9;
  letter-spacing: 0.01em;
}
/* Hero badge — more refined */
.ll-hero-video-wrap .ll-hero .ll-hero-badge {
  font-size: 0.68em;
  letter-spacing: 0.15em;
  padding: 5px 18px;
  border: 1px solid rgba(191,152,85,0.4);
  background: rgba(191,152,85,0.12);
  backdrop-filter: blur(12px);
}
/* More padding in hero */
.ll-hero-video-wrap .ll-hero {
  padding: 100px 24px 80px;
}
@media (max-width: 768px) {
  .ll-hero-video-wrap video {
    min-height: 420px;
  }
  .ll-hero-video-wrap .ll-hero {
    padding: 60px 16px 48px;
  }
}

/* --- R40b. Site switcher — ultra-subtle --- */
.ll-site-switcher {
  font-size: 0.65em !important;
  padding: 3px 0 !important;
  background: rgba(44,40,51,0.95) !important;
  letter-spacing: 0.06em;
}
.ll-site-switcher-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ll-switcher-dot {
  width: 5px !important;
  height: 5px !important;
}

/* --- R40c. Trust bar — more luxurious --- */
.ll-trust-bar {
  padding: 32px 40px !important;
  border-radius: 20px !important;
  margin-top: -48px !important;
  box-shadow: 0 4px 30px rgba(44,40,51,0.06) !important;
  border: 1px solid rgba(229,221,211,0.5) !important;
}
.ll-trust-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 16px !important;
}
.ll-trust-item {
  gap: 14px;
}
.ll-trust-item strong {
  font-size: 0.92em !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.ll-trust-item span {
  font-size: 0.78em !important;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .ll-trust-bar {
    margin-top: -32px !important;
    padding: 20px 20px !important;
    border-radius: 14px !important;
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}

/* --- R40d. Shop page — Astra layout overrides + premium cards --- */
/* Astra wraps products in its own structure — target those classes */
/* Fix lazy-loaded placeholder — gradient on thumbnail wrapper, hide lazy SVG */
.astra-shop-thumbnail-wrap {
  background: linear-gradient(160deg,
    #ede8f4 0%, #f0ebf5 25%, #f5f0e8 50%, #f8f3eb 75%, #faf7f2 100%
  );
  min-height: 280px;
}
.woocommerce ul.products li.product .woocommerce-placeholder,
.woocommerce ul.products li.product img.wp-post-image[data-lazyloaded] {
  opacity: 0.06 !important;
  mix-blend-mode: multiply;
}
/* Astra on-card cart button — gold circle */
.woocommerce ul.products .ast-on-card-button {
  background: linear-gradient(135deg, #c9a05c, #bf9855) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  bottom: 12px !important;
  right: 12px !important;
  box-shadow: 0 4px 16px rgba(191,152,85,0.3) !important;
  transition: all 0.3s ease !important;
  opacity: 0;
}
.woocommerce ul.products li.product:hover .ast-on-card-button {
  opacity: 1;
  transform: translateY(0);
}
.woocommerce ul.products .ast-on-card-button svg {
  fill: #fff !important;
  width: 18px !important;
  height: 18px !important;
}
.woocommerce ul.products .ast-on-card-button .ast-card-action-tooltip {
  display: none !important;
}
/* Astra product category label */
.ast-woo-product-category {
  font-size: 0.7em !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--ll-accent-dark) !important;
  font-family: var(--ll-font) !important;
  font-weight: 500 !important;
  display: block;
  padding: 12px 20px 0 !important;
}
/* Astra shop summary wrap */
.astra-shop-summary-wrap {
  padding: 0 !important;
}
.astra-shop-summary-wrap .woocommerce-loop-product__title {
  padding: 4px 20px 4px !important;
}
.astra-shop-summary-wrap .price {
  padding: 0 20px 16px !important;
}
/* Price suffix "incl. BTW" — smaller */
.woocommerce-price-suffix {
  font-size: 0.7em !important;
  color: var(--ll-text-tertiary) !important;
  font-weight: 400 !important;
}
/* Astra shop thumbnail wrap */
.astra-shop-thumbnail-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.astra-shop-thumbnail-wrap a img {
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1) !important;
}
.woocommerce ul.products li.product:hover .astra-shop-thumbnail-wrap a img {
  transform: scale(1.05);
}
/* Shop hero banner — full-width: override ALL parent containers */
.woocommerce-shop .site-content > .ast-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.woocommerce-shop #primary {
  max-width: 100% !important;
  width: 100% !important;
  flex: 1 !important;
}
.woocommerce-shop .ast-woocommerce-container {
  max-width: 100% !important;
  padding: 0 !important;
}
.woocommerce-products-header {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
.woocommerce-products-header .ll-hero-video-wrap {
  margin: 0 !important;
  border-radius: 0 !important;
}
.woocommerce-products-header .ll-hero-video-wrap video {
  width: 100% !important;
  min-height: 360px !important;
}
/* Product grid back to constrained width */
.woocommerce-shop .ast-woocommerce-container > .woocommerce-notices-wrapper,
.woocommerce-shop .ast-woocommerce-container > .woocommerce-result-count,
.woocommerce-shop .ast-woocommerce-container > .woocommerce-ordering,
.woocommerce-shop .ast-woocommerce-container > ul.products {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* Hide Astra breadcrumb */
.ast-woocommerce-container > .woocommerce-breadcrumb {
  display: none !important;
}
.ast-woocommerce-container .ll-hero-video-wrap,
.woocommerce .ll-hero,
.woocommerce-page .entry-content > .ll-hero:first-child {
  margin-bottom: 32px;
}

/* Below: original R40d kept for non-Astra fallback */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
}
.woocommerce ul.products li.product {
  margin: 0 !important;
  width: 100% !important;
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 4/5 !important;
  min-height: 280px;
}
/* Better placeholder with gradient + subtle lavender pattern */
.woocommerce ul.products li.product img[src*="placeholder"],
.woocommerce ul.products li.product img[src*="woocommerce-placeholder"] {
  background: linear-gradient(160deg,
    #ede8f4 0%,
    #f0ebf5 25%,
    #f5f0e8 50%,
    #f8f3eb 75%,
    #faf7f2 100%
  ) !important;
  filter: none !important;
  opacity: 1 !important;
}
/* Product title — serif */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: var(--ll-font-display) !important;
  font-weight: 400 !important;
  font-size: 1.15em !important;
  padding: 16px 20px 4px !important;
}
/* Price — more prominent */
.woocommerce ul.products li.product .price {
  font-size: 1.15em !important;
  font-weight: 400;
  padding: 4px 20px 12px !important;
}
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
}
@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* --- R40e. Header — logo SVG: square logo needs proper sizing --- */
.custom-logo-link,
.ast-site-identity .custom-logo-link {
  display: flex !important;
  align-items: center;
}
.custom-logo-link img,
.ast-site-identity .custom-logo,
.astra-logo-svg {
  max-height: 60px !important;
  max-width: 60px !important;
  width: 60px !important;
  height: auto !important;
  filter: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media (max-width: 921px) {
  .custom-logo-link img,
  .ast-site-identity .custom-logo,
  .astra-logo-svg {
    max-height: 48px !important;
    max-width: 48px !important;
    width: 48px !important;
  }
}
/* If logo fails, show site-title as premium text */
.ast-site-identity .site-title {
  font-family: var(--ll-font-display) !important;
  font-size: 1.4em !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
}
.ast-site-identity .site-title a {
  color: var(--ll-text) !important;
  text-decoration: none !important;
}

/* --- R40f. Gold section dividers (refined) --- */
.ll-section-title .ll-divider,
.ll-section-title hr.ll-divider {
  width: 48px !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--ll-accent-light), var(--ll-accent)) !important;
  border: none !important;
  margin: 0.5em auto !important;
  border-radius: 1px;
  opacity: 0.7;
}

/* --- R40g. Sections — more breathing room --- */
.ll-section {
  padding: 56px 24px !important;
}
.ll-section-title {
  margin-bottom: 40px !important;
}
.ll-section-title h2 {
  margin-bottom: 0.2em !important;
}

/* --- R40h. Story section — cinematic --- */
.ll-story-video-cell video {
  border-radius: 20px !important;
  box-shadow: 0 12px 48px rgba(44,40,51,0.15) !important;
}

/* --- R40i. Category cards — taller, more elegant --- */
.ll-category-card {
  padding: 40px 28px 36px !important;
}
.ll-cat-icon {
  width: 68px !important;
  height: 68px !important;
  border-radius: 18px !important;
  margin-bottom: 24px !important;
}
.ll-category-card h3 {
  font-family: var(--ll-font-display) !important;
  font-weight: 400 !important;
  font-size: 1.25em !important;
  margin-bottom: 0.6em;
}
.ll-category-card p {
  font-size: 0.92em;
  line-height: 1.75;
}

/* --- R40j. Features row — more polish --- */
.ll-feat-icon {
  width: 76px !important;
  height: 76px !important;
  border-radius: 22px !important;
}
.ll-feature-item h3 {
  font-size: 1.25em !important;
}

/* --- R40k. CTA banner — more dramatic --- */
.ll-cta-banner {
  padding: 80px 56px !important;
  border-radius: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100%;
}
.ll-cta-banner h2 {
  font-size: clamp(1.6em, 3.5vw, 2.4em) !important;
  font-weight: 300 !important;
}

/* --- R40l. Stats bar — refined spacing --- */
.ll-stats-bar {
  padding: 56px 24px !important;
  border-top: 1px solid var(--ll-border);
  border-bottom: 1px solid var(--ll-border);
}
.ll-stat-number {
  font-size: 3em !important;
  font-weight: 300 !important;
  background: linear-gradient(135deg, var(--ll-primary), var(--ll-primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- R40m. Instagram section — more premium --- */
.ll-instagram-clean {
  background: var(--ll-bg-card);
  border: 1px solid var(--ll-border);
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.ll-ig-clean-inner {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ll-ig-clean-inner h3 {
  font-family: var(--ll-font-display);
  font-weight: 400;
  font-size: 1.1em;
  margin: 0;
}
.ll-ig-clean-inner p {
  font-size: 0.88em;
  color: var(--ll-text-secondary);
  margin: 4px 0 0;
}
@media (max-width: 768px) {
  .ll-ig-clean-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 20px;
  }
}

/* --- R40n. About hero — no orbs, clean minimal --- */
.ll-hero:not(.ll-hero-video-wrap .ll-hero)::before,
.ll-hero:not(.ll-hero-video-wrap .ll-hero)::after {
  display: none !important;
}

/* --- R40o. Smooth global transitions --- */
* {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}




