/* KiXX Square Brand Colors */
:root {
  --crimson-red: #dc143c;
  --cta-green: #5cb85c; /* Lighter fresh green - clearly softer than before */
  --cta-green-hover: #4caa4c;
  --royal-blue: #4169e1;
  --gold: #ffd700;
  --dark-gray: #2c3e50;
  --navy: #001f3f;
  --light-gray: #ecf0f1;
  --white: #ffffff;
  --light-blue: #5dade2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--light-gray);
  background-color: var(--dark-gray);
  overflow-x: clip; /* Prevent horizontal scroll from drawer, but allow sticky */
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: rgba(
    52,
    73,
    94,
    0.8
  ); /* Semi-transparent version of #34495E */
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    padding 0.3s ease,
    background-color 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(44, 62, 80, 0.95); /* Darker on scroll */
}

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

/* Brand (Logo + Text) */
.brand {
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand-link:hover {
  transform: translateY(-2px);
}

.header-logo {
  height: 50px;
  width: auto;
  margin-right: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
  transition: filter 0.3s ease;
}

.header-logo:hover {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative; /* For the underline pseudo-element */
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px; /* Position below the text */
  left: 0;
  width: 0; /* Initially hidden */
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease-out;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%; /* Expand on hover or when active */
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

/* Nav Actions (Theme Toggle + Hamburger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1002;
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  /* iOS minimum tap target: 44px */
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation; /* Prevent double-tap zoom on iOS */
  -webkit-tap-highlight-color: transparent; /* No gray flash on iOS tap */
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  -webkit-appearance: none; /* Remove iOS button styling */
  appearance: none;
}

/* Icon inside button must not swallow events */
.theme-toggle-btn i,
.theme-toggle-btn svg {
  pointer-events: none;
}

.theme-toggle-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

body.light-theme .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 31, 63, 0.2);
  color: var(--navy);
}

body.light-theme .theme-toggle-btn:hover {
  background: rgba(0, 31, 63, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* More Button - Pill Style */
.more-btn {
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 25px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.more-btn:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* Drawer Menu */
.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background-color: var(--dark-gray);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2000;
  overflow-y: auto;
  will-change: transform;
}

.drawer-menu.active {
  transform: translateX(0);
}

.drawer-content {
  padding: 40px 30px;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition:
    transform 0.3s ease,
    color 0.3s;
}

.drawer-close:hover {
  transform: rotate(90deg);
  color: var(--white);
}

.drawer-content h3 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-links li {
  margin-bottom: 20px;
}

.drawer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  display: block;
  padding: 12px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 25px;
}

.drawer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.drawer-links a:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  padding-left: 35px;
}

.drawer-links a:hover::before {
  opacity: 1;
  left: 10px;
}

.drawer-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1999;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  background-color: #ffd814;
  color: #111;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition:
    background-color 0.3s,
    transform 0.2s;
}

.cta-button:hover {
  background-color: #f7ca00;
  transform: translateY(-2px);
}

