
/* Badge Style Configuration */
.badge-style-rounded .badge {
  border-radius: 6px !important;
}
.badge-style-square .badge {
  border-radius: 0px !important;
}
.badge-style-ghost_border .badge {
  background-color: transparent !important;
  border-color: currentColor !important;
  border-radius: 4px !important;
}
.badge-style-underlined .badge {
  background-color: transparent !important;
  border-radius: 0px !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: 2px solid currentColor !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-bottom: 1.5rem !important;
}
.badge-style-default .badge {
  border-radius: 9999px !important;
}

/* Button Border Radius Configuration */
.button-border-radius-none {
  --radius-md: 0px !important;
  --radius-sm: 0px !important;
  --radius-lg: 0px !important;
  --radius-xl: 0px !important;
  --radius-card: 0px !important;
}
.button-border-radius-sm {
  --radius-md: 4px !important;
  --radius-sm: 2px !important;
  --radius-lg: 8px !important;
  --radius-xl: 12px !important;
  --radius-card: 12px !important;
}
.button-border-radius-md {
  --radius-md: 8px !important;
  --radius-sm: 4px !important;
  --radius-lg: 16px !important;
  --radius-xl: 20px !important;
  --radius-card: 20px !important;
}
.button-border-radius-lg {
  --radius-md: 16px !important;
  --radius-sm: 8px !important;
  --radius-lg: 24px !important;
  --radius-xl: 32px !important;
  --radius-card: 32px !important;
}
.button-border-radius-full {
  --radius-md: 9999px !important;
  --radius-sm: 9999px !important;
  --radius-lg: 9999px !important;
  --radius-xl: 9999px !important;
  --radius-card: 24px !important;
}

