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

:root {
  --primary: #0066cc;
  --primary-light: #e0f0ff;
  --primary-dark: #004499;
  --secondary: #3b82f6;
  --accent: #22c55e;
  --accent-light: #dcfce7;
  --warning: #f59e0b;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --bg-main: #ffffff;
  --bg-soft: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 25px rgba(0, 102, 204, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  z-index: 10000;
}

/* Urgency Top Banner */
.urgency-banner {
  background: linear-gradient(135deg, var(--danger), #b91c1c);
  color: #white;
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.urgency-banner span {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(224, 240, 255, 0.4) 0%, rgba(255, 255, 255, 0) 80%);
  padding: 100px 0 80px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

@media (max-width: 992px) {
  .hero-subtitle {
    margin: 0 auto 32px;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 576px) {
  .hero-features {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto 32px;
  }
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  width: auto;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 102, 204, 0.4);
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.hero-mockup {
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

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

/* Trust Badges */
.trust-badges {
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.badge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.badge-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.badge-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

/* What's Included */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
}

.included-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.included-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.included-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.included-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.included-desc {
  font-size: 14px;
  color: var(--text-muted);
  flex-grow: 1;
}

.included-card.highlight {
  background: linear-gradient(135deg, var(--primary-light), #f0f7ff);
  border-color: var(--primary-light);
}

/* Product Demo Section */
.demo-section {
  background-color: var(--bg-soft);
}

.demo-video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.demo-thumbnail-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.demo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 24px;
  color: var(--primary);
  z-index: 2;
  cursor: pointer;
}

.demo-thumbnail-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.demo-thumbnail-container:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.demo-thumbnail-container:hover .demo-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  max-height: 80vh;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  background-color: var(--bg-soft);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 4px;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.gallery-zoom-icon {
  width: 36px;
  height: 36px;
  background: white;
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Lightbox Image View */
.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 4px solid white;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--bg-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.benefit-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  font-size: 36px;
  margin: 12px 0 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
  }
  
  .testimonial-card {
    min-width: 290px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}

.testimonial-rating {
  color: var(--warning);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--text-muted);
  font-size: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary-light);
  color: var(--primary);
}

.faq-item.active .faq-content {
  padding-bottom: 24px;
  max-height: 300px; /* arbitrary height to slide down */
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-soft);
}

.pricing-card {
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 32px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .pricing-card {
    padding: 32px 20px;
  }
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -50px;
  background-color: var(--danger);
  color: white;
  padding: 6px 50px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.price-regular {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-offer {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
}

.price-discount {
  background-color: var(--danger-light);
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Countdown Timer */
.countdown-container {
  background-color: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 28px;
  text-align: center;
}

.countdown-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.timer-segment {
  display: flex;
  flex-direction: column;
}

.timer-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}

.timer-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 12px;
}

.pricing-feature-item .check {
  color: var(--accent);
  font-weight: 700;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  font-weight: 500;
}

/* Checkout Section */
.checkout-section {
  background: white;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.checkout-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

@media (max-width: 576px) {
  .checkout-card {
    padding: 24px 16px;
  }
}

.checkout-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-summary-card {
  border: 1px dashed var(--border);
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 12px;
}

.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
  color: var(--primary);
}

/* WooCommerce Form Overrides */
.checkout-card form.checkout {
  width: 100%;
}

.checkout-card form .form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.checkout-card form label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-main);
}

.checkout-card form input[type="text"],
.checkout-card form input[type="tel"],
.checkout-card form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background-color: white;
  transition: var(--transition);
}

.checkout-card form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Custom WooCommerce submit button styling */
.checkout-card form button.button#place_order,
.checkout-card form #place_order {
  width: 100% !important;
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: white !important;
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  padding: 16px 32px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2) !important;
  transition: var(--transition) !important;
  margin-top: 16px !important;
}

.checkout-card form button.button#place_order:hover,
.checkout-card form #place_order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 102, 204, 0.3) !important;
}

.checkout-payment-badges {
  margin-top: 24px;
  text-align: center;
}

.payment-badge-img {
  max-width: 240px;
  margin: 0 auto 12px;
}

.payment-badge-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background-color: #25d366;
}

.floating-messenger {
  background-color: #0084ff;
}

/* Mobile Sticky CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  z-index: 9997;
  display: none;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .sticky-mobile-cta.visible {
    display: flex;
  }
}

.sticky-cta-price {
  display: flex;
  flex-direction: column;
}

.sticky-cta-price-amount {
  font-size: 20px;
  font-weight: 800;
}

.sticky-cta-price-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.sticky-cta-btn {
  background: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

/* Exit Intent Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

.exit-popup-emoji {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.exit-popup-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.exit-popup-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.exit-popup-coupon {
  border: 2px dashed var(--danger);
  background-color: var(--danger-light);
  color: var(--danger);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  padding: 10px 24px;
}

/* Footer */
.footer {
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
