/* ============================================================
   SantaClaws.com — Styles
   Design: Holiday classic — deep reds, forest greens, gold
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@400;700&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --color-bg:        #0D1B0E;
  --color-surface:   #1B2E1C;
  --color-surface-2: #243526;
  --color-border:    #2D4A2E;
  --color-red:       #C41E3A;
  --color-red-h:     #A01830;
  --color-gold:      #D4AF37;
  --color-gold-light:#F0D060;
  --color-green:     #2E7D32;
  --color-text:      #F5F0E8;
  --color-muted:     #A8B5A0;
  --color-white:     #FFFFFF;

  --max-w:     1200px;
  --nav-h:     125px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);

  --font-display: 'Mountains of Christmas', cursive;
  --font-body:    'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
.display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.section-divider--left {
  margin-left: 0;
}

.text-gold { color: var(--color-gold); }
.text-red  { color: var(--color-red); }
.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}

/* --- Fade-in animation (JS-driven) --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

/* Gold shimmer CTA */
.btn--gold {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  background-size: 200%;
  background-position: 0%;
  color: #1a0a00;
  box-shadow: 0 2px 16px rgba(212,175,55,0.35);
  animation: goldShimmer 3s ease infinite;
}
.btn--gold:hover {
  background-position: 100%;
  box-shadow: 0 4px 24px rgba(212,175,55,0.55);
  transform: translateY(-2px);
}

@keyframes goldShimmer {
  0%   { background-position: 0%; }
  50%  { background-position: 100%; }
  100% { background-position: 0%; }
}

/* Ghost outline */
.btn--ghost {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}
.btn--ghost:hover {
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
}

/* Red */
.btn--red {
  background: var(--color-red);
  color: var(--color-white);
}
.btn--red:hover {
  background: var(--color-red-h);
  transform: translateY(-2px);
}

/* Small */
.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Full width */
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  overflow: visible;
  background: rgba(13, 27, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  position: relative;
  z-index: 200;
  left: 50px;
  top: 50px;
}

.nav__logo img {
  height: 264px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-gold);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta { flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--color-gold); }
.nav__mobile .btn { margin-top: 8px; }

/* ============================================================
   SNOWFLAKES
   ============================================================ */
.snowflakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.snowflake {
  position: absolute;
  top: -20px;
  color: rgba(255,255,255,0.6);
  font-size: 1.2em;
  animation: snowfall linear infinite;
  user-select: none;
}

@keyframes snowfall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 60%, rgba(196,30,58,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(46,125,50,0.15) 0%, transparent 50%),
              var(--color-bg);
  padding: 80px 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content { }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,30,58,0.2);
  border: 1px solid rgba(196,30,58,0.4);
  color: var(--color-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--color-text);
  margin-bottom: 24px;
}

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

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.5));
  animation: heroFloat 4s ease-in-out infinite;
}

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.trust-item__icon {
  font-size: 1.4rem;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-bg);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header h2 { margin-bottom: 16px; }
.section__header p {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}

.product-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 40px rgba(212,175,55,0.2);
  transform: translateY(-4px);
}

.product-card__img {
  background: #fff;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Inline illustration icon — floats left inside description text */
.product-card__desc-icon {
  float: left;
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 2px 10px 6px 0;
  border-radius: 6px;
  flex-shrink: 0;
}

.product-card__desc::after {
  content: '';
  display: table;
  clear: both;
}

.product-card__body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__badge {
  display: inline-block;
  background: rgba(196,30,58,0.2);
  border: 1px solid rgba(196,30,58,0.4);
  color: var(--color-gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.55;
}

.product-card__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.product-card__price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

/* Shopify Buy Button slot */
.buy-btn-slot {
  /* Shopify Buy Button embed here — see comment below */
}
/* ======================================================
   HOW TO ADD SHOPIFY BUY BUTTONS:
   1. In your Shopify admin, go to Sales Channels → Buy Button
   2. Create a Buy Button for each product
   3. Copy the embed code
   4. Paste it inside the matching .buy-btn-slot div below the product card
   5. Remove or hide the fallback .btn--red "Add to Cart" link
   The .buy-btn-slot div is pre-placed inside every product card.
   ====================================================== */

/* ============================================================
   SPLIT SECTION (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split--reverse .split__image { order: 2; }
.split--reverse .split__content { order: 1; }

.split__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 460px;
  width: auto;
}

.split__content h2 { margin-bottom: 20px; }
.split__content p {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.split__content .btn { margin-top: 12px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}

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

.step-card__number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-red), var(--color-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(196,30,58,0.4);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* Step connector */
.steps-grid {
  position: relative;
}

/* ============================================================
   PRIZES ROW
   ============================================================ */
.prizes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prize-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.prize-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.prize-card img {
  max-height: 140px;
  margin: 0 auto 16px;
}

.prize-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.prize-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
  padding-top: 16px;
}

.testimonial-card__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-gold-light);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(196,30,58,0.15) 50%, var(--color-surface) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  font-size: 1.1rem;
  padding: 16px 36px;
}

