/* =============================================
   GIFTLAB — Editorial Gift Curation Site
   Aesthetic: Warm editorial magazine
   Fonts: Playfair Display + DM Sans
   ============================================= */

:root {
  --ink: #1a1208;
  --ink-light: #4a3f30;
  --ink-muted: #8c7d6a;
  --cream: #faf7f2;
  --cream-dark: #f2ede3;
  --cream-darker: #e8e0d0;
  --amber: #d4821a;
  --amber-light: #f5a623;
  --amber-pale: #fef3e2;
  --teal: #1a7a6e;
  --teal-light: #e8f5f3;
  --red: #c0392b;
  --red-pale: #fdf0ee;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26,18,8,0.06);
  --shadow-md: 0 4px 24px rgba(26,18,8,0.10);
  --shadow-lg: 0 8px 40px rgba(26,18,8,0.14);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-muted);
  margin-top: 8px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 2px 12px rgba(212,130,26,0.35);
}
.btn-primary:hover {
  background: #b86e12;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,130,26,0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--cream-darker);
}
.btn-ghost:hover {
  border-color: var(--ink-muted);
  background: var(--cream-dark);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-darker);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: var(--nav-h);
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.logo span { color: var(--amber); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-light);
  padding: 6px 12px;
  border-radius: 100px;
  transition: all 0.15s;
}
.main-nav a:hover { color: var(--ink); background: var(--cream-dark); }
.nav-highlight {
  background: var(--amber-pale) !important;
  color: var(--amber) !important;
}
.nav-highlight:hover { background: #fde8c8 !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  margin-left: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-darker);
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-nav a {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-light);
  border-bottom: 1px solid var(--cream-darker);
}
.mobile-nav.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212,130,26,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(26,122,110,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  background: var(--amber-pale);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-light);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); }
.stat span { font-size: 13px; color: var(--ink-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--cream-darker); }

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 400px;
  pointer-events: none;
}
.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}
.fc1 { top: 10%; left: 10%; animation-delay: 0s; }
.fc2 { top: 35%; left: 50%; animation-delay: 1.5s; }
.fc3 { top: 60%; left: 5%; animation-delay: 3s; }
.fc4 { top: 80%; left: 45%; animation-delay: 4.5s; }

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

