/* ==========================================================================
   CSS DESIGN SYSTEM FOR PROJECT 2
   ========================================================================== */

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

:root {
  --color-primary: #d4af37; /* Gold */
  --color-primary-light: #ffffff; /* White */
  --color-secondary: #d4af37; /* Gold */
  --color-secondary-dark: #b59410; /* Dark Gold */
  --color-accent: #e63946; /* Coral Red for Sale/Alerts */
  --color-bg-light: #121212; /* Dark background */
  --color-bg-dark: #070707; /* Pitch Black */
  --color-text-dark: #e0e0e0; /* Light text for body */
  --color-text-light: #ffffff; /* Light text */
  --color-text-muted: #8a8a8a; /* Muted text */
  --font-header: 'Outfit', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: #080808;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 0.8) 0%, #050505 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-header .subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary-dark);
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #f9d976 0%, #e5b83b 50%, #d4af37 100%);
  color: #0d0d0d;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite ease-in-out;
  z-index: 2;
}

.btn-secondary:hover {
  animation: none;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #ffe082 0%, #f3c64f 50%, #e5b83b 100%);
  color: #0d0d0d;
}

.btn-gold {
  background-color: var(--color-secondary);
  color: #070707;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  font-weight: 700;
}

.btn-gold:hover {
  background-color: var(--color-secondary-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Animations */
@keyframes premiumPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0.5);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.pulse-animation {
  animation: premiumPulse 2.2s infinite ease-in-out;
}

/* Header & Nav */
.header-top {
  background-color: #000000;
  color: var(--color-text-light);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-info {
  display: flex;
  gap: 20px;
}

.promo-badge {
  border: 1px solid var(--color-secondary);
  background-color: transparent;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  color: #ffffff;
}

.main-header {
  background-color: #070707;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
  transition: var(--transition-smooth);
}

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

.logo {
  font-family: var(--font-header);
  letter-spacing: 0.5px;
  display: inline-block;
  text-decoration: none;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 35px;
  width: auto;
  object-fit: contain;
  -webkit-filter: drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 1px #ffffff);
  filter: drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 1px #ffffff);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #299a48;
  line-height: 1;
  text-shadow: 
    -1px -1px 0 #ffffff,  
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff,
     0 0 2.5px rgba(255, 255, 255, 0.8);
}

.logo-text span {
  color: #299a48 !important;
}

.footer-logo-wrapper h4 span {
  color: #299a48;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #cccccc;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--color-secondary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-secondary);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION (OUT 10 - RADIANT BRIGHT & GOLD 3D LUXURY)
   ========================================================================== */
.hero-out10-bright {
  background: 
    radial-gradient(ellipse at 50% -10%, rgba(255, 255, 255, 1) 0%, rgba(224, 247, 254, 0.9) 35%, rgba(255, 248, 230, 0.85) 70%, #e8f5fb 100%),
    linear-gradient(180deg, #ffffff 0%, #edf8fd 50%, #e0f2fe 100%);
  padding: 60px 0 70px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #f3c64f;
  color: #0c2340;
}

/* Background animated elements for bright version */
.hero-bright-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.sunbeam-ray {
  position: absolute;
  top: -120px;
  width: 320px;
  height: 1100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(212, 175, 55, 0.15) 40%, rgba(0, 180, 216, 0.1) 80%, transparent 100%);
  transform: rotate(-22deg);
  filter: blur(12px);
  animation: sunbeamPulse 5s infinite ease-in-out alternate;
}
.ray-bright-1 { left: 10%; animation-delay: 0s; }
.ray-bright-2 { right: 15%; animation-delay: 2.5s; width: 380px; }

@keyframes sunbeamPulse {
  0% { opacity: 0.5; transform: rotate(-22deg) scaleX(1); }
  100% { opacity: 0.95; transform: rotate(-19deg) scaleX(1.25); }
}

/* Sparkling Stars and Particles */
.sparkle-star {
  position: absolute;
  color: #f3c64f;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
  animation: starSparkle 3s infinite ease-in-out alternate;
}
.star-1 { top: 15%; left: 18%; font-size: 1.5rem; animation-delay: 0.2s; }
.star-2 { top: 25%; right: 20%; font-size: 1.8rem; animation-delay: 1.1s; color: #00b4d8; }
.star-3 { top: 55%; left: 12%; font-size: 1.3rem; animation-delay: 1.8s; }
.star-4 { top: 65%; right: 14%; font-size: 1.6rem; animation-delay: 0.7s; }
.star-5 { top: 38%; left: 82%; font-size: 1.4rem; animation-delay: 2.3s; color: #f3c64f; }

@keyframes starSparkle {
  0% { opacity: 0.2; transform: scale(0.7) rotate(0deg); }
  100% { opacity: 1; transform: scale(1.35) rotate(45deg); }
}

.light-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(212, 175, 55, 0.3) 50%, transparent 80%);
  filter: blur(15px);
  animation: orbFloat 7s infinite ease-in-out alternate;
}
.orb-1 { width: 180px; height: 180px; top: 10%; left: 5%; }
.orb-2 { width: 220px; height: 220px; bottom: 15%; right: 8%; }

@keyframes orbFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.2); }
}

/* Header Badge and Titles on Bright Background */
/* Header Badge and Titles on Bright Background */
.bright-gold-badge {
  background: linear-gradient(135deg, #ffffff 0%, #fff3c4 100%) !important;
  border: 1.5px solid #d4af37 !important;
  color: #8a5d00 !important;
  padding: 6px 18px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 15px auto 16px auto !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), inset 0 1px 0 #ffffff !important;
  text-align: center !important;
}

.hero-content-wrapper {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-cursive-dark {
  font-family: 'Playfair Display', serif, cursive;
  font-style: italic;
  font-size: 2.1rem;
  color: #0b3c5d;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: -6px;
  text-align: center;
}

.title-mega-gold-bright {
  font-size: 3.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  background: linear-gradient(180deg, #d4af37 0%, #b8860b 40%, #7a5800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 18px rgba(243, 198, 79, 0.6));
  margin: 6px 0;
  text-align: center;
}

.title-mega-gold-bright span {
  background: linear-gradient(180deg, #0077b6 0%, #0096c7 50%, #023e8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 180, 216, 0.4));
}

.title-sub-banner-bright {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: 2.5px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 0 10px rgba(0, 180, 216, 0.25);
  text-align: center;
}

.hero-pill-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px auto 10px auto;
  width: 100%;
}

.gold-pill-badge-bright {
  background: linear-gradient(135deg, #fff3c4 0%, #f3c64f 50%, #d4af37 100%) !important;
  border: 2px solid #ffffff !important;
  color: #0a2540 !important;
  padding: 8px 22px !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  box-shadow: 
    0 8px 25px rgba(212, 175, 55, 0.45), 
    0 2px 6px rgba(0, 0, 0, 0.1),
    inset 0 2px 0 #ffffff !important;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease;
  text-align: center;
}

.gold-pill-badge-bright:hover {
  transform: translateY(-3px) scale(1.04);
}

.hero-note-star-dark {
  font-size: 0.95rem;
  color: #005f73;
  font-weight: 600;
  margin-top: 12px;
  font-style: italic;
  text-align: center;
}

.hero-roi-slogan {
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #d4af37 0%, #b8860b 50%, #7a5d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  margin-bottom: 22px;
  text-align: center;
}

/* Crystal 3D Glass Podium on Bright Theme */
.podium-crystal-disc {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotateX(72deg);
  width: 85%;
  max-width: 680px;
  height: 115px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(200, 240, 255, 0.7) 45%, rgba(243, 198, 79, 0.4) 75%, transparent 90%);
  border-radius: 50%;
  box-shadow: 
    0 0 60px rgba(0, 180, 216, 0.5),
    0 0 110px rgba(243, 198, 79, 0.5),
    inset 0 0 35px #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.95);
  animation: crystalDiscPulse 4s infinite ease-in-out alternate;
  z-index: 1;
}

@keyframes crystalDiscPulse {
  0% { box-shadow: 0 0 45px rgba(0, 180, 216, 0.4), inset 0 0 25px #ffffff; }
  100% { box-shadow: 0 0 95px rgba(0, 180, 216, 0.8), 0 0 135px rgba(243, 198, 79, 0.7), inset 0 0 50px #ffffff; }
}

.floating-product-img-bright {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 25px rgba(0, 50, 100, 0.25)) drop-shadow(0 0 30px rgba(243, 198, 79, 0.35));
  animation: productFloatBright 5s infinite ease-in-out;
}

@keyframes productFloatBright {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* Bright CTA Button */
.btn-hero-cta-bright {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd000 0%, #ffb700 40%, #e5a000 100%);
  color: #051923;
  padding: 16px 45px;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 28px rgba(255, 183, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-cta-bright:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 35px rgba(255, 183, 0, 0.8);
  background: linear-gradient(135deg, #ffe033 0%, #ffc400 50%, #f0a800 100%);
}

/* White Glassmorphism Contact Bar (Out 10) */
.hero-contact-bar-bright {
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(243, 198, 79, 0.8);
  border-radius: 20px;
  padding: 18px 30px;
  width: 100%;
  max-width: 1050px;
  margin: 32px auto 0 auto;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 12px 35px rgba(0, 50, 100, 0.12),
    inset 0 2px 0 #ffffff;
  position: relative;
  z-index: 3;
}

.contact-bar-badge-bright {
  background: linear-gradient(90deg, #0077b6 0%, #0096c7 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 5px 16px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0, 119, 182, 0.3);
}

.contact-item-row-bright {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #0f2c59;
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact-item-row-bright i {
  font-size: 1.15rem;
  margin-top: 2px;
}

.contact-item-row-bright strong {
  color: #031926;
  font-weight: 800;
}

.contact-item-row-bright a {
  color: #0077b6;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-item-row-bright a:hover {
  color: #d4af37;
}

/* Mobile Responsiveness for Out 10 Hero */
@media (max-width: 992px) {
  .title-mega-gold-bright { font-size: 2.8rem; }
  .title-sub-banner-bright { font-size: 1.45rem; }
  .hero-roi-slogan { font-size: 1.3rem; }
}

@media (max-width: 768px) {
  .hero-out10-bright { padding: 35px 0 45px 0; text-align: center; }
  .hero-content-wrapper { align-items: center !important; text-align: center !important; }
  .title-cursive-dark { font-size: 1.4rem; text-align: center; }
  .title-mega-gold-bright { font-size: 2.1rem; text-align: center; line-height: 1.15; }
  .title-sub-banner-bright { font-size: 1.1rem; letter-spacing: 1px; text-align: center; }
  .bright-gold-badge { 
    font-size: 0.74rem !important; 
    padding: 5px 14px !important; 
    letter-spacing: 0.8px !important;
    max-width: 92% !important;
    margin: 0 auto 12px auto !important;
    border-radius: 50px !important;
    line-height: 1.3 !important;
  }
  .hero-pill-badges { justify-content: center !important; flex-direction: column !important; gap: 8px !important; width: 100% !important; }
  .gold-pill-badge-bright { font-size: 0.8rem !important; padding: 7px 16px !important; width: 88% !important; margin: 0 auto !important; }
  .hero-note-star-dark { font-size: 0.84rem; text-align: center; padding: 0 10px; }
  .hero-roi-slogan { font-size: 1.1rem; text-align: center; margin-bottom: 15px; padding: 0 10px; }
  .podium-crystal-disc { height: 60px; bottom: -10px; }
  .btn-hero-cta-bright { width: 92% !important; padding: 14px 20px !important; border-radius: 50px !important; }
  .cta-line-1 { font-size: 1rem !important; }
  .cta-line-2 { font-size: 0.78rem !important; }
  .hero-contact-bar-bright { padding: 14px 16px; border-radius: 16px; text-align: left; }
  .contact-item-row-bright { font-size: 0.84rem; }
}

.pricing-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1.5px solid #d4af37;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.pricing-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.retail-price {
  font-size: 0.9rem;
  color: #cccccc;
}

.combo-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: #d4af37;
  line-height: 1.1;
  margin: 4px 0;
}

.retail-total {
  font-size: 0.85rem;
  color: #bbbbbb;
}

.pricing-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.save-badge {
  background-color: #e63946;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  min-width: 90px;
  font-family: var(--font-header);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.save-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.save-num {
  font-size: 2.25rem;
  font-weight: 800;
  display: block;
  margin: 1px 0;
}

.save-unit {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9d976 0%, #e5b83b 50%, #d4af37 100%);
  color: #0d0d0d;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite ease-in-out;
  z-index: 2;
}

.btn-hero-cta:hover {
  animation: none;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #ffe082 0%, #f3c64f 50%, #e5b83b 100%);
}

@keyframes shine {
  0% {
    left: -50%;
  }
  15%, 100% {
    left: 125%;
  }
}

.cta-line-1 {
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.cta-line-2 {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 2px;
  letter-spacing: 1px;
}

.hero-bottom-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.hero-showcase {
  position: relative;
  height: auto;
  width: 100%;
  max-width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.showcase-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
}

.showcase-images-single {
  display: flex;
  justify-content: center;
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.showcase-images-single-box {
  height: auto;
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}

.showcase-images-single-box:hover {
  transform: translateY(-5px);
}

.showcase-images-single-box img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: var(--transition-smooth);
}

/* Product Sections Backgrounds */
.product-section {
  position: relative;
}
.product-section.alt {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, rgba(10, 10, 10, 0.4) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.delivery-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
}

.trust-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 80%);
}

.reviews-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
}

/* Product Showcase Layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.product-layout.reverse {
  direction: ltr;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-view-box {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
}

.main-view-box img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  border-radius: var(--border-radius-md);
}

.thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumb-box {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.thumb-box.active, .thumb-box:hover {
  opacity: 1;
  border-color: var(--color-secondary);
}

.thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.product-retail-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.product-retail-price span {
  color: var(--color-accent);
  font-weight: 700;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.app-item {
  display: flex;
  gap: 15px;
}

.app-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.app-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.app-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.spec-table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-table td {
  padding: 10px 0;
  font-size: 0.9rem;
  text-align: left;
}

.spec-label {
  font-weight: 700;
  color: var(--color-primary-light);
  width: 40%;
}

.spec-value {
  color: var(--color-text-dark);
}

/* ROI Section */
.roi-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.roi-grid {
  display: flex;
  justify-content: center;
}

.roi-text {
  max-width: 800px;
  width: 100%;
}

.roi-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.roi-point-item {
  display: flex;
  gap: 15px;
}

.roi-point-icon {
  color: var(--color-secondary-dark);
  font-size: 1.25rem;
  margin-top: 3px;
}

.roi-point-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.roi-point-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.roi-summary-note {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
  display: inline-block;
  font-style: italic;
  letter-spacing: 0.5px;
}



/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.trust-card {
  background: rgba(25, 25, 25, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.trust-icon {
  font-size: 2rem;
  color: var(--color-secondary-dark);
  margin-bottom: 20px;
}

.trust-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.trust-header .trust-icon {
  margin-bottom: 0;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.trust-header h4 {
  margin-bottom: 0;
}

.trust-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Order Section */
.order-section {
  background-color: #070707;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.timer-container {
  color: white;
}

.timer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.timer-container h3 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.timer-boxes {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.timer-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius-sm);
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timer-box .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.timer-box .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-weight: 600;
}

.order-promo-details {
  background-color: rgba(255,255,255,0.05);
  border-radius: var(--border-radius-md);
  padding: 24px;
  border-left: 4px solid var(--color-accent);
}

.order-promo-retail {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
}

.order-promo-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.1;
  margin-top: 5px;
}

.form-card {
  background: rgba(25, 25, 25, 0.55);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  scroll-margin-top: 95px;
}

.form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.form-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: #202020;
}

.form-select {
  background-color: #1a1a1a;
  color: #ffffff;
}

.form-select option {
  background-color: #121212;
  color: #ffffff;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 3px;
}

.form-card .btn {
  width: 100%;
}

/* Success Modal Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  z-index: 10;
  border-radius: var(--border-radius-md);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

.form-success-overlay.active {
  display: flex;
}

.success-icon {
  font-size: 4rem;
  color: #2ec4b6;
  margin-bottom: 20px;
}

/* Reviews Section */
.reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  margin-bottom: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 20px;
}

.score-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stars {
  color: var(--color-secondary-dark);
  font-size: 1.1rem;
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.rating-stars p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.reviews-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--color-primary);
  color: #070707;
  border-color: var(--color-primary);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card {
  background: rgba(25, 25, 25, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-3px);
}

.review-card.hidden {
  display: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: #070707;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.reviewer-name h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviewer-name span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 5px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-images {
  display: flex;
  gap: 10px;
}

.review-img-box {
  width: 100px;
  height: 75px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid #dee2e6;
  cursor: pointer;
}

.review-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Section */
.footer {
  background-color: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-col p {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-col p i {
  color: var(--color-secondary);
  margin-top: 4px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-cert {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cert-badge {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-grid, .product-layout, .roi-grid, .order-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-layout.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .hero-showcase {
    height: auto;
    margin-top: 20px;
  }
  
  .showcase-images {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 30px 0;
  }
  
  .section-header {
    margin-bottom: 25px;
  }

  .header-top {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #070707;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
  /* Hero Stacking & Layout on Mobile */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .hero-content {
    display: contents;
  }
  
  .hero-badge {
    order: 1;
    margin-bottom: 12px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    align-self: center;
  }
  
  .hero-content h1 {
    order: 2;
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 12px;
    align-self: center;
  }
  
  .hero-subtext {
    order: 3;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 15px;
    align-self: center;
  }
  
  .hero-description {
    order: 4;
    font-size: 0.95rem;
    margin-bottom: 20px;
    align-self: center;
  }
  
  .hero-showcase {
    order: 5;
    height: auto;
    margin-top: 10px;
    margin-bottom: 25px;
  }
  
  .showcase-images-single-box {
    height: 300px;
  }
  
  .floating-badge-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
    bottom: 10px;
  }
  
  .pricing-card {
    order: 6;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    align-self: center;
  }
  
  .pricing-left {
    align-items: center;
  }
  
  .combo-price {
    font-size: 2.2rem;
    margin: 2px 0;
  }
  
  .retail-price, .retail-total {
    font-size: 0.8rem;
  }
  
  .pricing-right {
    width: 100%;
  }
  
  .save-badge {
    width: 100%;
    min-width: 100%;
    flex-direction: row;
    gap: 10px;
    padding: 8px 16px;
  }
  
  .save-num {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .save-lbl, .save-unit {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    order: 7;
    width: 100%;
    align-self: center;
  }
  
  .btn-hero-cta {
    width: 100%;
    padding: 12px 20px;
  }
  
  .cta-line-1 {
    font-size: 1rem;
  }
  
  .cta-line-2 {
    font-size: 0.75rem;
  }
  
  /* Other sections */
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  /* Fix product elements layout & alignment on mobile */
  .product-gallery {
    min-width: 0;
    width: 100%;
  }

  .main-view-box {
    min-width: 0;
    width: 100%;
    height: auto;
  }

  .thumb-strip {
    min-width: 0;
    width: 100%;
  }

  .product-info {
    text-align: center;
  }

  .product-info h3 {
    text-align: center;
  }

  .product-info p {
    text-align: center;
  }

  .app-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto 25px auto;
    width: 100%;
    max-width: 500px;
  }

  .app-text h4,
  .app-text p {
    text-align: left;
  }

  .spec-table {
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 100%;
  }

  /* Fix background decorative elements overflow */
  .showcase-bg {
    width: 280px !important;
    height: 280px !important;
  }

  /* Timer boxes responsiveness on mobile */
  .timer-boxes {
    justify-content: center;
    gap: 10px;
  }

  .timer-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }

  .timer-box .num {
    font-size: 1.4rem;
  }

  .timer-box .label {
    font-size: 0.65rem;
  }
  
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   ADMIN MODE INLINE EDITING STYLES
   ========================================================================== */

/* Floating Edit Mode Trigger Button */
.admin-trigger-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

.admin-trigger-btn:hover {
  background-color: var(--color-secondary-dark);
  transform: rotate(45deg);
}

/* Floating Bottom Controls Toolbar */
.admin-toolbar {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius-md);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 9998;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admin-toolbar.active {
  bottom: 24px;
}

.admin-toolbar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.admin-toolbar-title i {
  color: var(--color-secondary);
}

.admin-toolbar-actions {
  display: flex;
  gap: 10px;
}

.admin-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.admin-btn-save {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.admin-btn-save:hover {
  background-color: var(--color-secondary-dark);
  color: white;
}

.admin-btn-exit {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.admin-btn-exit:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Edit Mode Highlighters (Dashed outlines) */
body.admin-edit-mode [contenteditable="true"] {
  outline: 2px dashed var(--color-secondary) !important;
  outline-offset: 4px;
  cursor: text;
  min-height: 1em;
}

body.admin-edit-mode [contenteditable="true"]:hover {
  background-color: rgba(212, 175, 55, 0.05);
}

body.admin-edit-mode [contenteditable="true"]:focus {
  background-color: rgba(212, 175, 55, 0.1);
  outline: 2px solid var(--color-secondary-dark) !important;
}

/* Image Hover Trigger Overlays */
.editable-img-container {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.editable-img-container::before {
  content: "Thay đổi ảnh \f093";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 43, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  font-size: 0.9rem;
  border-radius: inherit;
}

.editable-img-container:hover::before {
  opacity: 1;
}

/* ==========================================================================
   TIMED & SCROLL-TRIGGERED LEAD POPUP STYLES
   ========================================================================== */
.lead-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lead-popup-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lead-popup-card {
  background-color: #121212;
  border-radius: var(--border-radius-md);
  padding: 40px;
  width: 90%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transform: scale(0.8) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-popup-backdrop.active .lead-popup-card {
  transform: scale(1) translateY(0);
}

.lead-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.lead-popup-close:hover {
  color: var(--color-secondary);
}

.lead-popup-body h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--color-secondary);
  text-align: center;
  line-height: 1.3;
}

.lead-popup-body p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  text-align: center;
}

#popupSuccessOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212;
  z-index: 10;
  border-radius: var(--border-radius-md);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

#popupSuccessOverlay.active {
  display: flex;
}
