/* Prestige Prints - Main Stylesheet */

/* ══════════════════════════════════════════════════════════════
   CSS VARIABLES
   ══════════════════════════════════════════════════════════════ */
:root {
  /* Colors */
  --gold: #c9a227;
  --gold-light: #e8d48a;
  --gold-dark: #9a7b1a;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-600: #525252;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gold { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: var(--transition-normal);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--gray-800);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  transition: var(--transition-normal);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-hero:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: transparent;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  transition: var(--transition-normal);
}

.btn-hero-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.15rem;
}

.btn-checkout {
  width: 100%;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: var(--transition-normal);
}

.btn-checkout:hover {
  background: var(--gold-dark);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-mobile-menu {
  display: none;
  font-size: 1.5rem;
  color: var(--gray-800);
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, #fdf8e8 100%);
  z-index: -1;
  overflow: hidden;
}

/* Animated gradient overlay cycling gold → warm orange → deep navy */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212,168,0,0.08) 0%,
    rgba(255,150,50,0.06) 33%,
    rgba(30,58,95,0.05) 66%,
    rgba(212,168,0,0.07) 100%
  );
  background-size: 400% 400%;
  animation: heroBgShift 12s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroBgShift {
  0%   { background-position: 0% 50%; opacity: 1; }
  33%  { background-position: 50% 0%; opacity: 0.8; }
  66%  { background-position: 100% 50%; opacity: 1; }
  100% { background-position: 0% 50%; opacity: 0.9; }
}

/* Floating photo cards */
.hero-photo-float {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  animation: floatCard 20s ease-in-out infinite;
  background: var(--white);
  overflow: hidden;
}