/* Shadow Style Configuration */
.shadow-style-none {
  --shadow-card: none !important;
  --shadow-sm: none !important;
  --shadow-md: none !important;
  --shadow-lg: none !important;
  --shadow-xl: none !important;
}
.shadow-style-soft {
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}
.shadow-style-soft-blur {
  --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.1) !important;
}
.shadow-style-flat-black {
  --shadow-card: 6px 6px 0px var(--color-text, #000) !important;
  --shadow-sm: 2px 2px 0px var(--color-text, #000) !important;
  --shadow-md: 4px 4px 0px var(--color-text, #000) !important;
  --shadow-lg: 6px 6px 0px var(--color-text, #000) !important;
  --shadow-xl: 8px 8px 0px var(--color-text, #000) !important;
}
.shadow-style-neon-glow {
  --shadow-card: 0 0 15px color-mix(in srgb, var(--color-primary) 40%, transparent), 0 0 5px color-mix(in srgb, var(--color-primary) 20%, transparent) !important;
  --shadow-sm: 0 0 5px color-mix(in srgb, var(--color-primary) 30%, transparent) !important;
  --shadow-md: 0 0 10px color-mix(in srgb, var(--color-primary) 40%, transparent) !important;
  --shadow-lg: 0 0 20px color-mix(in srgb, var(--color-primary) 50%, transparent) !important;
  --shadow-xl: 0 0 30px color-mix(in srgb, var(--color-primary) 60%, transparent) !important;
}
.shadow-style-volumetric-3d {
  --shadow-card: 0 15px 30px rgba(0,0,0,0.06), inset 0 2px 3px rgba(255,255,255,0.7) !important;
  --shadow-sm: 0 4px 8px rgba(0,0,0,0.04), inset 0 1px 1px rgba(255,255,255,0.6) !important;
  --shadow-md: 0 8px 16px rgba(0,0,0,0.05), inset 0 1px 2px rgba(255,255,255,0.6) !important;
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.08), inset 0 2px 4px rgba(255,255,255,0.7) !important;
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.1), inset 0 3px 6px rgba(255,255,255,0.7) !important;
}
.shadow-style-luxury-dim {
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 255, 255, 0.15) !important;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  --shadow-xl: 0 25px 55px rgba(0, 0, 0, 0.4) !important;
}

/* Spacing Scale Configuration */
.spacing-scale-compact {
  --section-padding-default: 3rem 0 !important;
  --section-padding-sm: 1.5rem 0 !important;
  --section-padding-lg: 4rem 0 !important;
}
.spacing-scale-normal {
  --section-padding-default: 5rem 0 !important;
  --section-padding-sm: 3rem 0 !important;
  --section-padding-lg: 8rem 0 !important;
}
.spacing-scale-spacious {
  --section-padding-default: 7rem 0 !important;
  --section-padding-sm: 4rem 0 !important;
  --section-padding-lg: 11rem 0 !important;
}

/* Base button radii explicitly set */
.btn, .btn-primary, .btn-secondary, .form-control, .input-group, input, select, textarea {
  border-radius: var(--radius-md) !important;
}

.card-glass {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow-card) !important;
}

/* Flat black override styles */
.shadow-style-flat-black .card-glass,
.shadow-style-flat-black .btn,
.shadow-style-flat-black .btn-primary,
.shadow-style-flat-black .btn-secondary,
.shadow-style-flat-black .form-control {
  border: 3px solid var(--color-text, #000) !important;
  box-shadow: 6px 6px 0px var(--color-text, #000) !important;
}
.shadow-style-flat-black .btn:hover,
.shadow-style-flat-black .btn-primary:hover,
.shadow-style-flat-black .btn-secondary:hover,
.shadow-style-flat-black .card-glass:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 9px 9px 0px var(--color-text, #000) !important;
}

/* Padding override styles */
.spacing-scale-compact .section { padding: var(--section-padding-default) !important; }
.spacing-scale-normal .section { padding: var(--section-padding-default) !important; }
.spacing-scale-spacious .section { padding: var(--section-padding-default) !important; }

.spacing-scale-compact .section-sm { padding: var(--section-padding-sm) !important; }
.spacing-scale-normal .section-sm { padding: var(--section-padding-sm) !important; }
.spacing-scale-spacious .section-sm { padding: var(--section-padding-sm) !important; }

.spacing-scale-compact .section-lg { padding: var(--section-padding-lg) !important; }
.spacing-scale-normal .section-lg { padding: var(--section-padding-lg) !important; }
.spacing-scale-spacious .section-lg { padding: var(--section-padding-lg) !important; }

/* Dividers Configuration */
.divider-style-torn-paper .section-divider {
  height: 16px !important;
  background: var(--color-bg) !important;
  opacity: 1 !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 10 !important;
  clip-path: polygon(
    0% 0%, 2% 100%, 4% 0%, 6% 100%, 8% 0%, 10% 100%, 12% 0%, 14% 100%, 16% 0%, 18% 100%, 20% 0%,
    22% 100%, 24% 0%, 26% 100%, 28% 0%, 30% 100%, 32% 0%, 34% 100%, 36% 0%, 38% 100%, 40% 0%,
    42% 100%, 44% 0%, 46% 100%, 48% 0%, 50% 100%, 52% 0%, 54% 100%, 56% 0%, 58% 100%, 60% 0%,
    62% 100%, 64% 0%, 66% 100%, 68% 0%, 70% 100%, 72% 0%, 74% 100%, 76% 0%, 78% 100%, 80% 0%,
    82% 100%, 84% 0%, 86% 100%, 88% 0%, 90% 100%, 92% 0%, 94% 100%, 96% 0%, 98% 100%, 100% 0%
  ) !important;
  box-shadow: inset 0 -3px 5px rgba(0,0,0,0.08) !important;
  border: none !important;
}
.divider-style-angular-slant .section-divider {
  height: 6px !important;
  background: var(--color-text, #000) !important;
  opacity: 1 !important;
  border: none !important;
  margin: 0 !important;
}
.divider-style-neon-laser .section-divider {
  height: 3px !important;
  background: var(--color-primary) !important;
  opacity: 0.95 !important;
  border: none !important;
  margin: 0 !important;
  box-shadow: 0 0 12px var(--color-primary), 0 0 4px var(--color-primary) !important;
  animation: laser-pulse 2s infinite alternate !important;
}
.divider-style-blueprint-grid .section-divider {
  height: 24px !important;
  background-color: transparent !important;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px) !important;
  background-size: 12px 12px !important;
  opacity: 0.3 !important;
  border-top: 1px dashed var(--color-primary) !important;
  border-bottom: 1px dashed var(--color-primary) !important;
  margin: 0 !important;
}
.divider-style-glass-ridge .section-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent) !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
  opacity: 0.9 !important;
  margin: 0 !important;
}
.divider-style-luxury-gold-line .section-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, #d4af37, transparent) !important;
  opacity: 0.8 !important;
  border: none !important;
  margin: 0 !important;
}
.divider-style-organic-dashed .section-divider {
  height: 2px !important;
  background: transparent !important;
  border-top: 2px dotted color-mix(in srgb, var(--color-primary) 30%, transparent) !important;
  opacity: 0.7 !important;
  margin: 0 !important;
}
.divider-style-accent-split .section-divider {
  height: 2px !important;
  background: linear-gradient(90deg, transparent 10%, var(--color-primary) 10%, var(--color-primary) 90%, transparent 90%) !important;
  opacity: 0.35 !important;
  border: none !important;
  margin: 0 !important;
}
.divider-style-simple-line .section-divider {
  height: 1px !important;
  background: var(--color-card-border, rgba(0,0,0,0.08)) !important;
  opacity: 0.6 !important;
  border: none !important;
  margin: 0 !important;
}

