/* ==========================================================
   Landing page (bundle.php) + mobile chat button
   ========================================================== */

/* ---------- Mobile quick actions (chat + cart in header) ---------- */
.mobile-quick-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.mobile-quick-cart,
.mobile-quick-chat {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #1a1a2e, #0f1020);
  color: #ffe38a;
  border: 1px solid rgba(212,175,55,0.35);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.mobile-quick-chat {
  background: linear-gradient(180deg, #d4af37, #a8871e);
  color: #1a1a2e;
  border-color: #d4af37;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
}
.mobile-quick-chat:hover { transform: translateY(-1px); }
.mobile-quick-cart:hover { transform: translateY(-1px); background: #1f1f36; }
.mobile-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff4d6d;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 900px) {
  .mobile-quick-actions { display: inline-flex; }
  /* Push hamburger to the right of the quick actions */
  .site-header .nav-toggle { margin-left: 0.25rem; }
}
@media (min-width: 901px) {
  /* Desktop: hide mobile quick actions; header keeps its normal chat button */
  .mobile-quick-actions { display: none; }
}

/* ---------- Landing page shell ---------- */
.landing-wrap {
  background: linear-gradient(180deg, #fdfcf7 0%, #ffffff 45%, #fbf7ec 100%);
  min-height: 60vh;
}

.landing-urgency {
  background: linear-gradient(90deg, #d4af37, #f2c94c, #d4af37);
  color: #1a1a2e;
  font-weight: 700;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
  animation: landingPulse 2.4s ease-in-out infinite;
}
@keyframes landingPulse {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

.landing-page { padding-top: 1rem; padding-bottom: 6rem; }

/* ---------- Language switcher pill ---------- */
.landing-lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  background: #fff;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 999px;
  box-shadow: 0 6px 20px -10px rgba(20,20,50,0.25);
  margin: 1rem auto 0;
  position: relative;
  z-index: 5;
  /* center it under urgency banner */
}
.landing-wrap > .landing-lang-switch {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}
.landing-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border: 0;
  background: transparent;
  color: #4a4560;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  font-family: inherit;
}
.landing-lang-btn:hover { background: #fdf6df; color: #1a1a2e; }
.landing-lang-btn.is-active {
  background: linear-gradient(180deg, #d4af37, #a8871e);
  color: #1a1a2e;
  box-shadow: 0 4px 10px -4px rgba(212,175,55,0.6);
}
.landing-lang-flag { font-size: 1rem; line-height: 1; }
.landing-lang-label { line-height: 1; }
@media (max-width: 420px) {
  .landing-lang-btn { padding: 0.4rem 0.65rem; font-size: 0.78rem; }
  .landing-lang-flag { font-size: 0.9rem; }
}

/* Hide the Google Translate top banner + tooltip so it doesn't push content */
.goog-te-banner-frame.skiptranslate,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight { display: none !important; box-shadow: none !important; background: transparent !important; }
body { top: 0 !important; }

/* Reusable centered header text */
.overline.center,
.landing-h2 { text-align: center; }
.landing-h2 {
  font-family: 'Outfit', 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0.4rem auto 1.75rem;
  max-width: 720px;
  line-height: 1.2;
}

/* ---------- HERO ---------- */
.landing-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 1.25rem 0 2.5rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 18px;
  box-shadow: 0 20px 60px -30px rgba(20,20,50,0.25);
}
.landing-hero-media { display: flex; flex-direction: column; gap: 1rem; }
.landing-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  background: #f4f2ea;
  box-shadow: 0 12px 40px -18px rgba(0,0,0,0.35);
}
.landing-hero-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.landing-hero-video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.landing-hero-body { display: flex; flex-direction: column; gap: 0.85rem; }
.landing-hero-title {
  font-family: 'Outfit','Playfair Display',serif;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  color: #14142b;
  margin: 0.25rem 0 0.15rem;
}
.landing-hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #4a4560;
  font-weight: 500;
  margin: 0;
}
.landing-hero-short { color: #6b6580; margin: 0; }

.landing-price-box {
  margin-top: 0.5rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #fffdf5, #fdf6df);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 12px;
}
.landing-price {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0.15rem 0;
  line-height: 1;
}
.landing-price-sub { font-size: 0.85rem; color: #6b6580; margin: 0.15rem 0 0; }

.landing-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.landing-buy-btn {
  box-shadow: 0 12px 32px -14px rgba(212,175,55,0.75);
  animation: landingBuyPulse 2.2s ease-in-out infinite;
}
@keyframes landingBuyPulse {
  0%,100% { transform: translateY(0); box-shadow: 0 12px 32px -14px rgba(212,175,55,0.75); }
  50% { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(212,175,55,0.9); }
}

.landing-guarantee-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #f0fbf3;
  color: #1e6d3e;
  border: 1px solid #b3e4c1;
  font-size: 0.85rem;
  font-weight: 600;
}
.landing-trust-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.15rem;
  margin-top: 0.15rem; font-size: 0.85rem; color: #4a4560;
}
.landing-trust-row span { display: inline-flex; align-items: center; gap: 0.3rem; }

/* ---------- Sections common ---------- */
.landing-benefits,
.landing-included,
.landing-gallery-section,
.landing-bonuses,
.landing-testimonials,
.landing-features,
.landing-description,
.landing-howto,
.landing-faq,
.landing-final-cta,
.landing-extra {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(20,20,50,0.06);
  border-radius: 16px;
  box-shadow: 0 8px 30px -20px rgba(20,20,50,0.2);
}

/* ---------- Benefits grid ---------- */
.landing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.landing-benefit-card {
  padding: 1.15rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf7, #fbf5e3);
  border: 1px solid rgba(212,175,55,0.25);
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.landing-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -14px rgba(212,175,55,0.5);
}
.landing-benefit-icon { font-size: 2rem; line-height: 1; }
.landing-benefit-title {
  margin: 0.5rem 0 0.35rem;
  font-family: 'Outfit', serif;
  font-size: 1.05rem;
  color: #1a1a2e;
  font-weight: 700;
}
.landing-benefit-desc { margin: 0; color: #4a4560; font-size: 0.9rem; line-height: 1.5; }

/* ---------- Included list ---------- */
.landing-included-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.6rem 1.5rem;
}
.landing-included-list li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  padding: 0.35rem 0; color: #2a2740; font-size: 0.95rem;
}
.landing-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: #d4af37; color: #1a1a2e;
  font-weight: 800; font-size: 0.8rem;
}