/* Price Tag: small $ superscript + bold black number */
.price-tag {
  color: #000000;
  font-weight: 700;
  white-space: nowrap;
}
.price-tag .currency {
  font-size: 0.6em;
  vertical-align: super;
  font-weight: 600;
  line-height: 0;
}
/* In dark theme keep the price readable (gold) */
body:not(.light-theme) .price-tag {
  color: var(--gold);
}
body:not(.light-theme) .price-tag .currency {
  color: var(--gold);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.btn-primary {
  background-color: #ffd814;
  color: #111;
  border-color: #ffd814;
}

.btn-primary:hover {
  background-color: #f7ca00;
  border-color: #f7ca00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 30, 61, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--crimson-red);
  border-color: var(--crimson-red);
}

.btn-secondary:hover {
  background-color: var(--crimson-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 30, 61, 0.2);
}

.triangle-button {
  background-image: url("images/features/Side_1_kixx_Square_17.bmp");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  box-shadow: none;
  width: 200px; /* Initial width, will adjust */
  height: 100px; /* Initial height, will adjust */
  padding: 20px; /* Adjust padding to position text */
  text-align: center;
  color: var(--white); /* Change text color to be visible on the button */
  font-weight: bold;
}

.triangle-button:hover {
  background-color: transparent; /* Ensure hover doesn't bring back a color */
  transform: scale(1.05); /* Simple scale hover effect for image button */
  box-shadow: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 450px; /* Reduced height as content is moved */
  display: flex;
  align-items: center; /* Center the overlay if any, but content is gone */
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0; /* Clear padding */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Lighter overlay to show image */
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Increased height for parallax movement */
  object-fit: cover;
  z-index: 0;
  will-change: transform; /* Optimize for animation */
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Hero Info Section */
.hero-info-section {
  background-color: var(--dark-gray); /* Dark solid base for contrast */
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separation */
}

.hero-content {
  background: rgba(255, 255, 255, 0.03); /* Extremely light base */
  -webkit-backdrop-filter: blur(30px); /* Deep premium frosted effect */
  backdrop-filter: blur(30px);
  padding: 80px 60px; /* Generous internal breathing space */
  border-radius: 30px; /* Softer, premium corners */
  border: 1px solid rgba(255, 215, 0, 0.4) !important;
  box-shadow:
    0 0 15px 2px rgba(255, 215, 0, 0.4),
    0 30px 60px -12px rgba(0, 0, 0, 0.8);
  max-width: 1200px; /* Wide, professional footprint */
  width: 90%;
  margin: 0 auto;
  text-align: center;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: pulse-gold-box 5s infinite ease-in-out !important; /* Breathing rhythm */
}

.hero-content:hover {
  transform: translateY(-8px); /* Clear vertical lift */
  background: rgba(255, 255, 255, 0.05);
  animation-play-state: paused !important; /* Hold breath on interaction */
  box-shadow:
    0 0 35px 8px rgba(255, 215, 0, 0.8),
    0 40px 70px -12px rgba(0, 0, 0, 0.9) !important;
}

.hero h2 {
  font-size: 3.5rem; /* Large, bold impact */
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--gold);
  letter-spacing: -1.5px;
  line-height: 1.1;
  min-height: 1.2em; /* Reserve space for typing */
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Typing Cursor */
.typing-cursor::after {
  content: "|";
  animation: blink 1s step-start infinite;
  color: var(--white);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 25px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.95;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.cta-button-large {
  background-color: var(--cta-green);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex !important; /* Changed from inline-block to flex for inner centering */
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto !important; /* Explicitly center horizontally */
  transition:
    background-color 0.3s,
    transform 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: fit-content !important;
}

.cta-button-large:hover {
  background-color: var(--cta-green-hover);
  animation-play-state: paused !important; /* Suspend pulse on interaction */
  box-shadow:
    0 0 35px 8px rgba(255, 215, 0, 0.8),
    0 40px 70px -12px rgba(0, 0, 0, 0.9) !important;
}

/* Magnetic Button Base */
.magnetic-btn {
  transition:
    transform 0.1s ease-out,
    background-color 0.3s;
  will-change: transform;
}

/* Pulse Animation - Glowing Halo Effect */
@keyframes pulse-red {
  0% {
    box-shadow:
      0 4px 15px rgba(0, 0, 0, 0.3),
      0 0 0 0 rgba(220, 20, 60, 0.7);
  }
  70% {
    box-shadow:
      0 4px 15px rgba(0, 0, 0, 0.3),
      0 0 0 15px rgba(220, 20, 60, 0);
  }
  100% {
    box-shadow:
      0 4px 15px rgba(0, 0, 0, 0.3),
      0 0 0 0 rgba(220, 20, 60, 0);
  }
}

/* Global Breathing Gold Pulse */
@keyframes pulse-gold-box {
  0% {
    box-shadow:
      0 0 15px 2px rgba(255, 215, 0, 0.4),
      0 30px 60px -12px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow:
      0 0 45px 15px rgba(255, 215, 0, 0.8),
      0 30px 60px -12px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 215, 0, 0.8);
  }
  100% {
    box-shadow:
      0 0 15px 2px rgba(255, 215, 0, 0.4),
      0 30px 60px -12px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 215, 0, 0.4);
  }
}

.cta-button-large.pulse {
  position: relative;
  animation: pulse-gold-box 5s infinite ease-in-out !important; /* Sync with hero breath */
}

/* Removed pseudo-element pulse to avoid z-index/stacking context issues */

.guarantee {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Product Showcase Section */
.product-showcase {
  padding: 60px 0;
  background-color: var(--dark-gray);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.showcase-item {
  background-color: #34495e;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* 3D Tilt Effect Base Styles */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.tilt-content {
  transform: translateZ(20px); /* Pop out effect */
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    height: 160px !important; /* Force native banner proportion */
    min-height: 160px !important;
    background-color: #001f3f;
  }

  .hero-bg {
    object-fit: cover;
    object-position: center 10%; /* Perfect brand framing */
    height: 100% !important; /* Stop hidden 120% zoom */
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: none !important; /* Safety check against JS transforms */
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Features Overview Section */
.features-overview {
  padding: 40px 0;
  text-align: center;
}

.overview-card {
  background-color: #34495e; /* Secondary dark background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); /* Gold glow */
  max-width: 900px;
  margin: 0 auto;
}

.intro-card {
  background-color: #34495e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.features-overview h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.section-intro {
  font-size: 1.4rem;
  font-weight: 500;
  background: linear-gradient(45deg, var(--royal-blue), #87ceeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.4));
}

/* Feature Detail Sections */
.feature-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--light-gray);
}

.feature-detail.alt {
  background-color: #34495e;
}

.feature-card {
  background-color: #34495e;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
}

.feature-card .btn {
  margin-top: 25px;
  margin-bottom: 10px;
}

.feature-number {
  display: inline-block;
  background-color: var(--gold);
  color: var(--dark-gray);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
}

.feature-detail h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 15px;
}

.feature-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  background: linear-gradient(45deg, var(--royal-blue), #87ceeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  background-clip: text;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.4));
}

/* How-To Box */
.how-to-box {
  background-color: #34495e;
  border-left: 5px solid var(--crimson-red);
  padding: 30px;
  margin-top: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.feature-content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.feature-content-grid .how-to-box {
  flex: 1;
  min-width: 300px;
  margin-top: 0; /* Reset margin */
}

.placeholder {
  flex: 1;
  min-width: 300px;
  height: 300px;
  background-color: var(--dark-gray);
  border: 2px dashed var(--gold);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-weight: bold;
  text-align: center;
  opacity: 0.7;
}

.feature-media {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  margin: auto; /* Center the image within the flex column */
}

/* Responsive Video Wrapper */
.video-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 560px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 315px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 200px;
  }
}

.how-to-box h4 {
  color: var(--crimson-red);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.how-to-box ol {
  margin-left: 25px;
}

.how-to-box li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.how-to-box li strong {
  color: var(--light-blue);
}

.how-to-box ul {
  margin-left: 25px;
  margin-top: 10px;
}

.how-to-box ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--dark-gray) 0%,
    var(--royal-blue) 100%
  );
  color: var(--white);
  text-align: center;
}

.pricing-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.price-box {
  background-color: #34495e;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.price {
  font-size: 4rem;
  font-weight: bold;
  color: var(--crimson-red);
  margin-bottom: 10px;
}

.price-detail {
  font-size: 1.1rem;
  color: var(--light-blue);
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  text-align: left;
  margin: 30px 0;
}

.benefits-list li {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: #34495e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  gap: 20px;
}

.item-details {
  flex-grow: 1;
}

.item-details h3 {
  margin-bottom: 5px;
  color: var(--white);
}

.item-price {
  color: var(--light-gray);
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-display {
  font-size: 1.1rem;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}

.item-total {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 80px;
  text-align: right;
  margin: 0 15px;
}

.cart-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.cart-items {
  flex: 2; /* Takes up 2/3 of the space */
}

.cart-summary {
  flex: 1; /* Takes up 1/3 of the space */
  position: sticky;
  top: 100px; /* Start sticking 100px from the top */
  background-color: #34495e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.qty-btn {
  background-color: var(--dark-gray);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.qty-btn:hover {
  background-color: var(--gold);
  color: var(--dark-gray);
}

.remove-btn-icon {
  background: transparent;
  border: none;
  color: var(--light-gray);
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    color 0.3s,
    transform 0.3s;
}

.remove-btn-icon:hover {
  color: var(--crimson-red);
  transform: scale(1.1);
}

.cart-summary .btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

/* Order Section */
.order-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.order-section h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.order-section > p {
  font-size: 1.2rem;
  color: var(--royal-blue);
  margin-bottom: 40px;
}

.order-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.order-form input,
.order-form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--royal-blue);
}

