/*
 * VENTUS Design System v3.0
 * tiendaventus.com
 *
 * Source of truth: BRAND.md (Canva Brand Kit)
 *
 * Colors:
 *   Blue:    #0b3e5d  (primary brand — Canva canonical)
 *   BlueMid: #2d5289  (hover — Canva canonical)
 *   Black:   #000000  (text alt)
 *   White:   #ffffff  (backgrounds, inverted text)
 *   Cream:   #f4ede5  (alternate backgrounds — Canva canonical)
 *   Orange:  #e67e22  (accent/bundle)
 *   Green:   #059669  (success)
 *   Purple:  #7c3aed  (premium)
 *
 * Typography: Montserrat 300-800
 * Spacing:    8px base grid
 */

/* ── Skip Link (a11y) ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: #0b3e5d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ── Base ─────────────────────────────────────────── */
* { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Brand Utilities ──────────────────────────────── */
.ventus-blue      { color: #0b3e5d; }
.bg-ventus        { background-color: #0b3e5d; }
.bg-ventus-dark   { background-color: #051a2a; }
.bg-ventus-cream  { background-color: #f4ede5; }
.border-ventus    { border-color: #0b3e5d; }

.btn-ventus {
  background-color: #0b3e5d;
  color: white;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-ventus:hover {
  background-color: #2d5289;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(11, 62, 93, 0.25);
}
.btn-ventus:active { transform: translateY(0); }
.btn-ventus:disabled { opacity: 0.7; cursor: wait; transform: none; }

.btn-orange {
  background-color: #e67e22;
  color: white;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-orange:hover {
  background-color: #d35400;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.25);
}
.btn-orange:active { transform: translateY(0); }
.btn-orange:disabled { opacity: 0.7; cursor: wait; transform: none; }

/* ── Hero (static fallback — overridden by animated version below) ── */

/* ── Cards ────────────────────────────────────────── */
.card-product {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}
.card-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ── Scroll Animations ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: show content if JS hasn't loaded after 3s */
@keyframes fadeUpFallback {
  to { opacity: 1; transform: none; }
}
.fade-up {
  animation: fadeUpFallback 0s 3s forwards;
}
.fade-up.visible {
  animation: none;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .animate-float { animation: none; }
  .img-zoom-container:hover .img-zoom { transform: none; }
  .card-product:hover { transform: none; }
  .btn-ventus:hover, .btn-orange:hover { transform: none; }
}

/* ── Float Animation ──────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* ── Image Zoom ───────────────────────────────────── */
.img-zoom-container { overflow: hidden; }
.img-zoom { transition: transform 0.5s ease; }
.img-zoom-container:hover .img-zoom { transform: scale(1.08); }

/* ── FAQ Accordion ────────────────────────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-chevron {
  transition: transform 0.3s ease;
}
.faq-chevron.open { transform: rotate(180deg); }

/* ── Focus States (WCAG 2.1 AA) ──────────────────── */
:focus-visible {
  outline: 2px solid #0b3e5d;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Nav Logo ─────────────────────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  transition: filter 0.3s ease;
}
.nav-logo-img.nav-logo-white {
  filter: brightness(0) invert(1);
}

/* ── Nav scroll state ─────────────────────────────── */
.nav-scrolled {
  background-color: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid #e2e8f0;
}
.nav-scrolled .nav-logo { color: #0b3e5d !important; }
.nav-scrolled .nav-link { color: #475569 !important; }
.nav-scrolled .nav-link:hover { color: #0f172a !important; }

/* ── Sticky CTA ───────────────────────────────────── */
.sticky-cta-hidden { transform: translateY(100%); }
.sticky-cta-visible { transform: translateY(0); }

/* ── Checkout Modal ───────────────────────────────── */
.checkout-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: background 0.3s ease;
  overflow-y: auto;
}
.checkout-backdrop.active {
  background: rgba(0, 0, 0, 0.6);
}

.checkout-card {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 16px 16px 0 0;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.checkout-backdrop.active .checkout-card {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .checkout-backdrop {
    align-items: center;
    padding: 24px;
  }
  .checkout-card {
    border-radius: 16px;
    max-height: 90vh;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .checkout-backdrop.active .checkout-card {
    transform: translateY(0);
    opacity: 1;
  }
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.checkout-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.checkout-subtitle {
  font-size: 14px;
  color: #0b3e5d;
  font-weight: 500;
  margin: 4px 0 0;
}
.checkout-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.checkout-close:hover { color: #0f172a; }

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkout-full { grid-column: 1 / -1; }

.checkout-field { display: flex; flex-direction: column; gap: 4px; }

.checkout-label {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}
.checkout-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.checkout-input:focus {
  outline: none;
  border-color: #0b3e5d;
  box-shadow: 0 0 0 3px rgba(11, 62, 93, 0.1);
  background: #ffffff;
}
.checkout-input::placeholder { color: #cbd5e1; }
select.checkout-input { cursor: pointer; }

.checkout-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #0b3e5d;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.checkout-btn:hover { background: #2d5289; }
.checkout-btn:active { transform: scale(0.98); }
.checkout-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.checkout-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #475569;
  padding: 4px 0;
}
.checkout-summary-total {
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  border-top: 1px solid #e2e8f0;
  margin-top: 6px;
  padding-top: 8px;
}

.checkout-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

/* ── Hero Animated Gradient ──────────────────────── */
@keyframes heroShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-gradient {
  background: linear-gradient(160deg, #051a2a 0%, #0b3e5d 30%, #1a5276 50%, #0b3e5d 70%, #051a2a 100%);
  background-size: 300% 300%;
  animation: heroShift 18s ease-in-out infinite;
}

/* ── WhatsApp Float Button ──────────────────────── */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: none;
}

/* ── Sticky Mobile CTA ──────────────────────────── */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-mobile-cta.visible {
  transform: translateY(0);
}

/* ── "Cómo funciona" Steps ──────────────────────── */
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0b3e5d 0%, transparent 100%);
  opacity: 0.15;
}

/* ── Testimonial Avatars ────────────────────────── */
.avatar-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

/* ── Product Info Tabs ───────────────────────────── */
.product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
}
.product-tab {
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}
.product-tab:hover { color: #475569; }
.product-tab.active {
  color: #0b3e5d;
  border-bottom-color: #0b3e5d;
}
.product-tab-content { display: none; }
.product-tab-content.active { display: block; }

/* ── Stat Counter ───────────────────────────────── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.stat-animated {
  animation: countUp 0.6s ease forwards;
}

/* ── Exit Intent Popup ────────────────────────────── */
.exit-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: background 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.exit-popup-backdrop.active {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  pointer-events: auto;
}
.exit-popup {
  background: #ffffff;
  max-width: 420px;
  width: 100%;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  position: relative;
}
.exit-popup-backdrop.active .exit-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.exit-popup-close:hover { color: #0f172a; }

/* ── Announcement Bar ────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #0b3e5d 0%, #1a5276 100%);
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

/* ── Video in Product Gallery ───────────────────── */
.gallery-video-thumb {
  position: relative;
  cursor: pointer;
}
.gallery-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: inherit;
  transition: background 0.2s ease;
}
.gallery-video-thumb:hover::after {
  background: rgba(0, 0, 0, 0.08);
}
.gallery-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 24px;
  height: 24px;
  color: white;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
.gallery-video-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: #000;
}

/* ── UGC Video Section ─────────────────────────── */
.ugc-phone-frame {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  cursor: pointer;
}
.ugc-phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ugc-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}
.ugc-phone-frame.playing .ugc-play-overlay {
  opacity: 0;
  pointer-events: none;
}
.ugc-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.ugc-play-btn:hover {
  transform: scale(1.08);
}
.ugc-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 12px;
  color: white;
  font-size: 12px;
  z-index: 2;
}

/* ── UGC Scroll Container ──────────────────────── */
.ugc-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.ugc-scroll::-webkit-scrollbar { display: none; }
.ugc-scroll > * { scroll-snap-align: center; flex-shrink: 0; }

/* ── Shipping Banner ─────────────────────────────── */
.shipping-banner {
  background: linear-gradient(90deg, #059669 0%, #10b981 100%);
  color: white;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

/* ── Timer Pulse (checkout promo) ────────────────── */
@keyframes timerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.timer-pulse {
  animation: timerPulse 2s ease-in-out infinite;
}

/* ── Article Body Typography ─────────────────────── */
.article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 2.5em 0 0.75em;
  line-height: 1.3;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin: 2em 0 0.5em;
  line-height: 1.4;
}
.article-body p {
  margin: 0 0 1.25em;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}
.article-body li {
  margin-bottom: 0.5em;
}
.article-body ul li { list-style-type: disc; }
.article-body ol li { list-style-type: decimal; }
.article-body a {
  color: #0b3e5d;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover { color: #2d5289; }
.article-body figure {
  margin: 2em 0;
}
.article-body figcaption {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
  text-align: center;
}
.article-body img {
  border-radius: 12px;
  width: 100%;
}
.article-body blockquote {
  border-left: 3px solid #0b3e5d;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
}
.article-body blockquote p { margin-bottom: 0.5em; }
.article-body blockquote p:last-child { margin-bottom: 0; }

/* ── Scientific Citation Block ──────────────────── */
.article-citation {
  border-left: 3px solid #0b3e5d;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: #f1f5f9;
  border-radius: 0 8px 8px 0;
}
.article-citation p {
  font-style: italic;
  color: #334155;
  margin-bottom: 0.5em;
  font-size: 15px;
}
.article-citation cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #64748b;
}
.article-citation cite a {
  color: #0b3e5d;
  font-weight: 500;
}

/* ── lite-youtube-embed overrides ────────────────── */
lite-youtube {
  border-radius: 12px;
  overflow: hidden;
}

/* ── Line clamp utility ─────────────────────────── */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Selection ────────────────────────────────────── */
::selection {
  background-color: #d4e6f1;
  color: #0b3e5d;
}

/* ── Before/After Grid ────────────────────────────── */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 639px) {
  .before-after-grid { grid-template-columns: 1fr; }
}
.before-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 16px;
  padding: 1.5rem;
}
.before-card .before-label {
  color: #dc2626;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.after-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 1.5rem;
}
.after-card .after-label {
  color: #16a34a;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.before-card li, .after-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.375rem 0;
}

/* ── Objection Card ───────────────────────────────── */
.objection-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s ease;
}
.objection-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.objection-card .objection-q {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1f2937;
  margin-bottom: 0.375rem;
}
.objection-card .objection-a {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ── Social Proof Toast ───────────────────────────── */
.social-proof-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 45;
  max-width: 320px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.social-proof-toast.visible {
  transform: translateX(0);
  opacity: 1;
}
.social-proof-toast .toast-name {
  font-weight: 600;
  font-size: 0.8125rem;
  color: #1f2937;
}
.social-proof-toast .toast-detail {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}
@media (max-width: 639px) {
  .social-proof-toast {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
    bottom: 5rem;
  }
}

/* ── Price Per Night ──────────────────────────────── */
.price-per-night {
  color: #16a34a;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ── Product Hero Card (homepage) ─────────────────── */
.product-hero-card {
  border: 2px solid #0b3e5d;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 62, 93, 0.15);
}
.product-hero-card .bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0b3e5d;
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  z-index: 5;
  letter-spacing: 0.05em;
}

/* ── Inline Bundle Upsell (below CTA) ─────────────── */
.inline-bundle-upsell {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.inline-bundle-upsell:hover {
  border-color: #fb923c;
  box-shadow: 0 2px 8px rgba(251, 146, 60, 0.15);
}

/* ── Final CTA Section ────────────────────────────── */
.final-cta-section {
  background: linear-gradient(135deg, #0b3e5d 0%, #164e77 100%);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}
.final-cta-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.final-cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.final-cta-section .btn-final {
  background: white;
  color: #0b3e5d;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.final-cta-section .btn-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 639px) {
  .final-cta-section { padding: 2rem 1.25rem; }
  .final-cta-section h2 { font-size: 1.375rem; }
}

/* ── FAQ Accordion ────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
}
.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #9ca3af;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding-bottom: 1.125rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