/* ---------- Bonuses ---------- */
.landing-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.landing-bonus-card {
  position: relative;
  padding: 1.25rem 1rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff9e6, #fff2c2);
  border: 2px dashed #d4af37;
  text-align: center;
}
.landing-bonus-tag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: #1a1a2e; color: #ffe38a;
  padding: 0.2rem 0.8rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.landing-bonus-title { margin: 0.4rem 0 0.3rem; font-weight: 700; color: #1a1a2e; }
.landing-bonus-worth { margin: 0; font-size: 0.85rem; color: #6b6580; }
.landing-bonus-worth .mono { color: #a8871e; font-weight: 700; }

/* ---------- Testimonials ---------- */
.landing-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.landing-testimonial-card {
  padding: 1.15rem;
  border-radius: 12px;
  background: #faf9f4;
  border: 1px solid rgba(20,20,50,0.08);
  transition: transform 0.15s ease;
}
.landing-testimonial-card:hover { transform: translateY(-2px); }
.landing-testimonial-stars { color: #f2b800; margin: 0 0 0.4rem; font-size: 1.05rem; letter-spacing: 0.1em; }
.landing-testimonial-text { color: #2a2740; margin: 0 0 0.6rem; font-style: italic; line-height: 1.55; }
.landing-testimonial-name { color: #6b6580; margin: 0; font-weight: 600; font-size: 0.85rem; }

/* ---------- Description ---------- */
.landing-description-body {
  max-width: 780px; margin: 0 auto;
  color: #2a2740; line-height: 1.7; font-size: 1rem;
}

/* ---------- How to buy ---------- */
.landing-steps {
  list-style: none; padding: 0; margin: 0 auto; max-width: 720px;
  display: flex; flex-direction: column; gap: 0.75rem;
  counter-reset: none;
}
.landing-steps li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffdf5, #fbf5e0);
  border: 1px solid rgba(212,175,55,0.25);
  color: #2a2740;
  line-height: 1.5;
}
.landing-step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: #1a1a2e;
  color: #ffe38a;
  font-weight: 800;
  font-family: 'Outfit', serif;
  font-size: 1.05rem;
}

/* ---------- FAQ ---------- */
.landing-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.landing-faq-item {
  border: 1px solid rgba(20,20,50,0.1);
  border-radius: 12px;
  background: #faf9f4;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.landing-faq-item[open] {
  background: #fff;
  box-shadow: 0 8px 24px -14px rgba(20,20,50,0.25);
}
.landing-faq-q {
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: #1a1a2e;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none;
}
.landing-faq-q::-webkit-details-marker { display: none; }
.landing-faq-caret {
  transition: transform 0.2s ease;
  color: #a8871e;
  font-size: 1.05rem;
}
.landing-faq-item[open] .landing-faq-caret { transform: rotate(180deg); }
.landing-faq-a {
  padding: 0 1rem 1rem;
  color: #4a4560;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Final CTA ---------- */
.landing-final-cta {
  text-align: center;
  background: linear-gradient(180deg, #14142b, #1a1a3e);
  color: #fff;
  border: 1px solid rgba(212,175,55,0.35);
}
.landing-final-cta .landing-h2 { color: #ffe38a; }
.landing-final-title {
  font-family: 'Outfit', serif;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  color: #ffe38a;
  margin: 0 0 0.5rem;
}
.landing-final-sub { color: #d0cee0; max-width: 620px; margin: 0 auto 1rem; }
.landing-final-price {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: #ffe38a; font-weight: 800; margin: 0.5rem 0 1rem;
}
.landing-cta-final-row { max-width: 520px; margin: 0.5rem auto 0; }
.landing-guarantee-final { color: #b8f5cb; margin: 1rem 0 0; font-size: 0.9rem; }

/* ---------- Sticky mobile buy bar ---------- */
.landing-sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 -8px 24px -12px rgba(20,20,50,0.2);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.landing-sticky-bar.is-visible { transform: translateY(0); }
.landing-sticky-info { display: flex; flex-direction: column; min-width: 0; }
.landing-sticky-name {
  margin: 0; font-weight: 700; color: #1a1a2e;
  font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 42vw;
}
.landing-sticky-price { margin: 0; color: #a8871e; font-weight: 700; font-size: 0.95rem; }
.landing-sticky-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
@media (min-width: 901px) {
  .landing-sticky-bar { display: none !important; }
}

/* ---------- Exit-intent dialog ---------- */
.landing-exit-dialog {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.landing-exit-dialog.is-open { display: flex; }
.landing-exit-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,16,32,0.65);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.landing-exit-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  background: #fff; border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  animation: popIn 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(212,175,55,0.4);
}
.landing-exit-close {
  position: absolute; top: 0.5rem; right: 0.65rem;
  background: transparent; border: 0; font-size: 1.75rem;
  color: #6b6580; cursor: pointer; line-height: 1;
  width: 34px; height: 34px; border-radius: 50%;
}
.landing-exit-close:hover { background: #f0edf5; color: #1a1a2e; }
.landing-exit-emoji { font-size: 2.5rem; }
.landing-exit-title {
  font-family: 'Outfit', serif; font-size: 1.4rem; font-weight: 800;
  margin: 0.5rem 0 0.4rem; color: #1a1a2e;
}
.landing-exit-sub { color: #4a4560; margin: 0 0 1.15rem; line-height: 1.5; }
.landing-exit-actions { display: flex; flex-direction: column; gap: 0.55rem; }
.landing-exit-fine { color: #8a869e; font-size: 0.75rem; margin: 0.85rem 0 0; }

/* ---------- Responsive ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Swipe lightbox gallery ---------- */
.lg-lightbox {
  position: fixed; inset: 0; z-index: 3000;
  display: none;
  background: rgba(10,10,20,0.96);
  align-items: center; justify-content: center;
  animation: fadeIn 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}
.lg-lightbox.is-open { display: flex; }
.lg-stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 3.25rem 3.5rem 4rem;
  box-sizing: border-box;
  touch-action: pan-y;
  overflow: hidden;
}
.lg-stage img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
  transition: opacity 0.2s ease, transform 0.15s ease;
  cursor: grab;
  -webkit-user-drag: none;
}
.lg-close, .lg-prev, .lg-next {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.1s ease;
  backdrop-filter: blur(6px);
}
.lg-close:hover, .lg-prev:hover, .lg-next:hover {
  background: rgba(255,255,255,0.18);
  transform: scale(1.05);
}
.lg-close {
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  font-size: 1.75rem;
  line-height: 1;
}
.lg-prev, .lg-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
}
.lg-prev { left: 1rem; }
.lg-next { right: 1rem; }
.lg-prev:hover { transform: translateY(-50%) scale(1.05); }
.lg-next:hover { transform: translateY(-50%) scale(1.05); }
.lg-counter {
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.lg-group {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.lg-group:empty { display: none; }
.lg-hint {
  position: absolute; bottom: 3.2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0,0,0,0.35);
  border-radius: 999px;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Zoom cursor + tap-to-open feedback on gallery */
.bundle-gallery .gallery-item {
  cursor: zoom-in;
  transition: transform 0.15s ease;
}
.bundle-gallery .gallery-item:hover { transform: translateY(-2px); }

/* Mobile lightbox tweaks */
@media (max-width: 640px) {
  .lg-stage { padding: 3.5rem 0.5rem 4rem; }
  .lg-prev, .lg-next { width: 40px; height: 40px; }
  .lg-prev { left: 0.35rem; }
  .lg-next { right: 0.35rem; }
  .lg-counter { top: 0.75rem; padding: 0.35rem 0.75rem; font-size: 0.78rem; }
  .lg-close { top: 0.65rem; right: 0.65rem; width: 40px; height: 40px; font-size: 1.5rem; }
}

@media (max-width: 780px) {
  .landing-hero { grid-template-columns: 1fr; gap: 1.25rem; padding: 1rem; }
  .landing-hero-body { order: 2; }
  .landing-hero-media { order: 1; }
  .landing-benefits,
  .landing-included,
  .landing-gallery-section,
  .landing-bonuses,
  .landing-testimonials,
  .landing-features,
  .landing-description,
  .landing-howto,
  .landing-faq,
  .landing-final-cta { padding: 1.1rem; margin: 1.5rem 0; border-radius: 14px; }
  .landing-page { padding-bottom: 5.5rem; }
}
