/* ============================================================
   CATCAM — styles.css
   Aesthetic: Playful premium · warm cream/charcoal · editorial
   ============================================================ */

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

:root {
  --cream:      #faf7f2;
  --warm-white: #fff9f0;
  --charcoal:   #1a1612;
  --brown:      #2e2318;
  --orange:     #f57c1f;
  --orange-lt:  #ff9a45;
  --orange-dk:  #d4620e;
  --yellow:     #ffd166;
  --green:      #06c87b;
  --red:        #ff4444;
  --muted:      #7a6e63;
  --border:     rgba(26,22,18,0.1);
  --shadow:     0 4px 24px rgba(26,22,18,0.08);
  --shadow-lg:  0 12px 48px rgba(26,22,18,0.15);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
em { font-style: italic; color: var(--orange); }

/* ===== SECTION HELPERS ===== */
.section-tag {
  display: inline-block;
  background: rgba(245,124,31,0.12);
  color: var(--orange-dk);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--muted); max-width: 540px; margin: 0 auto 2.5rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,124,31,0.35);
}
.btn-primary:hover { background: var(--orange-dk); box-shadow: 0 6px 28px rgba(245,124,31,0.45); }
.btn-primary:active { transform: scale(0.97); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--charcoal); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-trust { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.nav-star { color: var(--yellow); font-size: 12px; letter-spacing: -2px; }
.nav-reviews { color: var(--muted); }
.nav-cta {
  background: var(--orange); color: #fff;
  text-decoration: none; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dk); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 60%, #f5ede0 100%);
}
.hero-bg-paw {
  position: absolute; font-size: 220px; opacity: 0.04;
  user-select: none; pointer-events: none;
  top: -40px; right: -40px;
  animation: paw-float 8s ease-in-out infinite;
}
.hero-bg-paw.two { top: auto; bottom: 0; right: auto; left: -60px; font-size: 160px; animation-delay: -4s; }
@keyframes paw-float { 0%,100%{transform:rotate(-10deg) translateY(0)} 50%{transform:rotate(-10deg) translateY(-20px)} }

.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: center;
  width: 100%;
}
@media(max-width:900px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--charcoal); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 1.5rem;
  animation: fadeDown 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(6,200,123,0.6)} 50%{box-shadow:0 0 0 6px rgba(6,200,123,0)} }

.hero-title {
  animation: fadeUp 0.7s 0.1s ease both;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem; color: var(--muted); max-width: 520px;
  animation: fadeUp 0.7s 0.2s ease both;
  margin-bottom: 1.75rem;
}
@media(max-width:900px) { .hero-sub { margin: 0 auto 1.75rem; } }

.hero-price-wrap {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 1.75rem;
}
@media(max-width:900px) { .hero-price-wrap { justify-content: center; } }

.hero-price { display: flex; align-items: center; gap: 10px; }
.price-was {
  color: var(--muted); font-size: 1.1rem;
  text-decoration: line-through;
}
.price-now {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--charcoal);
}
.price-tag {
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  animation: price-pulse 2s infinite;
}
@keyframes price-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

.hero-stock {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted);
}
.stock-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: stock-blink 1.5s infinite;
}
@keyframes stock-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.btn-hero {
  display: inline-block;
  background: var(--orange);
  color: #fff; text-decoration: none;
  font-weight: 700; font-size: 1.15rem;
  padding: 18px 40px; border-radius: 999px;
  box-shadow: 0 6px 32px rgba(245,124,31,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: fadeUp 0.7s 0.4s ease both;
  margin-bottom: 1.5rem;
}
.btn-hero:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(245,124,31,0.5); }
.btn-hero:active { transform: scale(0.97); }

.hero-proof {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
  animation: fadeUp 0.7s 0.5s ease both;
}
@media(max-width:900px) { .hero-proof { justify-content: center; } }
.proof-avatars { display: flex; }
.proof-avatars img {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--cream); margin-left: -8px;
}
.proof-avatars img:first-child { margin-left: 0; }

/* ===== HERO IMAGE ===== */
.hero-image-wrap {
  animation: fadeLeft 0.8s 0.3s ease both;
  position: relative;
}
.hero-img-placeholder {
  background: linear-gradient(135deg, #f0e8d8, #e8ddd0);
  border-radius: var(--radius-lg);
  height: 480px; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 2px dashed rgba(245,124,31,0.3);
}
.placeholder-inner { text-align: center; color: var(--muted); }
.cam-icon { font-size: 48px; margin-bottom: 12px; }
.placeholder-inner p { font-weight: 600; margin-bottom: 6px; }
.placeholder-inner small { font-size: 12px; opacity: 0.7; }

.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--charcoal); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
}
.hero-img-badge.two { left: auto; right: 20px; bottom: 70px; background: rgba(26,22,18,0.85); }