/* ============ OCCASION STRIP ============ */
.occasion-strip {
  background: var(--ink);
  padding: 20px 0;
  position: relative;
}
.occasion-scroll-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.occasion-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  padding: 4px 0 10px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.occasion-grid::-webkit-scrollbar {
  height: 3px;
}
.occasion-grid::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}
.occasion-grid::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}
.occasion-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.35);
}
.occasion-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.occasion-chip:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.occasion-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}
.occasion-arrow:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.occasion-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.occasion-arrow-left { margin-right: 10px; }
.occasion-arrow-right { margin-left: 10px; }
/* On mobile, hide arrows and let native touch scroll take over */
@media (max-width: 640px) {
  .occasion-arrow { display: none; }
  .occasion-grid {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ============ SECTIONS ============ */
.section { padding: 72px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.see-all {
  font-size: 15px;
  font-weight: 500;
  color: var(--amber);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.7; }

/* ============ CATEGORIES GRID ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-darker);
  background: var(--white);
  transition: all 0.25s ease;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.cat-geeks::before { background: linear-gradient(90deg, #5b4cdb, #8b7cf8); }
.cat-gamers::before { background: linear-gradient(90deg, #c0392b, #e74c3c); }
.cat-kids::before { background: linear-gradient(90deg, #d4821a, #f5a623); }
.cat-men::before { background: linear-gradient(90deg, #1a4a6e, #2980b9); }
.cat-women::before { background: linear-gradient(90deg, #a0522d, #d4827a); }
.cat-office::before { background: linear-gradient(90deg, #1a7a6e, #27ae96); }

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.cat-icon { font-size: 36px; margin-bottom: 16px; }
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.cat-card p { font-size: 14px; color: var(--ink-muted); flex: 1; }
.cat-count {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============ PRODUCTS GRID ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-darker);
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--amber);
  color: #fff;
  letter-spacing: 0.04em;
}
.product-badge.new { background: var(--teal); }
.product-badge.deal { background: var(--red); }

.product-img-wrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: var(--cream-dark);
  transition: transform 0.3s ease;
}
.product-card:hover .product-img-placeholder { transform: scale(1.05); }

/* Different background tints per product */
.pi-1 { background: linear-gradient(135deg, #e8e3ff, #f0ecff); }
.pi-2 { background: linear-gradient(135deg, #fde8e8, #fff0f0); }
.pi-3 { background: linear-gradient(135deg, #e3f2ff, #eef7ff); }
.pi-4 { background: linear-gradient(135deg, #fff3e0, #fff8f0); }
.pi-5 { background: linear-gradient(135deg, #e8f5f0, #f0faf7); }
.pi-6 { background: linear-gradient(135deg, #fff9e0, #fffcf0); }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--amber); }
.product-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--cream-darker);
  padding-top: 14px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--amber);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-buy:hover { background: #b86e12; transform: translateY(-1px); }

/* ============ FILTER BAR ============ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-darker);
  padding: 16px 0 0;
}
.sticky-filters {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.filter-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--cream-darker);
  background: transparent;
  color: var(--ink-light);
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font-body);
}
.chip:hover { border-color: var(--amber); color: var(--amber); }
.chip.active {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}
.sort-select {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-darker);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  cursor: pointer;
  font-family: var(--font-body);
  outline: none;
}
.sort-select:focus { border-color: var(--amber); }
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  border-top: 1px solid var(--cream-dark);
  font-size: 13px;
  color: var(--ink-muted);
}
.clear-filters {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--ink-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.15s;
}
.clear-filters:hover { color: var(--red); }

/* ============ PAGE HERO ============ */
.page-hero {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--cream-darker);
  padding: 40px 0;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.page-sub { font-size: 17px; color: var(--ink-muted); }

/* ============ NO RESULTS ============ */
.no-results {
  text-align: center;
  padding: 80px 20px;
}
.no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }
.no-results p { color: var(--ink-muted); margin-bottom: 24px; }
.hidden { display: none !important; }

.load-more-wrap { text-align: center; padding: 40px 0; }

/* ============ PRICE CALLOUT ============ */
.price-callout {
  background: var(--ink);
  padding: 48px 0;
}
.price-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.price-callout-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.price-callout-text p { color: rgba(255,255,255,0.6); font-size: 15px; }
.price-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.price-pill {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.price-pill:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
.price-pill.splurge { border-color: var(--amber-light); color: var(--amber-light); }
.price-pill.splurge:hover { background: rgba(245,166,35,0.15); }

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--teal-light);
  border-top: 1px solid rgba(26,122,110,0.15);
  padding: 64px 0;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.newsletter-inner p { color: var(--ink-muted); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-darker);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--white);
  outline: none;
  color: var(--ink);
}
.newsletter-input:focus { border-color: var(--teal); }
.newsletter-note { margin-top: 12px; font-size: 14px; color: var(--teal); font-weight: 500; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; font-size: 22px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.affiliate-disclosure { font-size: 12px !important; color: rgba(255,255,255,0.3) !important; margin-top: 16px !important; line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; }

/* featured section alternating bg */
.featured-section { background: var(--cream-dark); }
.categories-section { background: var(--cream); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-card, .cat-card {
  animation: fadeUp 0.4s ease both;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .price-callout-inner { flex-direction: column; align-items: flex-start; }
  .filter-inner { gap: 16px; }
}
@media (max-width: 640px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section { padding: 48px 0; }
}

/* ============ ACTIVE NAV LINK ============ */
.nav-active {
  background: var(--amber-pale) !important;
  color: var(--amber) !important;
  border-radius: 100px;
}

/* ============ INFO / STATIC PAGES ============ */
.info-page-content {
  max-width: 720px;
  margin: 0 auto;
}
.info-page-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.info-page-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.info-page-content p {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.info-page-content a { color: var(--amber); text-decoration: underline; }
.info-page-content ul {
  margin: 12px 0 16px 24px;
  color: var(--ink-light);
  font-size: 16px;
  line-height: 2;
}

/* ============ CONTACT FORM ============ */
.contact-form-wrap { margin-top: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { resize: vertical; }

/* ============ REAL PRODUCT IMAGES ============ */
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  background: var(--cream-dark);
}
.product-card:hover .product-real-img {
  transform: scale(1.04);
}
/* Keep aspect ratio consistent whether image or emoji */
.product-img-wrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}

/* ============ DUAL BUY BUTTONS ============ */

/* When there are TWO buttons, stack the footer vertically */
.product-footer.has-two-buttons {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

/* Button group wrapper */
.buy-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

/* Primary button — full amber (same as existing) */
.btn-buy-primary {
  text-align: center;
  justify-content: center;
}

/* Secondary button — outlined style, matches the site palette */
.btn-buy-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}
.btn-buy-secondary:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-1px);
}

/* When two buttons show, price sits above them full-width */
.product-footer.has-two-buttons .product-price {
  font-size: 22px;
}

/* On very small screens, make sure buttons don't overflow */
@media (max-width: 400px) {
  .btn-buy, .btn-buy-primary, .btn-buy-secondary {
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* ============ VISTAGIFTS LOGO SIZING ============ */
/* Vista is longer than Gift — slight size adjustment for clean fit */
.logo {
  font-size: 22px !important;
  letter-spacing: -0.5px;
}
.footer-brand .logo {
  font-size: 20px !important;
}