.order-form button {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

/* Product Detail Page Styles */
.product-detail-section {
  padding: 60px 0;
}

.product-detail-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.product-image-gallery {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background-color: #34495e; /* Secondary dark background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); /* Gold glow */
}

.main-product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.thumbnail-gallery {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    border-color 0.3s,
    transform 0.2s;
}

.thumbnail:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.product-info {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.product-info h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.product-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--crimson-red);
  margin-bottom: 20px;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 30px;
}

.product-features-list {
  list-style: none;
  margin-bottom: 30px;
}

.product-features-list li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-gray);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.product-features-list li::before {
  content: "✓";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.add-to-cart-btn {
  background-color: #ffd814;
  color: #111;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  transition:
    background-color 0.3s,
    transform 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background-color: #f7ca00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-button {
  background-color: #ffd814;
  color: #111;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); /* Gold glow */
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    background-color 0.3s;
}

.cta-button:hover {
  background-color: #f7ca00;
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); /* Enhanced gold glow on hover */
}

.cta-button-large {
  background-color: var(--cta-green);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    background-color 0.3s;
  display: inline-block;
  font-family: inherit;
}

.cta-button-large:hover {
  background-color: var(--cta-green-hover);
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

/* Testimonials Page Styles */
.testimonials-section {
  padding: 60px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #34495e; /* Secondary dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); /* Gold glow */
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); /* Enhanced gold glow on hover */
}

