/* ═══════════════════════════════════════════════════
   Betül's Whimsy Creations — Shared Stylesheet
   betulswhimsycreations.com
   ═══════════════════════════════════════════════════ */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600;700&display=swap');

/* ─── VARIABLES ─── */
:root {
  --cream:        #fdf6ee;
  --warm-white:   #fffaf4;
  --blush:        #f2c4c4;
  --rose:         #d4818a;
  --deep-rose:    #9e4c5a;
  --lavender:     #c5b8d8;
  --purple:       #7c5c99;
  --deep-purple:  #4a3060;
  --gold:         #c9a84c;
  --light-gold:   #f0d98a;
  --teal:         #5a9ea0;
  --text-dark:    #2d2228;
  --text-mid:     #6b5060;
  --text-light:   #a08898;
  --border:       rgba(201,168,76,0.2);
  --shadow-sm:    0 2px 12px rgba(74,48,96,0.08);
  --shadow-md:    0 6px 24px rgba(74,48,96,0.12);
  --shadow-lg:    0 12px 40px rgba(74,48,96,0.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: 'Lato', sans-serif; }
input, select, textarea { font-family: 'Lato', sans-serif; }
ul, ol { list-style: none; }

/* ─── BACKGROUND ORBS ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(197,184,216,0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(242,196,196,0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 1; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ─── TYPOGRAPHY ─── */
.font-display { font-family: 'Playfair Display', serif; }
.font-script  { font-family: 'Dancing Script', cursive; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--deep-purple); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
  flex-shrink: 0;
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow { justify-content: center; }
.section-header h2 em { font-style: italic; color: var(--rose); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--deep-purple), var(--purple));
  color: white;
  box-shadow: 0 4px 20px rgba(74,48,96,0.25);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(74,48,96,0.35); }

.btn-secondary {
  background: white;
  color: var(--deep-purple);
  border: 1.5px solid var(--deep-purple);
}
.btn-secondary:hover { background: var(--deep-purple); color: white; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.4); }

.btn-ghost {
  background: transparent;
  color: var(--deep-purple);
  padding: 0;
  letter-spacing: 0.1em;
}
.btn-ghost::after { content: ' →'; transition: margin 0.2s; }
.btn-ghost:hover { transform: none; }
.btn-ghost:hover::after { margin-left: 6px; }

.btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ─── BADGES ─── */
.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.badge-rose    { background: var(--rose); color: white; }
.badge-purple  { background: var(--deep-purple); color: white; }
.badge-gold    { background: var(--gold); color: var(--text-dark); }
.badge-teal    { background: var(--teal); color: white; }
.badge-custom  { background: var(--light-gold); color: var(--text-dark); }

/* ─── CARDS ─── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ─── NAVBAR ─── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(253,246,238,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.55rem;
  color: var(--deep-purple);
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo span { color: var(--rose); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--deep-purple); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--deep-purple); font-weight: 700; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-lang {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  transition: all 0.2s;
}
.nav-lang:hover, .nav-lang.active { background: var(--deep-purple); color: white; border-color: var(--deep-purple); }

.nav-cart-btn {
  background: var(--deep-purple);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cart-btn:hover { background: var(--purple); transform: translateY(-1px); }

.cart-badge {
  background: var(--rose);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--deep-purple);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw 2rem;
  z-index: 499;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  background: var(--deep-purple);
  padding: 0.7rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
#footer {
  background: var(--deep-purple);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo {
  color: white;
  display: block;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
  text-decoration: none;
  color: white;
}
.social-link:hover { background: var(--rose); }
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--light-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 400;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,34,40,0.5);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--warm-white);
  z-index: 601;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(45,34,40,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--deep-purple);
}
.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-mid);
  transition: color 0.2s;
  line-height: 1;
}
.cart-close-btn:hover { color: var(--rose); }

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}
.cart-empty-state {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-light);
}
.cart-empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty-state p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.cart-item-img {
  width: 64px; height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f8e6f0, #ead4f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.cart-item-variant { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.3rem; }
.cart-item-price { font-size: 0.9rem; color: var(--purple); font-weight: 700; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.qty-btn:hover { background: var(--deep-purple); color: white; border-color: var(--deep-purple); }
.qty-val { font-size: 0.85rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  align-self: flex-start;
  transition: color 0.2s;
  line-height: 1;
  padding: 2px;
}
.cart-item-remove:hover { color: var(--rose); }

.cart-drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: white;
}
.cart-shipping-info {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding: 0.6rem 0.9rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  text-align: center;
}
.cart-shipping-info.free { color: #3a7a3a; background: #f0f8f0; }
.cart-totals { margin-bottom: 1.2rem; }
.cart-subtotal, .cart-shipping-line, .cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--text-mid);
}
.cart-total-line {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--deep-purple);
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
}
.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(74,48,96,0.25);
  margin-bottom: 0.75rem;
}
.checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(74,48,96,0.35); }
.checkout-btn:disabled { opacity: 0.5; transform: none; cursor: not-allowed; }
.cart-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--deep-purple);
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 700;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(74,48,96,0.3);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #3a7a3a; }
.toast.error   { background: var(--deep-rose); }

/* ─── LOADING SPINNER ─── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--lavender);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.skeleton {
  background: linear-gradient(90deg, #f0e8f0 25%, #e8dce8 50%, #f0e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ─── FORMS ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}
.form-input, .form-select, .form-textarea {
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,92,153,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ─── STAR RATING ─── */
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; }
.stars-input { display: flex; gap: 0.25rem; }
.star-btn { background: none; border: none; font-size: 1.4rem; color: var(--text-light); transition: color 0.2s; line-height: 1; }
.star-btn.active, .star-btn:hover { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── SEASONAL BANNER ─── */
.seasonal-banner {
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.seasonal-banner.christmas { background: linear-gradient(135deg, #1a3a2a, #2d5a3d); }
.seasonal-banner.easter    { background: linear-gradient(135deg, #4a3060, #7c5c99); }
.seasonal-banner.halloween { background: linear-gradient(135deg, #2a1a0a, #5a3010); }
.seasonal-banner.default   { background: linear-gradient(135deg, var(--deep-purple), var(--purple)); }

.seasonal-banner-text h2 { color: white; font-size: 1.8rem; margin-bottom: 0.5rem; }
.seasonal-banner-text h2 em { color: var(--light-gold); font-style: italic; }
.seasonal-banner-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.animate-fade-up  { animation: fadeUp 0.7s ease both; }
.animate-fade-in  { animation: fadeIn 0.5s ease both; }
.animate-float    { animation: float 6s ease-in-out infinite; }

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .loading-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .seasonal-banner { flex-direction: column; text-align: center; }
  .loading-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.78rem; }
}