/* Media Border Style Configuration */
.media-border-style-luxury-gold img,
.media-border-style-luxury-gold iframe,
.media-border-style-luxury-gold video,
.media-border-style-luxury-gold .video-wrapper,
.media-border-style-luxury-gold .mockup-image,
.media-border-style-luxury-gold .testimonial-card img,
.media-border-style-luxury-gold .author-image img {
  border: 1px solid #d4af37 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35) !important;
  border-radius: 4px !important;
}
.media-border-style-playful-bubble img,
.media-border-style-playful-bubble iframe,
.media-border-style-playful-bubble video,
.media-border-style-playful-bubble .video-wrapper,
.media-border-style-playful-bubble .mockup-image,
.media-border-style-playful-bubble .testimonial-card img,
.media-border-style-playful-bubble .author-image img {
  border: 4px solid var(--color-card-bg, #fff) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 0 0 4px color-mix(in srgb, var(--color-primary) 15%, transparent) !important;
  border-radius: 28px !important;
}
.media-border-style-brutalist-block img,
.media-border-style-brutalist-block iframe,
.media-border-style-brutalist-block video,
.media-border-style-brutalist-block .video-wrapper,
.media-border-style-brutalist-block .mockup-image,
.media-border-style-brutalist-block .testimonial-card img,
.media-border-style-brutalist-block .author-image img {
  border: 3px solid var(--color-text, #000) !important;
  box-shadow: 6px 6px 0px var(--color-text, #000) !important;
  border-radius: 0px !important;
}
.media-border-style-glass-frame img,
.media-border-style-glass-frame iframe,
.media-border-style-glass-frame video,
.media-border-style-glass-frame .video-wrapper,
.media-border-style-glass-frame .mockup-image,
.media-border-style-glass-frame .testimonial-card img,
.media-border-style-glass-frame .author-image img {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 8px !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}
.media-border-style-simple-clean img,
.media-border-style-simple-clean iframe,
.media-border-style-simple-clean video,
.media-border-style-simple-clean .video-wrapper,
.media-border-style-simple-clean .mockup-image,
.media-border-style-simple-clean .testimonial-card img,
.media-border-style-simple-clean .author-image img {
  border: 1px solid var(--color-card-border, rgba(0,0,0,0.08)) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Typography Scale Override Configuration */
.typography-scale-editorial-serif h1,
.typography-scale-editorial-serif h2,
.typography-scale-editorial-serif h3,
.typography-scale-editorial-serif .heading-1,
.typography-scale-editorial-serif .heading-2,
.typography-scale-editorial-serif .heading-3 {
  font-family: var(--font-heading) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}
.typography-scale-editorial-serif h1, .typography-scale-editorial-serif .heading-1 { font-size: clamp(2.6rem, 8.5vw, 4.6rem) !important; }
.typography-scale-editorial-serif h2, .typography-scale-editorial-serif .heading-2 { font-size: clamp(2.1rem, 6.5vw, 3.1rem) !important; }
.typography-scale-editorial-serif h3, .typography-scale-editorial-serif .heading-3 { font-size: clamp(1.4rem, 4.2vw, 1.9rem) !important; }

.typography-scale-tech-sans h1,
.typography-scale-tech-sans h2,
.typography-scale-tech-sans h3,
.typography-scale-tech-sans .heading-1,
.typography-scale-tech-sans .heading-2,
.typography-scale-tech-sans .heading-3 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
}
.typography-scale-tech-sans h1, .typography-scale-tech-sans .heading-1 { font-size: clamp(2.2rem, 7vw, 3.6rem) !important; }
.typography-scale-tech-sans h2, .typography-scale-tech-sans .heading-2 { font-size: clamp(1.8rem, 5vw, 2.4rem) !important; }
.typography-scale-tech-sans h3, .typography-scale-tech-sans .heading-3 { font-size: clamp(1.2rem, 3.5vw, 1.55rem) !important; }

.typography-scale-bold-impact h1,
.typography-scale-bold-impact h2,
.typography-scale-bold-impact h3,
.typography-scale-bold-impact .heading-1,
.typography-scale-bold-impact .heading-2,
.typography-scale-bold-impact .heading-3 {
  font-family: var(--font-heading) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.08 !important;
  text-transform: uppercase !important;
}
.typography-scale-bold-impact h1, .typography-scale-bold-impact .heading-1 { font-size: clamp(2.8rem, 9.5vw, 5.2rem) !important; }
.typography-scale-bold-impact h2, .typography-scale-bold-impact .heading-2 { font-size: clamp(2.3rem, 7.5vw, 3.6rem) !important; }
.typography-scale-bold-impact h3, .typography-scale-bold-impact .heading-3 { font-size: clamp(1.55rem, 4.8vw, 2.25rem) !important; }

.typography-scale-clean-corporate h1,
.typography-scale-clean-corporate h2,
.typography-scale-clean-corporate h3,
.typography-scale-clean-corporate .heading-1,
.typography-scale-clean-corporate .heading-2,
.typography-scale-clean-corporate .heading-3 {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.22 !important;
}
.typography-scale-clean-corporate h1, .typography-scale-clean-corporate .heading-1 { font-size: clamp(2.4rem, 7.5vw, 4.1rem) !important; }
.typography-scale-clean-corporate h2, .typography-scale-clean-corporate .heading-2 { font-size: clamp(1.95rem, 5.8vw, 2.8rem) !important; }
.typography-scale-clean-corporate h3, .typography-scale-clean-corporate .heading-3 { font-size: clamp(1.3rem, 3.8vw, 1.8rem) !important; }

/* Aesthetic Micro-interactions Configuration */
.aesthetic-tech .btn-cta, .aesthetic-tech .cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.aesthetic-tech .btn-cta::after, .aesthetic-tech .cta-button::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
}
.aesthetic-tech .btn-cta:hover::after, .aesthetic-tech .cta-button:hover::after {
  animation: tech-scan 1.2s infinite;
}
@keyframes tech-scan {
  0% { left: -100%; }
  100% { left: 150%; }
}

.aesthetic-cyber_retro .btn-cta, .aesthetic-cyber_retro .cta-button {
  position: relative;
  box-shadow: 0 0 10px var(--cta-bg) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.aesthetic-cyber_retro .btn-cta:hover, .aesthetic-cyber_retro .cta-button:hover {
  transform: scale(1.03) translate(-2px, -2px);
  box-shadow: 4px 4px 0px #00FFFF, 0px 0px 20px var(--cta-bg) !important;
}

.aesthetic-neobrutalist .btn-cta,
.aesthetic-neobrutalist .cta-button,
.aesthetic-neobrutalist .card,
.aesthetic-neobrutalist .pricing-card,
.aesthetic-neobrutalist .testimonial-card,
.aesthetic-neobrutalist .evidence-card {
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.15s !important;
}
.aesthetic-neobrutalist .btn-cta:hover, .aesthetic-neobrutalist .cta-button:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 8px 8px 0px #000000 !important;
}
.aesthetic-neobrutalist .card:hover,
.aesthetic-neobrutalist .pricing-card:hover,
.aesthetic-neobrutalist .testimonial-card:hover,
.aesthetic-neobrutalist .evidence-card:hover {
  transform: translate(-4px, -4px) !important;
  box-shadow: 10px 10px 0px #000000 !important;
}

.aesthetic-glassmorphism .btn-cta, .aesthetic-glassmorphism .cta-button {
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.aesthetic-glassmorphism .btn-cta:hover, .aesthetic-glassmorphism .cta-button:hover {
  background-position: right center;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-2px);
}

.aesthetic-dark_luxury .btn-cta, .aesthetic-dark_luxury .cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.aesthetic-dark_luxury .btn-cta::before, .aesthetic-dark_luxury .cta-button::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transform: skewX(-20deg);
}
.aesthetic-dark_luxury .btn-cta:hover::before, .aesthetic-dark_luxury .cta-button:hover::before {
  animation: luxury-shimmer 1.8s infinite;
}
@keyframes luxury-shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}
.aesthetic-dark_luxury .btn-cta:hover, .aesthetic-dark_luxury .cta-button:hover {
  letter-spacing: 0.08em !important;
  transform: translateY(-1px);
}

