/* ============================================================
   FORESIGHT VOICES — Main Stylesheet
   style.css
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --bg:           #FFFFFF;
  --bg-warm:      #FFFFFF;
  --bg-surface:   #F0EAF8;
  --text:         #111111;
  --text-mid:     #3D3548;
  --text-muted:   #7B6E90;
  --text-light:   #B0A5C0;
  --accent:       #5B1FA8;
  --accent-dark:  #3D0F80;
  --accent-mid:   #7C3AED;
  --accent-pale:  #EDE8FF;
  --accent-glow:  rgba(91,31,168,0.18);
  --border:       #DED5EC;
  --border-light: #EAE4F4;
  --black:        #111111;
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 4px rgba(60,20,120,0.07);
  --shadow-md:    0 4px 16px rgba(60,20,120,0.10);
  --shadow-lg:    0 12px 40px rgba(60,20,120,0.14);
  --shadow-gold:  0 4px 20px rgba(91,31,168,0.28);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h:        100px;
  --sidebar-w:    232px;
  --max-w:        1320px;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    18px;
  --t:            0.22s ease;
  --t-slow:       0.4s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utilities ────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 80px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
}
.nav-occasions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-occasions li a,
.nav-occasions li button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav-occasions li a:hover,
.nav-occasions li button:hover {
  color: var(--text);
  background: var(--bg-surface);
}
.nav-occasions li.active a {
  color: var(--text);
  background: var(--bg-surface);
}
.nav-occasions .coming-soon-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-mid);
  background: var(--accent-pale);
  padding: 2px 6px;
  border-radius: 99px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-tagline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.btn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 110;
  margin-left: auto;
}
.btn-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t);
}

/* ── Mother's Day Hero Banner ─────────────────────────────── */
.md-hero {
  background: linear-gradient(135deg, #F5F0FF 0%, #FAF4FF 50%, #F8F0FD 100%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}
.md-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(91,31,168,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.md-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 24px;
}
.md-hero-copy { flex: 1; }
.md-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 10px;
}
.md-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent-mid);
}
.md-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 10px;
}
.md-hero h2 em { font-style: italic; color: var(--accent); }
.md-hero-sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 380px;
}
.md-hero-date {
  font-weight: 600;
  color: var(--text-mid);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--text);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-primary svg { width: 16px; height: 16px; }
.md-hero-cards {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.md-mini-card {
  width: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  transition: transform var(--t-slow);
}
.md-mini-card:nth-child(2) { transform: rotate(1deg) translateY(-8px); }
.md-mini-card:nth-child(3) { transform: rotate(-1.5deg) translateY(4px); }
.md-mini-card:hover { transform: rotate(0) scale(1.04) !important; }
.md-mini-card-thumb {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.md-mini-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ── Catalog Layout ───────────────────────────────────────── */
.catalog-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── Filter Sidebar ───────────────────────────────────────── */
.filter-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.filter-sidebar::-webkit-scrollbar { width: 4px; }
.filter-sidebar::-webkit-scrollbar-track { background: transparent; }
.filter-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.filter-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.btn-clear-filters {
  font-size: 0.78rem;
  color: var(--accent-mid);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.btn-clear-filters.visible {
  opacity: 1;
  pointer-events: auto;
}
.filter-group {
  margin-bottom: 24px;
}
.filter-group-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t);
  user-select: none;
}
.filter-option:hover { background: var(--bg-surface); }
.filter-option input[type="checkbox"] { display: none; }
.filter-checkbox {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), background var(--t);
}
.filter-option input:checked ~ .filter-checkbox {
  background: var(--text);
  border-color: var(--text);
}
.filter-option input:checked ~ .filter-checkbox::after {
  content: '';
  display: block;
  width: 9px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.filter-option-label {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1;
}
.filter-option input:checked ~ .filter-checkbox + .filter-option-label,
.filter-option input:checked ~ * .filter-option-label {
  color: var(--text);
  font-weight: 500;
}
.filter-option.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.filter-option .cs-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-mid);
  background: var(--accent-pale);
  padding: 2px 6px;
  border-radius: 99px;
}
.filter-divider {
  height: 1px;
  background: var(--border-light);
  margin: 8px 0 24px;
}

/* ── Catalog Content ──────────────────────────────────────── */
.catalog-content { flex: 1; min-width: 0; }
.catalog-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.catalog-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
}
.catalog-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}
.active-filter-tag button {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color var(--t);
  font-size: 1rem;
  line-height: 1;
}
.active-filter-tag button:hover { color: var(--text); }

/* ── Card Grid ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}
.no-results-icon { font-size: 3rem; margin-bottom: 12px; }
.no-results p { font-size: 1rem; }
.no-results button {
  margin-top: 16px;
  color: var(--accent-mid);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Card Component ───────────────────────────────────────── */