.fp1 {
  width: 80px; height: 100px;
  background: linear-gradient(135deg, #fde8e8, #ffd1b3);
  top: 15%; right: 8%;
  animation-delay: 0s;
  transform: rotate(8deg);
}
.fp2 {
  width: 90px; height: 70px;
  background: linear-gradient(135deg, #e8f4fd, #d1e8ff);
  top: 55%; right: 12%;
  animation-delay: 3s;
  transform: rotate(-6deg);
}
.fp3 {
  width: 70px; height: 90px;
  background: linear-gradient(135deg, #fdf8e8, #fde8c8);
  top: 30%; right: 22%;
  animation-delay: 6s;
  transform: rotate(3deg);
}
.fp4 {
  width: 100px; height: 75px;
  background: linear-gradient(135deg, #e8fde8, #c8fdd8);
  top: 70%; right: 5%;
  animation-delay: 9s;
  transform: rotate(-10deg);
}
.fp5 {
  width: 65px; height: 85px;
  background: linear-gradient(135deg, #f4e8fd, #e8d1ff);
  top: 10%; right: 30%;
  animation-delay: 12s;
  transform: rotate(5deg);
}
.fp6 {
  width: 85px; height: 65px;
  background: linear-gradient(135deg, #fde8f4, #ffd1e8);
  top: 80%; right: 25%;
  animation-delay: 15s;
  transform: rotate(-4deg);
}

@keyframes floatCard {
  0%   { opacity: 0; transform: translateY(20px) rotate(var(--rot, 5deg)); }
  10%  { opacity: 0.6; }
  40%  { opacity: 0.5; transform: translateY(-10px) rotate(var(--rot, 5deg)); }
  60%  { opacity: 0.55; transform: translateY(-20px) rotate(var(--rot, 5deg)); }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-40px) rotate(var(--rot, 5deg)); }
}

/* Small shiny divider line for depth on the photo cards */
.hero-photo-float::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-social-proof .divider {
  color: var(--gray-300);
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  overflow: visible;
}

.magnet-showcase {
  position: relative;
  width: 400px;
  height: 400px;
  overflow: visible;
}

.magnet {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
  z-index: 1;
}

.magnet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.magnet.m1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.magnet.m2 { top: 25%; right: 0; animation-delay: 1s; }
.magnet.m3 { top: 50%; left: 0; animation-delay: 2s; }
.magnet.m4 { bottom: 25%; right: 10%; animation-delay: 3s; }
.magnet.m5 { bottom: 0; left: 30%; animation-delay: 4s; }
.magnet.m6 { top: 40%; left: 40%; animation-delay: 5s; }
.magnet.m7 { top: 15%; left: 10%; animation-delay: 2.5s; }

.magnet:hover {
  z-index: 100;
  cursor: zoom-in;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: visible;
}
.magnet:hover img {
  transform: scale(1.75);
}

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

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 24px;
  background: var(--gray-900);
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.9;
}

/* ══════════════════════════════════════════════════════════════
   URGENCY BANNER
   ══════════════════════════════════════════════════════════════ */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
  flex-wrap: wrap;
}

.urgency-banner button {
  margin-left: 16px;
  color: var(--white);
  opacity: 0.7;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.urgency-banner button:hover {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS (GENERAL)
   ══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-padding) 24px;
}

.section-inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-top: 16px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CONFIGURATOR
   ══════════════════════════════════════════════════════════════ */
.product-configurator {
  max-width: 900px;
  margin: 0 auto;
}

.config-step {
  margin-bottom: 48px;
}

.config-step h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.save-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  background: #dcfce7;
  color: #166534;
  border-radius: 50px;
}

/* Size Grid */
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.size-card {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.size-card:hover {
  border-color: var(--gold-light);
}

.size-card.selected {
  border-color: var(--gold);
  background: #fffbeb;
}

.size-card.popular {
  border-color: var(--gold);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
}

.size-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

/* Dimensionally accurate magnet previews in size cards */
.magnet-preview {
  background: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
  display: inline-block;
  /* bottom white border simulates photo print margin */
  padding: 3px 3px 12px 3px;
  box-sizing: border-box;
}
.magnet-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1px;
}
/* 2x3 portrait */
.mp-2x3 { width: 56px;  height: 84px; }
/* 3x4 portrait */
.mp-3x4 { width: 66px;  height: 88px; }
/* 4x6 landscape */
.mp-4x6 { width: 108px; height: 72px; }
/* 4x4 square */
.mp-4x4 { width: 80px;  height: 80px; }

.size-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.size-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.size-price {
  font-weight: 600;
  color: var(--gold-dark);
}

/* Bundle Grid */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

/* Upload Zone */
.upload-zone {
  padding: 48px 24px;
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.upload-zone:hover {
  border-color: var(--gold);
  background: #fffbeb;
}

.upload-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.upload-hint {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 8px;
}

.upload-previews {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Order Summary */
.order-summary {
  margin-top: 40px;
  padding: 32px;
  background: var(--gray-100);
  border-radius: 16px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.summary-line.total-line {
  border-bottom: none;
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 16px;
}

.promo-row {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.promo-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
}

.promo-row button {
  padding: 12px 24px;
  background: var(--gray-800);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.promo-row button:hover {
  background: var(--gray-900);
}

.checkout-trust {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════════
   BUNDLES SPOTLIGHT
   ══════════════════════════════════════════════════════════════ */
.bundles-spotlight {
  background: var(--off-white);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.spotlight-card {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

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

.spotlight-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.spotlight-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}

.spotlight-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: -24px -24px 20px -24px;
  width: calc(100% + 48px);
  display: block;
}

.spotlight-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.spotlight-qty {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.spotlight-size {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.spotlight-price {
  margin-bottom: 8px;
}

.spotlight-price .was {
  text-decoration: line-through;
  color: var(--gray-600);
  margin-right: 8px;
}

.spotlight-price .now {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.spotlight-save {
  font-size: 0.85rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
}

.step-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.step-photo {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  aspect-ratio: 1 / 1;
}

.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.step:hover .step-photo img {
  transform: scale(1.04);
}

.step h3 {
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: var(--gray-300);
  padding-top: 60px;
}

/* ══════════════════════════════════════════════════════════════
   EVENTS
   ══════════════════════════════════════════════════════════════ */
.events-section {
  background: var(--gray-900);
  color: var(--white);
}

.events-section .section-label {
  color: var(--gold-light);
}

.events-section h2 {
  color: var(--white);
}

.events-section .section-sub {
  color: var(--gray-300);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.event-card {
  background: var(--gray-800);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  background: #333;
  transform: translateY(-3px);
}

.event-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.event-card:hover .event-img {
  transform: scale(1.05);
}

.event-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 16px;
}

.event-price {
  font-size: 1.1rem;
  color: var(--gold-light);
}

.events-cta {
  text-align: center;
}

.events-note {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════════ */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;
  flex: 1;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel .review-card {
  min-width: 300px;
  max-width: 360px;
  flex-shrink: 0;
}
.carousel-btn {
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  padding-bottom: 2px;
}
.carousel-btn:hover { background: #b8860b; }

.review-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.reviewer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* Review Submit Form — Video Background */
.review-submit-section {
  position: relative;
  overflow: hidden;
  background: #111;
}
.review-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.review-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}
.review-submit-section .section-inner {
  position: relative;
  z-index: 2;
}
.review-submit-section .section-label,
.review-submit-section h2,
.review-submit-section .section-sub {
  color: #fff !important;
}
.review-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.review-form input, .review-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
}
.review-form textarea { resize: vertical; }
.review-stars-input {
  display: flex;
  gap: 8px;
  font-size: 2rem;
  cursor: pointer;
  justify-content: center;
}
.review-stars-input span { color: #ccc; transition: color 0.15s; }
.review-stars-input span:hover { color: var(--gold); }
.review-submit-note {
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--off-white), #fdf8e8);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  padding: 48px 24px;
  background: var(--gray-900);
  color: var(--white);
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-top: 8px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: var(--transition-fast);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ══════════════════════════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--gray-600);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--gray-900);
}

/* Toast */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 28px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3000;
}

#toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* User greeting in nav */
.user-greeting {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-right: 8px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-social-proof {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .nav-mobile-menu {
    display: block;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }
  
  .trust-bar {
    gap: 20px;
  }
  
  .trust-item {
    font-size: 0.75rem;
  }
  
  .step-arrow {
    display: none;
  }
  
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .spotlight-card.featured {
    transform: none;
  }
  
  .spotlight-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-hero,
  .btn-hero-ghost {
    width: 100%;
  }
  
  .size-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: #d4a800;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.2s ease;
}

.faq-q:hover {
  background: #fffbeb;
}

.faq-item.open .faq-q {
  background: #fffbeb;
  color: #7a5f00;
}

.faq-arrow {
  font-size: 1rem;
  flex-shrink: 0;
  color: #d4a800;
  transition: transform 0.25s ease;
  display: inline-block;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  padding: 0 16px 14px;
}

/* ── Cart & Photo Assignment ─────────────────────────── */
.cart-item {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
}
.cart-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.cart-item-title { font-weight: 600; flex: 1; }
.cart-item-price { font-weight: 700; color: var(--gold, #d4a800); }
.cart-item-remove {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fee2e2; color: #dc2626;
  font-size: 0.75rem; display: flex; align-items: center; justify-content: center;
}
.cart-item-remove:hover { background: #dc2626; color: #fff; }
.cart-thumbs { display: flex; flex-wrap: wrap; gap: 4px; }

/* Assign slots */
.assign-slot {
  border: 2px dashed #ccc;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  overflow: hidden;
  flex-shrink: 0;
}
.assign-slot:hover { border-color: #d4a800; }
.assign-slot.filled { border-color: #16a34a; border-style: solid; }
.slot-plus { font-size: 1.5rem; color: #ccc; }
.slot-label { font-size: 10px; color: #aaa; margin-top: 2px; }
.slot-remove {
  position: absolute; top: 3px; right: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 0.65rem; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.slot-remove:hover { background: #dc2626; }
.slot-check {
  position: absolute; bottom: 3px; right: 3px;
  background: #16a34a; color: #fff;
  border-radius: 50%; width: 16px; height: 16px;
  font-size: 0.6rem; display: flex; align-items: center; justify-content: center;
}
.pool-photo {
  cursor: pointer; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; transition: border-color 0.15s;
}
.pool-photo:hover { border-color: #d4a800; }

/* Hide scrollbars on horizontal scroll strips (cross-browser) */
.hscroll-hide {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE / old Edge */
}
.hscroll-hide::-webkit-scrollbar {
  display: none;                /* Chrome / Edge / Safari */
}

/* Thin styled scrollbar for horizontal strips in dark modal */
.hscroll-thin {
  scrollbar-width: thin;
  scrollbar-color: rgba(212,168,0,0.5) rgba(255,255,255,0.07);
}
.hscroll-thin::-webkit-scrollbar {
  height: 4px;
}
.hscroll-thin::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
}
.hscroll-thin::-webkit-scrollbar-thumb {
  background: rgba(212,168,0,0.5);
  border-radius: 2px;
}
.hscroll-thin::-webkit-scrollbar-thumb:hover {
  background: rgba(212,168,0,0.85);
}