.aesthetic-nature_organic .btn-cta, .aesthetic-nature_organic .cta-button {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.aesthetic-nature_organic .btn-cta:hover, .aesthetic-nature_organic .cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.aesthetic-minimalist .btn-cta, .aesthetic-minimalist .cta-button,
.aesthetic-retro_vintage .btn-cta, .aesthetic-retro_vintage .cta-button {
  transition: all 0.3s ease !important;
}
.aesthetic-minimalist .btn-cta:hover, .aesthetic-minimalist .cta-button:hover,
.aesthetic-retro_vintage .btn-cta:hover, .aesthetic-retro_vintage .cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Header/Navbar general layout */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-card-border);
  background-color: var(--color-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(var(--color-bg-rgb, 255, 255, 255), 0.85);
  transition: all var(--transition-fast);
}
/* Announcement Banner Styles */
.announcement-banner {
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.announcement-link,
.announcement-link span,
.announcement-link strong {
  color: inherit !important;
  text-decoration: none;
}

.announcement-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.announcement-link:hover {
  text-decoration: none;
  filter: brightness(1.1);
}

/* Colors */
.banner-color-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-text, #ffffff);
}
.banner-color-accent {
  background-color: var(--color-secondary, #8b5cf6);
  color: #ffffff;
}
.banner-color-danger {
  background-color: #ef4444;
  color: #ffffff;
}
.banner-color-warning {
  background-color: #f59e0b;
  color: #1e293b;
}
.banner-color-dark {
  background-color: #0f172a;
  color: #f8fafc;
}
.banner-color-gradient_glow {
  background: linear-gradient(90deg, #f43f5e, #ec4899, #8b5cf6, #3b82f6);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
  color: #ffffff;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Banner specific styles */
.banner-style-minimalist {
  padding: 0.25rem 1rem;
  font-size: 0.7rem;
  background-color: transparent;
  border-bottom: 1px solid var(--color-card-border);
  color: var(--color-text);
  letter-spacing: 0.02em;
}

/* Pulsing Dot inside banner */
.banner-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: bannerPulse 1.8s infinite;
}
@keyframes bannerPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { transform: scale(1.2); opacity: 0.5; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); }
}

