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

/* Design System & Variables */
:root {
  --font-family: 'Outfit', sans-serif;
  
  /* Color Palette */
  --primary: #E26464; /* Coral Red */
  --primary-hover: #cd5555;
  --primary-light: #FCEEEE; /* Soft Pinkish Red background */
  --secondary: #E26464;
  
  --dark-navy: #141D23; /* Dark Premium Text */
  --slate-800: #1f2a33;
  --slate-700: #2d3c48;
  --slate-100: #eef2f5;
  --light-bg: #F7F8FA; /* Soft Light Gray */
  --text-dark: #141D23;
  --text-muted: #5e6f7c;
  --text-light: #ffffff;
  --accent-red: #E26464;
  --accent-amber: #f59e0b;
  --border-color: #e5e9ed;
  
  /* Layout & Spacing */
  --max-width: 800px; /* Reduced for compact single-column feel */
  --header-height: 45px;
  
  /* Shadow & Blur */
  --shadow-sm: 0 1px 3px rgba(20, 29, 35, 0.05);
  --shadow-md: 0 4px 12px rgba(20, 29, 35, 0.08);
  --shadow-lg: 0 8px 24px rgba(20, 29, 35, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-blur: blur(8px);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button, input, select, textarea {
  outline: none;
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-navy);
}

h1 {
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

h2 span {
  color: var(--primary);
}

p {
  color: var(--text-muted);
}

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

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

/* Star Rating component (SVG based) */
.star-rating-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 8px 0 15px 0;
}

.stars-visual {
  display: flex;
  gap: 2px;
  color: var(--accent-amber);
}

.stars-visual svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(226, 100, 100, 0.6); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(226, 100, 100, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(226, 100, 100, 0); }
}

.pulse-btn {
  animation: pulse 2s infinite;
}

/* Header Banner - Voltix Style Image 1 */
.top-header-banner {
  background-color: #0c1217; /* Dark charcoal header background */
  color: var(--text-light);
  padding: 10px 0;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.header-banner-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
}

.header-banner-item svg {
  color: var(--primary); /* Coral Red for icons */
  width: 14px;
  height: 14px;
}

/* Hero Section - Optimized for first view on iPhone */
.hero-compact {
  padding: 20px 0 35px 0;
  background-color: #ffffff;
}

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

.hero-title-main {
  margin-bottom: 8px;
  color: var(--dark-navy);
  font-size: 1.8rem;
  padding: 0 5px;
}

.hero-product-image-container {
  width: 100%;
  max-width: 320px;
  margin: 10px auto;
  position: relative;
}

.hero-product-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.hero-price-badge-top {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero-price-badge-top span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-primary-action {
  width: 100%;
  max-width: 380px;
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 14px 24px;
  border-radius: 50px; /* Fully rounded buttons like image 2 */
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-bottom: 12px;
}

.btn-primary-action:hover {
  background-color: var(--primary-hover);
}

.hero-short-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.4;
  margin: 4px 0 16px 0;
  padding: 0 10px;
}

.hero-bullets-compact {
  width: 100%;
  max-width: 380px;
  text-align: left;
  list-style: none;
  margin-bottom: 20px;
  background-color: var(--light-bg);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.hero-bullets-compact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-800);
}

.hero-bullets-compact li:last-child {
  margin-bottom: 0;
}

.hero-bullets-compact svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-secondary-action {
  width: 100%;
  max-width: 380px;
  background-color: transparent;
  color: var(--dark-navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-secondary-action:hover {
  background-color: var(--light-bg);
}

/* Sections Configuration */
section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
}

.section-light-gray {
  background-color: var(--light-bg);
}

.section-pink-soft {
  background-color: var(--primary-light);
}

.section-white-bg {
  background-color: #ffffff;
}

.section-title-wrapper {
  margin-bottom: 25px;
}

.section-desc-center {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: -8px auto 0 auto;
}

/* Benefits (Por qué es tan efectivo) - Compact styling */
.benefits-compact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-compact-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.benefit-compact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-compact-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-compact-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--dark-navy);
}

.benefit-compact-info p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* How It Works (3 simples pasos) */
.how-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-step-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.how-step-number {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.how-step-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--dark-navy);
}

.how-step-info p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Problem section (El peligro de los métodos comunes) */
.danger-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.danger-box {
  background-color: #fff5f5;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 24px;
}

.danger-box h3 {
  color: #c53030;
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.danger-box h3 svg {
  width: 18px;
  height: 18px;
}

.danger-list {
  list-style: none;
}

.danger-list li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #742a2a;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.danger-list li svg {
  color: #ef4444;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.danger-list li:last-child {
  margin-bottom: 0;
}

/* Bundles Grid (Elige tu paquete) - 3 cards max */
.offer-cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.pack-card {
  background-color: #ffffff;
  border: 2px solid #141D23;
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pack-card:hover {
  border-color: rgba(226, 100, 100, 0.4);
}

.pack-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.pack-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pack-checkbox {
  display: none !important;
}

.pack-checkbox::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition);
}