/* How-To Page Styles */
.how-to-guides .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.guide-card {
  background-color: #34495e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.guide-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.value-card {
  background-color: var(--dark-gray);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.about-main-card {
  background-color: #34495e;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.about-story h2,
.mission-section h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.about-story p,
.mission-section p,
.story-list li {
  color: var(--light-gray);
  line-height: 1.6;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  transition: color 0.3s ease;
}

.quote::before {
  content: "“";
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  left: -15px;
  top: -10px;
  opacity: 0.6;
}

.quote::after {
  content: "”";
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  right: -15px;
  bottom: -30px;
  opacity: 0.6;
}

.author {
  font-weight: bold;
  color: var(--white);
  text-align: right;
  display: block;
  transition: color 0.3s ease;
}

/* New Contact Form Styles for Dark Theme */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  background-color: var(--dark-gray);
  color: var(--light-gray);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Footer */
footer {
  background-color: #34495e;
  color: var(--white);
  padding: 20px 0 10px 0; /* Significantly reduced padding */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem; /* Smaller global footer font size */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  ); /* Smaller min-width for columns */
  gap: 15px; /* Tighter gap between columns */
  margin-bottom: 15px; /* Tighter bottom margin */
}

.footer-section {
  text-align: left;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 8px; /* Tighter heading margin */
  color: var(--gold);
  font-size: 1rem; /* Smaller heading font size */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 3px; /* Tighter list item spacing */
}

.footer-section ul li a,
.footer-section ul li a:visited {
  /* Ensure visited links are also white */
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  position: relative; /* For the underline pseudo-element */
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  bottom: -3px; /* Closer to text */
  left: 0;
  width: 0; /* Initially hidden */
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease-out;
}

.footer-section ul li a:hover::after {
  width: 100%; /* Expand on hover */
}

.footer-bottom {
  text-align: center;
  padding-top: 10px; /* Tighter padding */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem; /* Smaller copyright font size */
}

.footer-bottom p {
  margin: 2px 0;
}

.social-links {
  display: flex;
  gap: 12px; /* Tighter gap */
  margin-top: 5px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  color: var(--gold);
  transform: translateY(-3px) scale(1.1);
}

.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.how-to-box,
.price-box,
.feature-image {
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.how-to-box:hover,
.price-box:hover,
.feature-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Scroll Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--gold);
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-left: 20px; /* Ensure separation from logo */
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background-color: rgba(52, 73, 94, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease-in-out;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    gap: 0;
    z-index: 1000;
    max-height: calc(100vh - 80px); /* Allow room for sticky header */
    overflow-y: auto; /* Enable scrolling */
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 1.1rem;
  }

  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav {
    margin-top: 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .features-overview h2 {
    font-size: 1.8rem;
  }

  .feature-detail h3 {
    font-size: 1.5rem;
  }

  /* Center content for Sections 2, 4, 8 etc on mobile */
  .feature-detail,
  .feature-detail.alt {
    text-align: center;
  }

  .feature-number {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-card,
  .feature-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .price {
    font-size: 3rem;
  }

  .price-box {
    padding: 30px 20px;
  }

  /* Mobile-specific improvements */
  .cta-button,
  .cta-button-large,
  .add-to-cart-btn {
    min-height: 48px;
    padding: 14px 30px;
    font-size: 1rem;
  }

  .hero {
    min-height: 50vh; /* Increased slightly to ensure good spacing */
    height: auto; /* Allow content to dictate height */
  }

  body {
    font-size: 16px;
  }

  .cart-content {
    flex-direction: column;
  }

  .cart-summary {
    position: static;
    margin-top: 30px;
  }

  .feature-content-grid {
    flex-direction: column;
  }

  .how-to-box,
  .feature-media,
  .placeholder,
  .video-wrapper,
  .product-image-gallery,
  .product-info {
    min-width: 0; /* Allow shrinking below desktop min-width */
    width: 100%;
  }

  .how-to-box {
    padding: 20px; /* Reduce padding for mobile */
  }

  /* Product Page Mobile Layout */
  .product-detail-section .container {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .product-image-gallery {
    margin-bottom: 20px;
  }

  /* Fix for "More" button in mobile menu */
  .more-btn {
    width: auto;
    min-width: 120px;
    display: inline-block;
    margin: 10px auto;
    padding: 10px 25px;
    font-size: 1rem;
    text-align: center;
    line-height: 1;
    border-radius: 50px;
  }

  /* Fix for Drawer Menu on mobile */
  .drawer-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* Success Page Styles */
.success-section {
  padding: 80px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card {
  background-color: #34495e;
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #27ae60;
  color: var(--white);
  font-size: 4rem;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
  animation: successPop 0.6s ease-out;
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-card h1 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.success-message {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 40px;
}

.order-details {
  background-color: var(--dark-gray);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  text-align: left;
}

.order-details h2 {
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.next-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.next-steps li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}

.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: var(--royal-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
}

.next-steps li strong {
  color: var(--light-blue);
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.next-steps li p {
  color: var(--light-gray);
  margin: 0;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.support-info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-info a {
  color: var(--gold);
  text-decoration: none;
}

.support-info a:hover {
  text-decoration: underline;
}

/* Loading State for Buttons */
.loading {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Legal Pages Styles */
.legal-content {
  padding: 60px 0;
  background-color: var(--dark-gray);
}

.legal-text {
  background-color: #34495e;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-text p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-text ul,
.legal-text ol {
  color: var(--light-gray);
  margin: 15px 0 15px 30px;
  line-height: 1.8;
}

.legal-text li {
  margin-bottom: 10px;
}

.legal-text a {
  color: var(--light-blue);
  text-decoration: none;
  border-bottom: 1px dotted var(--light-blue);
}

.legal-text a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.legal-text strong {
  color: var(--white);
}

@media (max-width: 768px) {
  .legal-text {
    padding: 30px 20px;
  }

  .legal-text h2 {
    font-size: 1.5rem;
  }
}

/* Form Message Styles */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
}

.success-message {
  background-color: rgba(39, 174, 96, 0.2);
  color: #27ae60;
  border: 1px solid #27ae60;
  padding: 15px;
  border-radius: 8px;
}

.error-message {
  background-color: rgba(220, 20, 60, 0.2);
  color: var(--crimson-red);
  border: 1px solid var(--crimson-red);
  padding: 15px;
  border-radius: 8px;
}

/* Contact Form Styles */
.contact-section {
  padding: 60px 0;
  background-color: var(--dark-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info {
  background-color: #34495e;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.contact-info h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item h3 {
  color: var(--light-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--light-gray);
  line-height: 1.6;
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background-color: #34495e;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

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

.form-group label {
  display: block;
  color: var(--light-blue);
  margin-bottom: 8px;
  font-weight: 500;
}

/* Trust Badges */
/* ========================================
   TRUST BADGES - CHOOSE YOUR STYLE BELOW
   ======================================== */

/* OPTION 1: DARK MINIMAL (Clean & Subtle)
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    cursor: default;
}

.badge-icon {
    font-size: 20px;
    line-height: 1;
    filter: grayscale(30%) opacity(0.9);
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}
*/

/* OPTION 2: DARK SUBTLE BADGES (More Defined)
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background-color: rgba(52, 73, 94, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    cursor: default;
}

.badge-icon {
    font-size: 18px;
    line-height: 1;
    color: var(--gold);
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}
*/

/* Product Action Buttons */
.product-action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.product-action-buttons .btn {
  flex: 1;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-checkout {
  background-color: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  background-color: var(--gold);
  color: var(--dark-gray);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* OPTION 3: ICON-FIRST PILLS (Modern & Eye-Catching) - CURRENTLY ACTIVE */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center;
  margin-top: 25px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    rgba(52, 73, 94, 0.6) 0%,
    rgba(44, 62, 80, 0.8) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  cursor: default; /* Not clickable */
  width: 100%;
}

.badge-icon {
  font-size: 24px;
  line-height: 1;
  color: #ffffff !important; /* Force white in ALL contexts */
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.badge-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .contact-form-container {
    padding: 30px 20px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .badge-text {
    font-size: 12px;
  }
}

/* FAQ Page Styles */
.page-header {
  background-image:
    linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)),
    url("images/optimized/hero-website-banner.webp");
  background-size: cover;
  background-position: center;
  padding: 60px 0 40px 0;
  text-align: center;
  color: white;
}

.page-header h1 {
  color: white;
  margin-bottom: 15px;
}

.page-header .page-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-header .page-subtitle a {
  color: var(--gold);
  text-decoration: underline;
}

.faq-section {
  padding: 60px 0;
  background-color: #34495e;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 10px;
}

.faq-item {
  background-color: var(--dark-gray);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); /* Gold glow */
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-item:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); /* Enhanced gold glow on hover */
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 215, 0, 0.05);
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--crimson-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

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

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--white);
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: var(--dark-gray);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-cta h2 {
  margin-bottom: 15px;
  color: var(--gold);
}

.faq-cta p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 15px 20px;
  }

  .faq-cta {
    padding: 30px 20px;
  }
}
/* Newsletter 'Gemini 3.0' Styling */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 20px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 100%;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--gold) 0%, #ffaa00 100%);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Product Color Selector */
/* Hero Translate Widget Wrapper */
.hero-translate-wrapper {
  margin: 80px auto 30px; /* Increased top margin to clear the 60px CTA glow */
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  gap: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Custom styling for Google Translate Dropdown */
.goog-te-combo {
  background-color: var(
    --navy
  ); /* Solves native OS dropdown transparency rendering bug */
  color: var(--white);
  border: 1px solid rgba(255, 215, 0, 0.5); /* Gold border for brand consistency */
  border-radius: 8px;
  padding: 8px 30px 8px 15px; /* Extra right padding for the arrow */
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  /* Custom chevron SVG matching gold theme */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFD700%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 12px auto;
}

.goog-te-combo:hover {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Style the native <option> elements to ensure readability (fallback for some browsers) */
.goog-te-combo option {
  background-color: var(--navy);
  color: var(--white);
  padding: 10px;
}
.product-options {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-options h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--white);
}

.color-selector {
  display: flex;
  gap: 20px;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.color-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Color-matched glow effects */
.color-option:has(input[value="blue"]):hover {
  box-shadow: 0 0 20px rgba(0, 71, 171, 0.6);
  border-color: rgba(0, 71, 171, 0.5);
}

.color-option:has(input[value="red"]):hover {
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
  border-color: rgba(220, 20, 60, 0.5);
}

.color-option input[type="radio"] {
  display: none;
}

.color-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.color-swatch.blue {
  background: #0047ab; /* Cobalt Blue */
}

.color-swatch.red {
  background: #dc143c; /* Crimson Red */
}

.color-label {
  font-weight: 600;
  color: var(--light-gray);
}

.color-option:has(input:checked) .color-label {
  color: var(--gold);
}
/* Animation Utilities */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Shine Effect */
.shine-on-hover {
  position: relative;
  overflow: hidden;
}

.shine-on-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s;
}

.shine-on-hover:hover::after {
  left: 125%;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in-up,
  .slide-in-left,
  .slide-in-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* Utility Classes */
.hidden {
  display: none !important;
}

/* 404 Page Styles */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--navy);
  margin: 0;
  line-height: 1;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.error-content h2 {
  font-size: 2rem;
  margin: 1rem 0 2rem;
  color: var(--dark-gray);
}

.error-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--light-gray);
}

.tools-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Sticky Add to Cart Bar */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 15px 0;
}

.sticky-cart-bar.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-cart-bar.hidden-by-user {
  display: none;
}

.sticky-cart-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.sticky-cart-close {
  position: absolute;
  top: -5px;
  right: 10px;
  background: none;
  border: none;
  color: var(--light-gray);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 5px;
  line-height: 1;
}

.sticky-cart-close:hover {
  color: var(--crimson-red);
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
}

.sticky-product-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.sticky-product-details h3 {
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 5px 0;
}

.sticky-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--crimson-red);
  margin: 0;
}

.sticky-options {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.sticky-color-select {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 5px;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sticky-color-select option {
  background-color: #34495e; /* Match theme dark color */
  color: var(--white);
}

.sticky-color-select:hover,
.sticky-color-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  outline: none;
}

.sticky-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px;
}

.sticky-quantity button {
  width: 30px;
  height: 30px;
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-quantity button:hover {
  background: rgba(255, 215, 0, 0.4);
  border-color: var(--gold);
}

.sticky-quantity input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
}

.sticky-add-btn {
  white-space: nowrap;
  padding: 12px 30px !important;
  font-size: 1rem !important;
}

.sticky-checkout-btn {
  background-color: var(--cta-green);
  color: var(--white);
  border: none;
  white-space: nowrap;
  padding: 12px 20px !important;
  font-size: 1rem !important;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.sticky-checkout-btn:hover {
  background-color: var(--cta-green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-cart-bar {
    padding: 10px 0; /* Reduce padding */
  }

  .sticky-cart-content {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between; /* Ensure better spacing */
  }

  .sticky-product-info {
    flex: 1 1 100%;
    margin-bottom: 5px; /* Add small space below product info */
  }

  /* Hide thumbnail on very small screens to save space */
  @media (max-width: 400px) {
    .sticky-product-thumb {
      display: none;
    }
  }

  .sticky-product-thumb {
    width: 40px; /* Smaller thumb */
    height: 40px;
  }

  .sticky-product-details h3 {
    font-size: 0.9rem;
    margin-bottom: 0; /* Remove bottom margin */
  }

  .sticky-price {
    font-size: 1rem;
  }

  .sticky-options {
    flex: 1 1 100%; /* Force options to new line */
    gap: 10px;
    justify-content: center; /* Center options */
    margin-bottom: 5px;
  }

  .sticky-color-select {
    font-size: 0.85rem;
    padding: 6px 10px;
    flex: 1; /* Allow to shrink/grow */
  }

  .sticky-quantity {
    gap: 5px;
  }

  .sticky-quantity button {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .sticky-quantity input {
    width: 35px;
    font-size: 0.9rem;
  }

  /* Button Container to vertical stack for guaranteed mobile fit */
  .sticky-buttons-container {
    display: flex;
    flex-direction: column; /* Stack vertically */
    gap: 8px; /* Small gap between buttons */
    width: 100%; /* Use full width available */
    margin-top: 5px;
    justify-content: center; /* Center buttons */
    align-items: stretch; /* Make buttons full width */
    padding: 0; /* Remove padding */
  }

  /* We need to modify the HTML to wrap these buttons or target them directly if they are adjacent */
  /* Since we can't easily change HTML structure in CSS only without a parent class,
     we will rely on the fact they are siblings at the end of .sticky-cart-content */

  .sticky-add-btn {
    flex: 1; /* Share space */
    padding: 8px 2px !important; /* Extremely minimal padding */
    font-size: 0.75rem !important; /* Smaller font 12px */
    white-space: nowrap; /* Keep on one line */
    width: auto !important;
    min-width: 0; /* Allow shrinking */
  }

  .sticky-checkout-btn {
    flex: 1; /* Share space */
    padding: 8px 2px !important;
    font-size: 0.75rem !important;
    margin-right: 0; /* Remove margin */
    width: auto !important;
    min-width: 0; /* Allow shrinking */
  }

  .sticky-cart-close {
    top: 5px;
    right: 5px;
    padding: 8px; /* Larger touch target */
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

.testimonials-cta {
  text-align: center;
  margin-top: 50px;
}

.testimonials-cta .guarantee {
  margin-top: 15px;
}
/* Google Translate Widget Customization */
#google_translate_element {
  margin: 15px auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 48px !important;
  width: 100% !important;
}

/* Force Absolute Centering & Theme for Google's injected dropdown */
.goog-te-gadget {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  color: transparent !important; /* Hide "Powered by" text */
  font-family: "Inter", sans-serif !important;
  margin: 0 !important;
  width: 100% !important;
}

.goog-te-gadget .goog-te-combo {
  display: block !important;
  margin: 5px auto !important;
  padding: 10px 40px 10px 24px !important; /* Room for arrow */
  background: rgba(255, 255, 255, 0.35) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' 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") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px !important;
  border: 1px solid rgba(255, 215, 0, 0.7) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  outline: none !important;
  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  text-align: center !important;
  min-width: 220px !important;
  min-height: 44px !important;
}

/* Fix "White on White" issue in dropdown options */
.goog-te-gadget .goog-te-combo option {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  padding: 10px !important;
}

.goog-te-gadget .goog-te-combo:hover {
  border-color: #ffd700 !important;
  background-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.45);
}

/* Precision Branding Strike - DON'T hide spans or divs! */
.goog-logo-link,
.goog-te-gadget img,
.goog-te-gadget-icon {
  display: none !important;
}
/* End of consolidated styles */

.goog-te-gadget-simple:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.goog-te-menu-value {
  color: #333 !important;
  text-decoration: none !important;
}

.goog-te-menu-value span {
  color: var(--navy) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* Hide the Google icon */
.goog-te-gadget-icon {
  display: none !important;
}

/* Fix for the dropdown arrow color */
.goog-te-menu-value span:last-child {
  color: var(--navy) !important;
  font-size: 12px !important;
  margin-left: 5px !important;
}

/* Make the dropdown menu look decent */
.goog-te-menu-frame {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .goog-te-gadget-simple {
    font-size: 16px !important;
    padding: 12px !important;
  }
  .translate-label {
    font-size: 1rem;
  }
}

/* Game Page Styles */
.game-container {
  padding: 40px 0;
  min-height: 800px;
}

.game-iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: 8px;
}

/* Diablo Power Pack Promo Section */
.promo-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a1a1a 100%);
  border-top: 4px solid var(--crimson-red);
  border-bottom: 4px solid var(--crimson-red);
  position: relative;
  overflow: hidden;
  margin-top: -20px; /* Slight overlap or pull up if needed, or just 0 */
}

.promo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.4); /* Stronger gold border */
  box-shadow:
    0 0 30px rgba(220, 20, 60, 0.3),
    0 0 10px rgba(255, 215, 0, 0.1); /* Enhanced red/gold glow */
}

.promo-text {
  flex: 1;
  max-width: 600px;
}

.promo-badge {
  display: inline-block;
  background-color: var(--crimson-red);
  color: white;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow:
    0 0 15px rgba(220, 20, 60, 0.8),
    0 0 5px rgba(255, 255, 255, 0.5); /* Stronger glow */
  animation: pulse-red 2s infinite;
}

.promo-section .btn {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.6);
}