/* Countdown */
.banner-countdown {
  font-family: monospace;
  font-weight: 800;
  font-size: 0.85rem;
  background-color: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.25rem;
}

/* Coupon Code */
.coupon-code-badge {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.6);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.25rem;
  letter-spacing: 0.05em;
  font-family: monospace;
}
.banner-color-warning .coupon-code-badge {
  background-color: rgba(0, 0, 0, 0.08);
  border: 1px dashed rgba(0, 0, 0, 0.3);
}

/* Progress bar inside banner */
.banner-progress-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.banner-progress-bar {
  width: 100px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  overflow: hidden;
}
.banner-progress-fill {
  height: 100%;
  background-color: #ffffff;
  border-radius: 99px;
  animation: progressPulse 3s infinite alternate;
}
/* Two tone split */
.banner-style-two_tone_split {
  padding: 0;
  display: flex !important;
  overflow: hidden;
}
.banner-split-badge {
  background-color: #0f172a !important;
  color: #ffffff !important;
  padding: 0.45rem 1rem;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.banner-split-text {
  padding: 0.45rem 1rem;
  flex: 1;
}

/* Blinking warning */
.banner-style-blinking_warning {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.08) 10px,
    rgba(0, 0, 0, 0.08) 20px
  );
}
.banner-blink-text {
  animation: bannerBlink 2s infinite;
}
@keyframes bannerBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}
.banner-warning-icon {
  display: inline-block;
  animation: iconPulse 1.2s infinite alternate;
}
@keyframes iconPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* Scrolling marquee */
.banner-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}
.banner-marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeAnimation 25s linear infinite;
}
@keyframes marqueeAnimation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}
.banner-marquee-content span {
  display: inline-block;
  margin-right: 2rem;
}

/* VIP exclusive club */
.banner-style-vip_exclusive_club {
  background-color: #1e1b4b !important;
  color: #fbbf24 !important;
  border-bottom: 1px solid #fbbf24;
}

/* Instant access truck */
.banner-style-instant_access_truck {
  letter-spacing: 0.03em;
}