.pack-card.selected .pack-checkbox {
  border-color: var(--primary);
}

.pack-card.selected .pack-checkbox::after {
  transform: scale(1);
}

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

.pack-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.pack-subinfo {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.pack-savings {
  display: inline-block;
  background-color: #fee2e2;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.pack-price-section {
  text-align: right;
  flex-shrink: 0;
}

.pack-original-price {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pack-current-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #141D23;
  line-height: 1;
}

.pack-card.selected .pack-current-price {
  color: var(--primary);
}

.pack-unit-price {
  font-size: 0.72rem;
  color: var(--slate-700);
  font-weight: 600;
  margin-top: 2px;
}

/* Testimonials */
.testimonials-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card-compact {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  font-size: 0.85rem;
  color: var(--slate-700);
  font-style: italic;
  margin: 8px 0 12px 0;
  line-height: 1.4;
}

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

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

.author-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.author-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Guarantee Box */
.guarantee-box-compact {
  background-color: var(--dark-navy);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.guarantee-seal-svg {
  color: var(--primary);
  width: 60px;
  height: 60px;
}

.guarantee-box-compact h3 {
  color: var(--text-light);
  font-size: 1.25rem;
}

.guarantee-box-compact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* FAQs */
.faq-compact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-header {
  width: 100%;
  padding: 14px 18px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.faq-icon {
  color: var(--primary);
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
  background-color: var(--light-bg);
}

.faq-answer {
  padding: 12px 18px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
  border-top: 1px solid var(--border-color);
}

/* Checkout Form Layout (checkout.html) */
.checkout-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

.checkout-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.checkout-card-title {
  font-size: 1.2rem;
  color: var(--dark-navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--light-bg);
  padding-bottom: 10px;
}

.checkout-card-title svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--slate-700);
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}

.form-control {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--light-bg);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(226, 100, 100, 0.12);
}

.select-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235e6f7c' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Order Summary Box in checkout */
.checkout-summary-box {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.checkout-summary-row.total {
  border-top: 1.5px dashed var(--border-color);
  padding-top: 10px;
  margin-top: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}

.payment-method-box {
  background-color: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.payment-method-box svg {
  color: var(--primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.payment-method-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #742a2a;
}

.payment-method-desc {
  font-size: 0.78rem;
  color: #742a2a;
  margin-top: 2px;
}

/* Bottom Sticky Buy Bar - Mobile optimization */
.bottom-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--glass-bg);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(20, 29, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 998;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-sticky-bar.visible {
  transform: translateY(0);
}

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

.sticky-bar-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sticky-bar-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.btn-sticky-buy {
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(226, 100, 100, 0.3);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 70px; /* Offset to stay above the sticky bottom bar */
  right: 16px;
  width: 52px;
  height: 52px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 997;
  transition: var(--transition);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 80px;
  left: 16px;
  right: 16px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 996;
  transform: translateY(200%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.active {
  transform: translateY(0);
}

.toast-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.toast-body {
  font-size: 0.74rem;
  line-height: 1.35;
}

.toast-title {
  font-weight: 700;
  color: var(--dark-navy);
}

.toast-desc {
  color: var(--text-muted);
}

.toast-time {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 600;
}

/* Success Modal Overlay */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 29, 35, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-modal {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  max-width: 420px;
  width: 92%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-overlay.active .success-modal {
  transform: scale(1);
}

.success-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 3px solid rgba(226, 100, 100, 0.1);
}

.success-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.success-modal h3 {
  font-size: 1.4rem;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.success-modal p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.success-details {
  background-color: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  border: 1px solid var(--border-color);
  text-align: left;
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.success-detail-row:last-child {
  margin-bottom: 0;
}

.success-detail-label {
  font-weight: 600;
  color: var(--text-muted);
}

.success-detail-value {
  font-weight: 700;
  color: var(--dark-navy);
}

.btn-close-modal {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 10px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}

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

/* Footer style */
footer {
  background-color: var(--dark-navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 30px 0 20px 0;
  font-size: 0.78rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

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

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

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

/* Responsive Grid and iPhone optimizations */
@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
  .checkout-page-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .danger-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.pack-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  flex-shrink: 0;
}

.logo-card-hero {
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 15px;
  margin: 5px auto 12px auto;
  max-width: 200px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.logo-img-hero {
  height: 28px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.danger-solution-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 15px;
}

.solution-box-theme {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.solution-box-theme h3 {
  color: var(--dark-navy);
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-box-theme h3 svg {
  width: 20px;
  height: 20px;
  color: #22c55e; /* Green check shield */
}

.solution-list-theme {
  list-style: none;
}

.solution-list-theme li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--dark-navy);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
}

.solution-list-theme li svg {
  color: #22c55e; /* Green ticks */
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.solution-list-theme li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .danger-solution-comparison {
    grid-template-columns: 1fr 1fr;
  }
}