.promo-section .btn:hover {
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.8),
    0 0 10px rgba(220, 20, 60, 0.5);
}

.promo-section h2 {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.promo-subtitle {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 700;
}

.promo-description {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 30px;
}

.stock-warning {
  color: var(--crimson-red);
  font-weight: bold;
  font-style: italic;
  margin-left: 5px;
  display: block;
  white-space: nowrap;
  margin-top: 5px;
}

.promo-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.promo-img {
  max-width: 100%;
  max-height: 500px; /* Constrain height so it doesn't take up entire mobile screen */
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: block;
  margin: 0 auto; /* Center it */
}

.promo-img:hover {
  transform: rotate(0) scale(1.02);
}

/* Legal Disclaimer */
.legal-disclaimer {
  font-size: 0.75rem;
  color: #95a5a6;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  opacity: 0.7;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .promo-container {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 20px;
  }

  .promo-text {
    max-width: 100%;
  }

  .promo-section h2 {
    font-size: 2.5rem;
  }

  .promo-subtitle {
    font-size: 1.4rem;
  }
}

.promo-guarantee {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--crimson-red);
  font-weight: bold;
  font-style: italic;
}

/* =========================================
   LIGHT PROMO & GREEN CHECKOUT BUTTONS
   ========================================= */
.promo-section {
  background-color: #ffffff !important;
  color: #0f1111 !important;
  border-top: 2px solid #eaeded;
  border-bottom: 2px solid #eaeded;
}