/* Neon Cyber Pulse */
.banner-style-neon_cyber_pulse {
  background-color: #03001e !important;
  border-bottom: 2px solid #ec008c;
  box-shadow: 0 0 15px rgba(236, 0, 140, 0.4);
}
.neon-text {
  color: #fff !important;
  text-shadow: 0 0 5px #fff, 0 0 10px #ec008c, 0 0 20px #ec008c;
  font-weight: 800;
  letter-spacing: 0.05em;
  animation: cyberPulse 2s infinite alternate;
}
@keyframes cyberPulse {
  0% { text-shadow: 0 0 5px #fff, 0 0 10px #ec008c, 0 0 20px #ec008c; }
  100% { text-shadow: 0 0 2px #fff, 0 0 5px #ec008c, 0 0 10px #ec008c; }
}

/* Fire Deal Emoji */
.banner-style-fire_deal_emoji {
  background: linear-gradient(90deg, #ff416c, #ff4b2b) !important;
  color: #fff !important;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Stock Ticker */
.banner-style-stock_ticker {
  background-color: #0c0f16 !important;
  border-bottom: 1px solid #10b981;
  color: #10b981 !important;
  font-family: monospace;
  font-size: 0.8rem;
}

/* Secure Lock Badge */
.banner-style-secure_lock_badge {
  background-color: #f0fdf4 !important;
  border-bottom: 1px solid #bbf7d0;
  color: #166534 !important;
}

/* Limited Spots Left */
.banner-style-limited_spots_left {
  background-color: #1e293b !important;
  color: #ffffff !important;
}
.limited-spots-badge {
  background-color: #ef4444;
  color: #ffffff !important;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  margin-right: 0.5rem;
  animation: heartBeat 1.5s infinite;
}
@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

/* Folded Ribbon */
.banner-style-folded_ribbon {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-text, #ffffff) !important;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
}

/* Dark Mode Neon */
.banner-style-dark_mode_neon {
  background-color: #090d16 !important;
  border-bottom: 1px solid #3b82f6;
}
.dark-neon-text {
  color: #60a5fa !important;
  text-shadow: 0 0 8px rgba(96,165,250,0.6);
  font-weight: 700;
}

/* Guarantee Seal Inline */
.banner-style-guarantee_seal_inline {
  background-color: #fffbeb !important;
  border-bottom: 1px solid #fde68a;
  color: #b45309 !important;
}

/* Asymmetric Stripe */
.banner-style-asymmetric_stripe {
  background-color: #111827 !important;
  color: #f3f4f6 !important;
  position: relative;
  overflow: hidden;
}
.banner-style-asymmetric_stripe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #f59e0b, #f59e0b 4px, #111827 4px, #111827 8px);
}
.banner-style-asymmetric_stripe::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #f59e0b, #f59e0b 4px, #111827 4px, #111827 8px);
}

/* Sparkling Stars */
.banner-style-sparkling_stars {
  background-color: #18181b !important;
  color: #fbbf24 !important;
  border-bottom: 1px solid #fbbf24;
}
.sparkle-text {
  animation: starSparkle 1.5s infinite alternate;
}
@keyframes starSparkle {
  0% { opacity: 0.8; text-shadow: 0 0 2px rgba(251,191,36,0.3); }
  100% { opacity: 1; text-shadow: 0 0 10px rgba(251,191,36,0.8); }
}

/* Confetti Celebration */
.banner-style-confetti_celebration {
  background: linear-gradient(90deg, #3b82f6, #ec4899) !important;
  color: #ffffff !important;
  font-weight: 800;
}

/* Clean Editorial */
.banner-style-clean_editorial {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e5e7eb;
  color: #1f2937 !important;
  font-family: serif;
}
.editorial-text {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Flash Sale Blink */
.banner-style-flash_sale_blink {
  animation: flashBlink 1.2s infinite;
}
@keyframes flashBlink {
  0%, 100% { background-color: #ef4444; color: #ffffff; }
  50% { background-color: #f59e0b; color: #1e293b; }
}

/* Split Pill Badge */
.banner-style-split_pill_badge {
  background-color: #0f172a !important;
  color: #f8fafc !important;
}
.pill-badge-left {
  background-color: #3b82f6;
  color: #ffffff !important;
  border-radius: 9999px;
  padding: 0.1rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
}
.pill-badge-right {
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Rainbow Gradient */
.banner-style-rainbow_gradient {
  background: linear-gradient(90deg, #ff9a9e, #fecfef, #a1c4fd, #c2e9fb, #ff9a9e) !important;
  background-size: 400% 400%;
  animation: rainbowAnim 6s linear infinite;
  color: #1e293b !important;
}
@keyframes rainbowAnim {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

html.dark .navbar {
  background-color: rgba(10, 10, 12, 0.88); /* Matches new grafite dark background */
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

/* Dynamic Content styling */
.navbar-dynamic-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Badge and Pulsing Dot */
.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.nav-badge-urgency {
  background-color: rgba(249, 115, 22, 0.08);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.nav-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  animation: navPulse 2.5s infinite;
}
@keyframes navPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { transform: scale(1.1); opacity: 0.6; box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
}

/* Countdown Timer */
.nav-countdown-timer {
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.25rem;
}

/* Authority Ratings */
.nav-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-right: 0.35rem;
}
.nav-auth-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* WhatsApp support button */
.nav-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #25d366;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}
.nav-whatsapp-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.whatsapp-icon {
  fill: #ffffff;
}

/* Scarcity Progress Bar */
.nav-progress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.nav-progress-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
.nav-progress-bar {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-card-border);
  overflow: hidden;
}
.nav-progress-fill {
  height: 100%;
  border-radius: 999px;
  animation: progressPulse 3s infinite alternate;
}
@keyframes progressPulse {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.15); }
}

/* Guarantee Badge */
.nav-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  background-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}

/* Action button overrides */
.nav-action-btn {
  padding: 0.5rem 1.15rem !important;
  font-size: 0.85rem !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
}

/* Social Proof alert bubble */
.nav-social-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  animation: popIn 0.5s ease-out;
}
@keyframes popIn {
  0% { transform: translateY(-10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Floating Pill navbar style specific overrides */
.navbar-style-navbar_floating_pill {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 960px;
  border-radius: 9999px;
  border: 1px solid rgba(var(--color-text-rgb, 255,255,255), 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: rgba(var(--color-bg-rgb, 255, 255, 255), 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 1.5rem;
}
html.dark .navbar-style-navbar_floating_pill {
  background-color: rgba(15, 15, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-floating-pill-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* 1. Authority Expert Avatar */
.nav-expert-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-expert-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.nav-expert-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
.nav-verified-badge {
  color: #3b82f6;
  font-weight: bold;
}
.nav-expert-subtitle {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.nav-support-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  background-color: #25d366;
  color: #ffffff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.2s;
}
.nav-support-pill:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* 2. Badge Multi Proof */
.nav-multi-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.proof-chip {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-card-border);
  border: 1px solid rgba(var(--color-text-rgb, 0,0,0), 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* 3. Neon Cyber Header */
.navbar-style-neon_cyber_header {
  background-color: #050508 !important;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.nav-cyber-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cyber-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: cyberBadgePulse 1.5s infinite;
}
@keyframes cyberBadgePulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-primary) 50%, transparent); }
  50% { opacity: 1; box-shadow: 0 0 8px 3px var(--color-primary); }
}
.cyber-badge-text {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary) !important;
  letter-spacing: 0.1em;
}

/* 4. Centered Editorial Classic */
.navbar-style-centered_editorial_classic {
  border-top: 1px solid var(--color-card-border);
  border-bottom: 1px solid var(--color-card-border);
  background-color: var(--color-bg) !important;
  padding: 1.25rem 0;
}
.navbar-style-centered_editorial_classic .navbar-container {
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

/* 5. Asymmetric Neobrutalist */
.navbar-style-asymmetric_neobrutalist {
  border: 3px solid #000000 !important;
  box-shadow: 4px 4px 0px #000000;
  margin: 0.5rem;
  border-radius: 0px !important;
}
.nav-brutal-badge {
  border: 2px solid #000000;
  background-color: #f59e0b;
  color: #000000 !important;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

/* 6. Checkout Safety Strip */
.navbar-style-checkout_safety_strip {
  border-bottom: 2px solid #10b981;
}

/* 7. Minimal Micro CTA */
.nav-micro-btn {
  padding: 0.35rem 1rem !important;
  font-size: 0.8rem !important;
  border-radius: 99px !important;
}

/* Mobile responsive fixes */
@media (max-width: 767px) {
  .announcement-banner {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
  .announcement-link {
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
  }
  .banner-style-two_tone_split {
    flex-direction: column;
  }
  .banner-split-badge {
    width: 100%;
    text-align: center;
    padding: 0.25rem 1rem;
  }
  .banner-split-text {
    padding: 0.25rem 1rem;
  }
  .navbar-style-navbar_floating_pill {
    position: sticky;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--color-card-border);
    padding: 0.5rem 1rem;
  }
  .navbar-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .brand {
    font-size: 1.2rem;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }
  .navbar-dynamic-content {
    width: 100%;
    justify-content: center;
  }
  .hide-mobile {
    display: none !important;
  }
}

/* --- NEW EXPANDED NAVBAR STYLES --- */
.navbar-style-navbar_glassmorphism_pill {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
  padding: 0.65rem 2rem !important;
  z-index: 999;
}
html.dark .navbar-style-navbar_glassmorphism_pill {
  background: rgba(15, 15, 17, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}
.navbar-style-navbar_retro_terminal {
  background-color: #0d0e15 !important;
  border-bottom: 2px solid #22c55e !important;
  font-family: 'Space Mono', monospace !important;
  color: #22c55e !important;
}
.nav-terminal-status {
  font-size: 0.72rem;
  color: #22c55e;
  border: 1px solid #22c55e;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-weight: 800;
}
.navbar-style-navbar_minimalist_centered {
  border-bottom: 1px solid var(--color-card-border) !important;
  padding: 1.5rem 0 !important;
}
.navbar-style-navbar_minimalist_centered .navbar-container {
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}
.nav-min-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}
.navbar-style-navbar_countdown_scarcity {
  border-bottom: 2px dashed #f59e0b !important;
}
.nav-scarcity-badge-header {
  background: #f59e0b;
  color: #1e293b !important;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.navbar-style-navbar_scientific_audit {
  border-bottom: 2px solid var(--color-primary) !important;
  background-color: color-mix(in srgb, var(--color-primary) 2%, var(--color-bg)) !important;
}
.nav-audit-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  border-left: 1px solid var(--color-card-border);
  padding-left: 0.75rem;
}
.nav-audit-item:first-child {
  border: none;
}
.navbar-style-navbar_asymmetric_bold {
  border: 3px solid #111827 !important;
  box-shadow: 6px 6px 0px #111827 !important;
  background-color: #ffffff !important;
  color: #111827 !important;
  margin: 0.75rem !important;
  border-radius: 0px !important;
}
.navbar-style-navbar_asymmetric_bold .brand {
  color: #111827 !important;
  font-weight: 900;
}
.nav-bold-chip {
  background: #facc15;
  color: #111827 !important;
  border: 2px solid #111827;
  padding: 0.3rem 0.8rem;
  font-weight: 900;
  font-size: 0.75rem;
  box-shadow: 2px 2px 0px #111827;
}
.navbar-style-navbar_two_column_offer .navbar-container {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
}
.nav-row-bottom {
  grid-column: span 2;
  border-top: 1px solid var(--color-card-border);
  padding-top: 0.65rem;
  margin-top: 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* --- NEW EXPANDED ANNOUNCEMENT STYLES --- */
.banner-style-trust_pilot_rating {
  background-color: #00b67a !important;
  color: #ffffff !important;
  font-weight: 800;
}
.trustpilot-stars {
  color: #ffffff;
  letter-spacing: -1px;
}
.banner-style-social_proof_live_viewers {
  background-color: #1e293b !important;
  color: #38bdf8 !important;
  border-bottom: 1px solid #38bdf8;
}
.viewers-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #38bdf8;
  border-radius: 50%;
  display: inline-block;
  animation: viewersPulse 1.5s infinite;
}
@keyframes viewersPulse {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4); }
  100% { transform: scale(1.4); opacity: 0; box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); }
}
.banner-style-announcement_retro_terminal {
  background-color: #090d16 !important;
  border-bottom: 1px solid #22c55e;
  color: #22c55e !important;
  font-family: monospace;
}
.banner-style-editorial_micro_manifesto {
  background-color: #ffffff !important;
  color: var(--color-text) !important;
  border-bottom: 1px solid var(--color-card-border);
  font-family: var(--font-heading), serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.banner-style-announcement_glassmorphism_gradient {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 80%, transparent), color-mix(in srgb, var(--color-secondary, var(--color-primary)) 70%, transparent)) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .navbar-style-navbar_two_column_offer .navbar-container {
    grid-template-columns: 1fr !important;
  }
  .nav-row-bottom {
    grid-column: span 1 !important;
    flex-direction: column;
    gap: 0.35rem;
  }
}