.card-item {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-slow), transform var(--t-slow);
  cursor: pointer;
}
.card-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-thumb-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--bg-surface);
}
.card-thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.card-item:hover .card-thumb-wrap img { transform: scale(1.04); }
/* Placeholder when no image */
.card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-warm);
}
.card-thumb-placeholder .ph-emoji { font-size: 2.8rem; }
.card-thumb-placeholder .ph-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
/* Hover video preview */
.card-preview-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card-item:hover .card-preview-video { opacity: 1; }
/* Badges */
.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 99px;
}
.badge-lang {
  background: rgba(255,255,255,0.92);
  color: var(--text-mid);
  backdrop-filter: blur(4px);
}
.badge-premium {
  background: var(--accent);
  color: white;
}
.badge-series {
  background: rgba(17,17,17,0.75);
  color: white;
  backdrop-filter: blur(4px);
}
/* Play overlay on hover */
.card-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0,0,0,0.18);
  transition: opacity var(--t);
}
.card-item:hover .card-play-overlay { opacity: 1; }
.play-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: scale(0.85);
  transition: transform var(--t);
}
.card-item:hover .play-icon { transform: scale(1); }
.play-icon svg { width: 18px; height: 18px; fill: var(--text); margin-left: 2px; }
/* Card info */
.card-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.card-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
}
.card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  margin-top: 2px;
}
.card-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.card-variant {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}
.card-cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-send {
  flex: 1;
  padding: 9px 0;
  background: var(--text);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background var(--t), box-shadow var(--t);
}
.btn-send:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-gold);
}

/* ── Card Product Page ────────────────────────────────────── */
.product-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.product-breadcrumb a:hover { color: var(--text); }
.product-breadcrumb-sep { color: var(--border); }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.product-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  aspect-ratio: 9/16;
  position: relative;
  max-width: 360px;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-media-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.product-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background var(--t);
  cursor: pointer;
}
.product-play-btn:hover { background: rgba(0,0,0,0.35); }
.product-play-btn .big-play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.product-play-btn .big-play svg { width: 28px; height: 28px; fill: var(--text); margin-left: 4px; }
.product-info {}
.product-series {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 8px;
}
.product-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}
.product-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.product-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}
.product-price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.product-feature-icon { color: var(--accent-mid); font-size: 1rem; flex-shrink: 0; }
.btn-send-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--text);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn-send-card:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.product-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── Checkout Modal ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 640px) {
  .modal-overlay { align-items: center; }
}
.modal {
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  transform: translateY(40px);
  transition: transform var(--t-slow);
}
@media (min-width: 640px) {
  .modal { border-radius: var(--radius-lg); }
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.btn-modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--bg-surface);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.btn-modal-close:hover { background: var(--border); color: var(--text); }
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-label .optional {
  font-weight: 400;
  color: var(--text-muted);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-hint {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-divider {
  height: 1px;
  background: var(--border-light);
  margin: 20px 0;
}
.modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.modal-total-price { font-size: 1.2rem; }
.btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--text);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: background var(--t), box-shadow var(--t);
}
.btn-pay:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-gold);
}
.btn-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-pay svg { width: 18px; height: 18px; }
.modal-secure {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Recipient Landing Page ───────────────────────────────── */
.recipient-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-warm);
}
.recipient-header {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg);
}
.recipient-header img { height: 32px; margin: 0 auto; }
.recipient-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.recipient-greeting {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
}
.recipient-from {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
}
.recipient-video-wrap {
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--black);
  aspect-ratio: 16/9;
  margin-bottom: 32px;
}
.recipient-video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}
.recipient-message-box {
  max-width: 520px;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
  text-align: center;
}
.recipient-message-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.recipient-message-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}
.recipient-cta {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  width: 100%;
}
.recipient-cta p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.recipient-cta p strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ── Success Page ─────────────────────────────────────────── */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.success-card {
  max-width: 480px;
  text-align: center;
}
.success-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: popIn 0.5s ease;
}
@keyframes popIn {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.success-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.success-body strong { color: var(--text); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-item {
  animation: fadeInUp 0.35s ease both;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; max-width: 600px; }
  .product-layout .product-media { order: 1; }
  .product-layout .product-info { order: 2; }
}
@media (max-width: 860px) {
  .md-hero-cards { display: none; }
  .catalog-wrapper { gap: 0; }
  .filter-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 300px; height: 100vh;
    max-height: 100vh;
    background: var(--bg);
    z-index: 150;
    padding: 24px 20px;
    border-right: 1px solid var(--border);
    transform: translateX(-110%);
    transition: transform var(--t-slow), box-shadow var(--t-slow);
    box-shadow: none;
  }
  .filter-sidebar.open {
    transform: translateX(0);
    box-shadow: var(--shadow-lg);
  }
  .filter-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
  }
  .filter-overlay.open { opacity: 1; pointer-events: auto; }
  .btn-hamburger { display: flex; }
  .nav-tagline { display: none; }
  .nav-actions { display: none; }
  .catalog-content { width: 100%; }
  .filter-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .btn-show-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--bg);
    transition: border-color var(--t), color var(--t);
  }
  .btn-show-filters:hover { border-color: var(--text); color: var(--text); }
  .btn-show-filters svg { width: 14px; height: 14px; }
  .btn-show-filters .filter-count {
    background: var(--text);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 99px;
  }
}
@media (max-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .nav-occasions { display: none; }
  .md-hero h2 { font-size: 1.6rem; }
}
@media (max-width: 400px) {
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