.promo-container {
  background-color: #f8f9fa;
  border: 1px solid #e3e6e8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.promo-section h2 {
  color: #111111 !important; /* Dark text for light background */
  text-shadow: none !important;
}

.promo-subtitle {
  color: #232f3e !important; /* Rich dark color */
}

.promo-description {
  color: #565959 !important;
}

/* Green Checkout Button */
.btn-checkout,
.sticky-checkout-btn.btn-checkout {
  background-color: var(--cta-green) !important;
  color: #ffffff !important;
  border-color: var(--cta-green) !important;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(92, 184, 92, 0.3) !important;
  transition: all 0.3s ease;
}

.btn-checkout:hover,
.sticky-checkout-btn.btn-checkout:hover {
  background-color: var(--cta-green-hover) !important;
  border-color: var(--cta-green-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 184, 92, 0.5) !important;
}

/* =========================================
   Value First CTA Section (Option 3)
   ========================================= */
.cta-value-container {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  padding: 50px 40px;
  margin: 60px auto 40px;
  max-width: 1000px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-value-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.cta-value-item {
  flex: 1;
  text-align: center;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.cta-value-item:hover {
  transform: translateY(-5px);
}

.cta-value-item i {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.cta-value-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.cta-value-item p {
  font-size: 1rem;
  color: var(--light-blue);
  margin: 0;
  line-height: 1.4;
}

.price-focus {
  background: rgba(255, 215, 0, 0.07);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  letter-spacing: -2px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.price-focus .btn-primary {
  width: 100%;
  font-size: 1.1rem;
  padding: 15px 30px;
}

/* Light Theme Overrides for CTA V3 */
body.light-theme .cta-value-container {
  background: #ffffff;
  border: 1px solid #d5d9d9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light-theme .cta-value-item h3 {
  color: #0f1111;
}

body.light-theme .cta-value-item p {
  color: #565959;
}

body.light-theme .price-focus {
  background: #f8f8f8;
  border-color: #eaeded;
  box-shadow: none;
}

@media (max-width: 900px) {
  .cta-value-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cta-value-item {
    width: 100%;
  }

  .cta-value-item {
    width: 100%;
  }

  .price-focus {
    order: -1; /* Keep price on top for mobile */
    margin-bottom: 20px;
  }
}

/* =========================================
   LIGHT THEME (Amazon Inspired)
   ========================================= */
body.light-theme {
  --dark-gray: #eaeded; /* Amazon light gray background */
  --light-gray: #0f1111; /* Amazon dark text */
  --navy: #232f3e; /* Amazon Secondary Dark */
  --white: #131921; /* Inverted white for text properties using variable */

  background-color: #eaeded;
  color: #0f1111;
}

body.light-theme .container {
  color: #0f1111;
}

body.light-theme header {
  background-color: rgba(4, 29, 55, 0.8); /* Compensated for light body bg */
}
body.light-theme header.scrolled {
  background-color: rgba(34, 53, 72, 0.95); /* Compensated scrolled color */
}

body.light-theme .nav-menu a {
  color: #ffffff;
}
body.light-theme .nav-menu a:hover,
body.light-theme .nav-menu a.active {
  color: var(--gold);
}
body.light-theme .nav-menu a::after {
  background-color: var(--gold);
}

@media (max-width: 768px) {
  body.light-theme .nav-menu {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
  }
  body.light-theme .nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  body.light-theme .nav-menu a {
    color: #0f1111;
  }
  body.light-theme .nav-menu a:hover,
  body.light-theme .nav-menu a.active {
    color: #ff9900;
  }
  body.light-theme .nav-menu a::after {
    background-color: #ff9900;
  }
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition:
    color 0.3s,
    transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle-btn:hover {
  color: var(--gold);
  transform: rotate(15deg);
}
body.light-theme .theme-toggle-btn {
  color: #ffffff;
}
body.light-theme .theme-toggle-btn:hover {
  color: #ff9900;
}

/* Google Translate Cleanup */
.goog-te-gadget {
  color: transparent !important;
}

.goog-logo-link {
  display: none !important;
}

body.light-theme .drawer-menu {
  background-color: #ffffff;
  color: #0f1111;
}
body.light-theme .drawer-content h3 {
  color: #ff9900;
  border-bottom-color: rgba(255, 153, 0, 0.3);
}
body.light-theme .drawer-links a {
  color: #0f1111;
}
body.light-theme .drawer-links a:hover {
  background-color: rgba(255, 153, 0, 0.1);
  color: #ff9900;
}

/* Hero Section Adjustments */
body.light-theme .hero-info-section {
  background-color: #ffffff;
  border-top-color: #d5d9d9;
}
body.light-theme .hero-content {
  background-color: #ffffff;
  border-color: #d5d9d9 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: none !important;
}
body.light-theme .hero-content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}
body.light-theme .hero h2,
body.light-theme .hero-content h2 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: none;
}
body.light-theme .hero-subtitle,
body.light-theme .hero-description,
body.light-theme .guarantee {
  color: #565959 !important;
  text-shadow: none !important;
}

/* Sections & Cards */
body.light-theme .product-showcase,
body.light-theme .features-overview,
body.light-theme .feature-detail,
body.light-theme .promo-section,
body.light-theme .pricing {
  background-color: #f4f6f8; /* Distinct light cool gray */
  color: #0f1111;
  border-bottom: 1px solid #d5d9d9;
}

body.light-theme .page-header {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("images/optimized/hero-website-banner.webp") !important;
  background-size: cover;
  background-position: center;
  color: #0f1111;
  border-top: 4px solid var(--navy); /* Bold accent line */
  border-bottom: 2px solid #d5d9d9;
  box-shadow: inset 0 -10px 20px -10px rgba(0, 0, 0, 0.03);
}

body.light-theme .page-header h1 {
  color: var(--navy) !important;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Force dark text for all paragraphs in the light theme page-header */
body.light-theme .page-header p,
body.light-theme .page-header .subtitle,
body.light-theme .page-header .page-subtitle,
body.light-theme .page-header .faq-updated {
  color: #333333 !important;
  opacity: 1 !important;
}

body.light-theme .page-header .page-subtitle a {
  color: var(--navy) !important;
  text-decoration: underline !important;
  font-weight: 700;
}

body.light-theme .faq-updated {
  margin-top: 15px;
  display: block;
}

body.light-theme .feature-detail.alt {
  background-color: #f8f8f8;
}

body.light-theme .showcase-item,
body.light-theme .overview-card,
body.light-theme .intro-card,
body.light-theme .feature-card,
body.light-theme .how-to-box,
body.light-theme .about-main-card,
body.light-theme .price-box,
body.light-theme .hero-translate-wrapper {
  background-color: #ffffff;
  border: 1px solid #d5d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #0f1111;
}

body.light-theme .hero-translate-wrapper .translate-label {
  color: #0f1111;
}

body.light-theme .goog-te-combo {
  background-color: #ffffff !important; /* Fixes OS native dropdown white-on-white text */
  color: #0f1111 !important;
  border-color: #565959 !important;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230f1111%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
}

body.light-theme .goog-te-combo:hover {
  border-color: #0f1111 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .goog-te-combo option {
  background-color: #ffffff !important;
  color: #0f1111 !important;
}

body.light-theme .price-box .price-detail {
  color: #565959;
}

body.light-theme .price-box .benefits-list li {
  border-bottom-color: #d5d9d9;
}

body.light-theme .about-story p,
body.light-theme .mission-section p,
body.light-theme .story-list li,
body.light-theme .about-main-card .quote {
  color: #565959;
}

body.light-theme .about-main-card .author {
  color: #0f1111;
}
body.light-theme .showcase-item:hover,
body.light-theme .intro-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.light-theme .feature-detail h3,
body.light-theme .features-overview h2,
body.light-theme .pricing h2,
body.light-theme .about-story h2,
body.light-theme .mission-section h2,
body.light-theme .values-section h2,
body.light-theme .cta-section h2 {
  color: var(--navy);
}

body.light-theme .section-intro,
body.light-theme .feature-intro {
  background: none;
  -webkit-text-fill-color: #001f3f;
  color: #001f3f;
  text-shadow: none;
  filter: none;
}

body.light-theme .feature-number {
  background-color: var(--navy);
  color: #ffffff;
}

body.light-theme .how-to-box {
  border-left-color: var(--navy);
}

/* Light Theme Sticky Cart Bar */
body.light-theme .sticky-cart-bar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #d5d9d9;
}

body.light-theme .sticky-product-details h3 {
  color: #0f1111;
}

body.light-theme .sticky-cart-close {
  color: #565959;
}

body.light-theme .sticky-cart-close:hover {
  color: var(--crimson-red);
}

body.light-theme .sticky-product-thumb {
  border-color: #d5d9d9;
}

body.light-theme .sticky-quantity input {
  background-color: #ffffff;
  color: #0f1111;
  border-color: #d5d9d9;
}

body.light-theme .sticky-quantity button {
  background-color: #f0f2f2;
  color: #0f1111;
  border-color: #d5d9d9;
}

body.light-theme .sticky-quantity button:hover {
  background-color: #e3e6e6;
}

body.light-theme .sticky-color-select {
  background-color: #ffffff;
  color: #0f1111;
  border-color: #d5d9d9;
}

/* Light Theme How-To Guides */
body.light-theme .guide-card {
  background-color: #ffffff;
  border: 1px solid #d5d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #0f1111;
}

body.light-theme .guide-card h2 {
  color: var(--navy);
}

body.light-theme .guide-intro {
  color: #565959;
}

body.light-theme .guide-number {
  background-color: var(--navy);
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
}

body.light-theme .step {
  border-left: 4px solid var(--navy);
  padding-left: 15px;
  margin-bottom: 20px;
}

body.light-theme .step-number {
  color: var(--navy);
  font-weight: bold;
  margin-bottom: 5px;
}

body.light-theme .pro-tip {
  background-color: #f0f2f2;
  border-left: 4px solid var(--navy);
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  color: #0f1111;
}

body.light-theme .pro-tip strong {
  color: var(--navy);
}

/* Light Theme Cart & Product Gallery */
body.light-theme .cart-item,
body.light-theme .cart-summary,
body.light-theme .product-image-gallery {
  background-color: #ffffff;
  border: 1px solid #d5d9d9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

body.light-theme .main-product-image {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

body.light-theme .cart-items h2,
body.light-theme .cart-summary h2 {
  color: var(--navy);
}

body.light-theme .item-details h3 {
  color: var(--navy);
}

body.light-theme .item-price,
body.light-theme .item-total p {
  color: #0f1111;
}

body.light-theme .item-total {
  color: var(--navy);
}

body.light-theme .summary-row span,
body.light-theme #cartEmpty p {
  color: #0f1111;
}

body.light-theme #cartEmpty h2 {
  color: var(--navy);
}

body.light-theme .summary-row.total span {
  color: var(--navy);
}

body.light-theme .qty-btn {
  background-color: #f0f2f2;
  color: #0f1111;
  border-color: #d5d9d9;
}

body.light-theme .qty-btn:hover {
  background-color: #e3e6e6;
  color: #0f1111;
}

body.light-theme .qty-display {
  color: #0f1111;
}

body.light-theme .remove-btn-icon {
  color: #565959;
}

body.light-theme .remove-btn-icon:hover {
  color: var(--crimson-red);
}

body.light-theme .promo-text {
  color: #0f1111;
}
body.light-theme .promo-subtitle,
body.light-theme .promo-description {
  color: #565959;
}

/* Footer Adjustments */
body.light-theme footer {
  background-color: #232f3e;
  color: #ffffff;
}
body.light-theme footer p,
body.light-theme footer a,
body.light-theme footer a:visited,
body.light-theme footer li,
body.light-theme .footer-section ul li a,
body.light-theme .footer-section ul li a:visited {
  color: #ddd;
}
body.light-theme footer h3,
body.light-theme footer h4 {
  color: #fff;
}

/* FAQ Page Light Theme Overrides */
body.light-theme .faq-section {
  background-color: #f4f6f8;
}
body.light-theme .faq-item {
  background-color: #ffffff;
  border-color: #d5d9d9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
body.light-theme .faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
body.light-theme .faq-updated {
  color: #565959;
}
body.light-theme .faq-question {
  color: var(--navy);
  border-bottom: 1px solid #eaeded;
  background-color: #ffffff;
}
body.light-theme .faq-question:hover {
  background-color: rgba(255, 153, 0, 0.05);
}
body.light-theme .faq-answer {
  background-color: #ffffff;
}
body.light-theme .faq-answer p {
  color: #565959;
}
body.light-theme .faq-cta {
  background-color: #ffffff;
  color: #0f1111;
  border: 1px solid #d5d9d9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
body.light-theme .faq-cta h2 {
  color: var(--navy) !important;
}
body.light-theme .faq-cta p {
  color: #565959 !important;
}

/* Contact Page Light Theme Overrides */
body.light-theme .contact-info h2,
body.light-theme .contact-info h3 {
  color: var(--navy);
}
body.light-theme .contact-info p,
body.light-theme .contact-info a {
  color: #565959;
}
body.light-theme .contact-form-container {
  background-color: #ffffff;
  border: 1px solid #d5d9d9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
body.light-theme .form-group label {
  color: #0f1111;
}
body.light-theme .form-group input,
body.light-theme .form-group textarea,
body.light-theme .form-group select {
  background-color: #ffffff;
  color: #0f1111;
  border: 1px solid #d5d9d9;
}
body.light-theme .form-group input:focus,
body.light-theme .form-group textarea:focus,
body.light-theme .form-group select:focus {
  border-color: #ff9900;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

/* Testimonials Light Theme Overrides */
body.light-theme .testimonial-card {
  background-color: #ffffff;
  border: 1px solid #d5d9d9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
body.light-theme .testimonial-card .quote {
  color: #0f1111;
}
body.light-theme .testimonial-card .author {
  color: #565959;
}
body.light-theme .testimonials-cta {
  background-color: #f4f6f8;
  color: #0f1111;
}

/* Legal & Policy Pages Light Theme Overrides */
body.light-theme .legal-content {
  background-color: #f4f6f8;
}
body.light-theme .legal-text {
  background-color: #ffffff;
  border: 1px solid #d5d9d9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
body.light-theme .legal-text h2 {
  color: var(--navy);
  border-top-color: #eaeded;
}
body.light-theme .legal-text p,
body.light-theme .legal-text li {
  color: #565959;
}
body.light-theme .legal-text strong {
  color: #0f1111;
}

/* Product Detail Specifics Light Theme Overrides */
body.light-theme .product-description {
  color: #565959;
}
body.light-theme .product-features-list li {
  color: #0f1111;
}
body.light-theme .trust-badge {
  background-color: #f0f2f2;
  border: 1px solid #d5d9d9;
}
body.light-theme .badge-icon {
  color: #ffffff !important; /* Force white in light theme */
  filter: drop-shadow(0 0 6px rgba(0, 31, 63, 0.5));
}
body.light-theme .trust-badge {
  background: linear-gradient(
    135deg,
    rgba(0, 31, 63, 0.85) 0%,
    rgba(0, 15, 40, 0.92) 100%
  ) !important;
  border-color: rgba(255, 215, 0, 0.3);
}
body.light-theme .badge-text {
  color: #ffffff !important;
}

/* Game Interface Light Theme Overrides */
body.light-theme .game-container {
  background-color: #f4f6f8;
}

/* Form Success/Error Notifications */
body.light-theme .form-message.success {
  background-color: #e7f4e4;
  color: #067d62;
  border: 1px solid #067d62;
}
body.light-theme .form-message.error {
  background-color: #fdf0f1;
  color: #ba0933;
  border: 1px solid #ba0933;
}