/* ===== COUNTDOWN STRIP ===== */
.countdown-strip {
  background: var(--charcoal); color: #fff;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.countdown-label { font-size: 14px; font-weight: 500; }
.countdown-timer {
  display: flex; align-items: center; gap: 6px;
}
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px; padding: 6px 10px; min-width: 44px;
  text-align: center;
}
.cd-block span { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.cd-block small { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; margin-top: 2px; }
.cd-sep { font-size: 1.4rem; font-weight: 700; color: var(--yellow); }

/* ===== LOGOS ===== */
.logos-section {
  padding: 40px 24px;
  text-align: center;
}
.logos-label { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.logo-pill {
  background: #fff; border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 80px 24px;
  text-align: center;
}
.gallery-grid {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-item.main { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.gallery-placeholder {
  background: linear-gradient(135deg, #ede5d8, #ddd3c4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 200px; height: 100%; color: var(--muted);
  text-align: center; padding: 20px;
  border: 2px dashed rgba(245,124,31,0.25);
}
.gallery-item.main .gallery-placeholder { min-height: 420px; }
.gp-icon { font-size: 36px; margin-bottom: 10px; }
.gallery-placeholder p { font-weight: 600; font-size: 14px; }
.gallery-placeholder small { font-size: 11px; margin-top: 4px; opacity: 0.7; }

.gallery-label {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--charcoal); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}

/* ===== POV SECTION ===== */
.pov-section {
  background: var(--charcoal);
  padding: 80px 24px;
  color: #fff;
}
.pov-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media(max-width:760px) { .pov-inner { grid-template-columns: 1fr; } }
.pov-section .section-tag { background: rgba(245,124,31,0.2); color: var(--orange-lt); }
.pov-section em { color: var(--yellow); }
.pov-section p { color: rgba(255,255,255,0.7); margin: 1rem 0 1.5rem; }

.pov-screen {
  background: #0a0a0a; border-radius: var(--radius);
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
}
.pov-ui {
  display: flex; justify-content: space-between;
  padding: 12px 16px; position: absolute; top: 0; left: 0; right: 0;
  z-index: 2; font-size: 12px; font-weight: 600;
}
.pov-rec {
  color: var(--red); letter-spacing: 0.08em;
  animation: rec-blink 1.5s infinite;
}
@keyframes rec-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.pov-time { color: rgba(255,255,255,0.6); font-family: monospace; }
.pov-content {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); text-align: center; font-size: 14px; padding: 20px;
}
.pov-content .pov-icon { font-size: 48px; margin-bottom: 12px; }
.pov-scanline {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px);
  animation: scanline 8s linear infinite;
}
@keyframes scanline {
  0%{background-position: 0 0} 100%{background-position: 0 100%}
}

/* ===== FEATURE LIST ===== */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 1.5rem 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 15px; }
.feature-list li span { font-size: 18px; }

/* ===== FEATURES GRID ===== */
.features-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--warm-white);
}
.features-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media(max-width:720px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; text-align: left;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--orange); color: #fff;
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 0;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  padding: 0 48px; font-size: 14px; font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.3);
}
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 80px 24px;
  text-align: center;
}
.stars-summary {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 2.5rem;
}
.big-stars { font-size: 1.6rem; color: var(--yellow); letter-spacing: -2px; }
.rating-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; }
.rating-count { color: var(--muted); font-size: 14px; }

