/* KiXX Square Brand Colors */
:root {
  --crimson-red: #dc143c;
  --royal-blue: #4169e1;
  --gold: #ffd700;
  --dark-gray: #2c3e50;
  --light-gray: #ecf0f1;
  --white: #ffffff;
  --light-blue: #5dade2;
}

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

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

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

/* Header Styles */
header {
  background-color: rgba(
    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: 25px;
}

.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);
}

/* 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: var(--crimson-red);
  color: var(--white);
  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: #b01030;
  transform: translateY(-2px);
}

/* 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: var(--crimson-red);
  color: var(--white);
  border-color: var(--crimson-red);
}

.btn-primary:hover {
  background-color: #b01030;
  border-color: #b01030;
  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;
  height: calc(50vh + 12.7px);
  overflow: hidden;
}

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

.intro-text-block {
  background-color: var(--dark-gray);
  padding: 60px 0;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--gold);
  min-height: 1.2em; /* Reserve space for typing */
}

/* 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.5rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-button-large {
  background-color: var(--crimson-red);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  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);
}

.cta-button-large:hover {
  background-color: #b01030;
  /* transform: translateY(-3px); Removed for magnetic effect */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

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

.cta-button-large.pulse {
  animation: pulse-gold 2s infinite;
}

.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) {
  .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;
  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;
  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 h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.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);
}

.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);
}

/* 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;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.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: var(--crimson-red);
  color: var(--white);
  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: #b01030;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-button {
  background-color: var(--crimson-red);
  color: var(--white);
  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: #b01030;
  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(--crimson-red);
  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: #b01030;
  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;
}

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

.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;
}

/* 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; /* Reduced padding */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

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

.footer-section h4 {
  margin-bottom: 15px;
  color: var(--gold);
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.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: -5px; /* Position below the 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: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  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(--white);
  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;
  }

  .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;
  }

  .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 {
    height: 40vh;
    min-height: 300px;
  }

  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 {
    min-width: 100%;
  }

  /* Fix for "More" button in mobile menu */
  .more-btn {
    width: 80%;
    display: block;
    margin: 0 auto;
    padding: 12px;
    font-size: 1.1rem;
  }

  /* 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;
}
*/

/* OPTION 3: ICON-FIRST PILLS (Modern & Eye-Catching) - CURRENTLY ACTIVE */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  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 */
  min-width: 100px;
}

.badge-icon {
  font-size: 24px;
  line-height: 1;
  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-color: var(--dark-gray);
  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 */
.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-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;
  }
}