/* Ribbon CSS decoration */
.ribbon-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-red));
  border-radius: 0 0 6px 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 120px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: var(--color-muted);
  transition: color 0.2s;
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,30,58,0.1) 0%, transparent 60%),
              var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.page-hero__content h1 { margin-bottom: 16px; }

.page-hero__content p {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 520px;
  line-height: 1.7;
}

.page-hero__image img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-section { padding: 80px 0; }

/* Category filter tabs */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.filter-tab.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a0a00;
}

/* Product hiding for filter */
.product-card[data-hidden="true"] {
  display: none;
}

/* Gift wrap CTA */
.giftwrap-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(196,30,58,0.15), rgba(46,125,50,0.15));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.giftwrap-cta__text h3 { margin-bottom: 8px; }
.giftwrap-cta__text p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================================
   GIFT GUIDE PAGE
   ============================================================ */
.recipient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.recipient-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.recipient-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.recipient-card__icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(196,30,58,0.2), rgba(46,125,50,0.2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipient-card__content h3 { margin-bottom: 6px; font-size: 1.1rem; }
.recipient-card__content .age-range {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.recipient-card__content p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.recipient-card__content .rec-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
}
.recipient-card__content .rec-items {
  font-size: 0.82rem;
  color: var(--color-gold-light);
}

/* Prize ideas grid */
.prize-ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prize-idea-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.prize-idea-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.prize-idea-card img {
  max-height: 110px;
  margin: 0 auto 12px;
}

.prize-idea-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.prize-idea-card p {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* FAQ section */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item h4::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  padding-left: 26px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Stats row */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card__label {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Trust pillars */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.trust-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.trust-card__icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Brand family section */
.brand-family {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 48px 0;
}

.brand-family__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.brand-family__item:hover { opacity: 1; }

.brand-family__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
}

.brand-family__desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  max-width: 180px;
}

.brand-family__divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
}

/* Warehouse highlight */
.warehouse-block {
  background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(46,125,50,0.12));
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.warehouse-block__icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.warehouse-block__text h3 { margin-bottom: 8px; }
.warehouse-block__text p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Responsive adjustments for about page */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .trust-grid  { grid-template-columns: 1fr; }
  .warehouse-block { flex-direction: column; text-align: center; }
  .brand-family__divider { width: 60px; height: 1px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner,
  .split,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse .split__image { order: unset; }
  .split--reverse .split__content { order: unset; }

  .steps-grid,
  .prizes-row,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prize-ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__image { order: -1; }
  .hero__image img { max-height: 320px; }
  .hero { padding: 60px 0; min-height: auto; }

  .page-hero__inner {
    grid-template-columns: 1fr;
  }
  .page-hero__image { display: none; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .steps-grid,
  .testimonials-grid,
  .recipient-grid {
    grid-template-columns: 1fr;
  }

  .prizes-row {
    grid-template-columns: 1fr;
  }

  .prize-ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__inner {
    gap: 24px;
  }

  .cta-banner { padding: 60px 0; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .prize-ideas-grid { grid-template-columns: 1fr 1fr; }
  .giftwrap-cta { flex-direction: column; text-align: center; }
}