.reviews-slider {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media(max-width:900px) { .reviews-slider { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .reviews-slider { grid-template-columns: 1fr; } }

.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; text-align: left;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.review-card:hover { transform: translateY(-3px); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-name { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.verified { color: var(--green); font-size: 12px; font-weight: 400; }
.review-stars { color: var(--yellow); font-size: 14px; letter-spacing: -1px; }
.review-text { color: var(--brown); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.review-product { font-size: 12px; color: var(--muted); }

.slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--orange); }

/* ===== BUY SECTION ===== */
.buy-section {
  background: linear-gradient(135deg, #fff9f0 0%, var(--cream) 100%);
  padding: 80px 24px;
}
.buy-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media(max-width:760px) { .buy-inner { grid-template-columns: 1fr; } }

.buy-image { position: relative; }
.buy-img-placeholder {
  background: linear-gradient(135deg, #ede5d8, #ddd3c4);
  border-radius: var(--radius-lg);
  height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); text-align: center;
  border: 2px dashed rgba(245,124,31,0.3);
}
.buy-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
}

.buy-title { margin-bottom: 8px; }
.buy-stars { color: var(--yellow); font-size: 16px; margin-bottom: 1.5rem; }
.buy-stars span { color: var(--muted); font-size: 14px; }

.buy-price-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.buy-price-now { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 900; color: var(--charcoal); }
.buy-price-was { color: var(--muted); text-decoration: line-through; font-size: 1.2rem; }
.buy-discount {
  background: #fde8d8; color: var(--orange-dk);
  font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}

.buy-stock-bar {
  height: 6px; background: rgba(26,22,18,0.08); border-radius: 999px;
  margin-bottom: 8px; overflow: hidden;
}
.stock-bar-fill { height: 100%; background: var(--red); border-radius: 999px; }
.stock-text { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; }

/* ===== PAYPAL PLACEHOLDER ===== */
.paypal-placeholder, .paypal-cta-placeholder {
  margin-bottom: 1.5rem;
}
.paypal-coming {
  background: #fff; border: 2px dashed rgba(245,124,31,0.4);
  border-radius: var(--radius); padding: 24px;
  text-align: center; color: var(--muted);
}
.paypal-icon { font-size: 32px; margin-bottom: 8px; }
.paypal-coming p { font-size: 14px; margin-bottom: 6px; }
.paypal-coming strong { color: var(--charcoal); }
.paypal-sub { font-size: 13px; }
.paypal-code {
  display: block; background: rgba(26,22,18,0.05);
  border-radius: 8px; padding: 10px 14px;
  font-family: monospace; font-size: 12px; color: var(--orange-dk);
  margin-top: 12px; word-break: break-all;
}

.buy-features {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border); padding-top: 20px; margin-top: 4px;
}
.buy-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--brown); }
.buy-feat span { font-size: 16px; }

/* ===== COMPARE ===== */
.compare-section {
  background: var(--charcoal);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.compare-section .section-title { color: #fff; }
.compare-section .section-tag { background: rgba(245,124,31,0.2); color: var(--orange-lt); }

.compare-table-wrap {
  max-width: 700px; margin: 0 auto;
  overflow-x: auto;
}
.compare-table {
  width: 100%; border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.6); }
.compare-table th { font-family: 'Fraunces', serif; font-size: 1rem; padding-bottom: 16px; }
.compare-table th.us { color: var(--yellow); }
.compare-table td.us { color: #fff; font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--warm-white);
}
.faq-list {
  max-width: 680px; margin: 0 auto;
  text-align: left;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif; text-align: left; gap: 16px;
}
.faq-arrow { font-size: 12px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #fff7ed, #fde8d0);
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(245,124,31,0.2);
}
.final-inner { max-width: 560px; margin: 0 auto; }
.final-paws { font-size: 2rem; margin-bottom: 1rem; letter-spacing: -4px; }
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { color: var(--muted); margin-bottom: 1.5rem; }
.final-price {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  margin-bottom: 1.5rem;
}
.final-was { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.final-now { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 900; }
.paypal-cta-placeholder { max-width: 400px; margin: 0 auto 1rem; }
.final-trust { font-size: 13px; color: var(--muted); margin-top: 1rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.5);
  padding: 40px 24px; text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900;
  color: #fff; margin-bottom: 8px;
}
.footer-sub { font-size: 14px; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; }

/* ===== FLOATING BUTTON ===== */
.float-btn-wrap {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(250,247,242,1) 60%, transparent);
  display: none;
}
.float-btn-wrap.show { display: block; }
.float-btn {
  display: block; width: 100%; max-width: 480px; margin: 0 auto;
  background: var(--orange); color: #fff;
  text-decoration: none; text-align: center;
  font-weight: 700; font-size: 16px;
  padding: 16px; border-radius: 999px;
  box-shadow: 0 6px 32px rgba(245,124,31,0.5);
}

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.exit-overlay.show { opacity: 1; pointer-events: all; }
.exit-modal {
  background: var(--warm-white); border-radius: var(--radius-lg);
  padding: 40px 32px; max-width: 440px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: translateY(20px); transition: transform 0.3s;
}
.exit-overlay.show .exit-modal { transform: translateY(0); }
.exit-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 18px;
}
.exit-emoji { font-size: 3rem; margin-bottom: 12px; }
.exit-modal h3 { margin-bottom: 10px; }
.exit-modal p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.exit-price {
  font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900;
  margin-bottom: 20px;
}
.exit-price span { font-size: 1rem; font-weight: 400; color: var(--muted); text-decoration: line-through; }
.exit-decline {
  display: block; background: none; border: none;
  cursor: pointer; color: var(--muted); font-size: 12px; margin-top: 14px;
  text-decoration: underline; font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE ===== */
@media(max-width:600px) {
  .nav-trust { display: none; }
  .hero { padding: 100px 20px 60px; }
  .countdown-strip { gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.main { grid-column: 1 / -1; grid-row: auto; }
  .reviews-slider { grid-template-columns: 1fr; }
  .buy-inner { gap: 32px; }
  .hero-img-placeholder { height: 320px; }
}
