/* ===== VARIABLES ===== */
:root {
  --red: #C0392B;
  --red-light: #E74C3C;
  --green: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #388E3C;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --cream: #FFF8EC;
  --cream-2: #FEF3DC;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E8DDD0;
  --shadow: 0 6px 28px rgba(27,94,32,0.12);
  --radius: 10px;
  --transition: 0.3s ease;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-display: 'Mountains of Christmas', cursive;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.75; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem,5vw,3.8rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag { display: inline-block; background: rgba(212,160,23,0.12); color: var(--gold); font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 50px; border: 1px solid rgba(212,160,23,0.3); margin-bottom: 0.8rem; }
.section-title { margin-bottom: 0.75rem; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin-bottom: 2.5rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; padding: 0.85rem 2rem; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.35); }
.btn-green { background: var(--green-mid); color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.35); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green-mid); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== SNOW BANNER ===== */
.snow-banner { background: var(--green); padding: 0.6rem 0; }
.snow-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.snow-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.snow-item i { color: var(--gold-light); }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 2px solid var(--cream-2); padding: 0.8rem 0; transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(27,94,32,0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--red); line-height: 1; }
.nav-logo i { color: var(--green); font-size: 1.2rem; margin-right: 0.3rem; }
.nav-logo span { color: var(--green); }
.nav-menu { display: flex; align-items: center; gap: 1.8rem; }
.nav-link { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--text-muted); transition: color var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-cart { position: relative; }
.nav-cart-badge { position: absolute; top: -8px; right: -8px; background: var(--red); color: var(--white); font-size: 0.62rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 50%, #1B3A1B 100%); position: relative; overflow: hidden; padding: 5rem 0 3rem; min-height: 90vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('https://picsum.photos/seed/christmashero/1600/900') center/cover no-repeat; opacity: 0.08; }
.hero-snowflakes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.snowflake { position: absolute; color: rgba(255,255,255,0.6); font-size: 1rem; animation: fall linear infinite; }
.snowflake:nth-child(1) { left:5%; animation-duration:8s; animation-delay:0s; font-size:0.8rem; }
.snowflake:nth-child(2) { left:15%; animation-duration:10s; animation-delay:1s; font-size:1.2rem; }
.snowflake:nth-child(3) { left:25%; animation-duration:7s; animation-delay:2s; }
.snowflake:nth-child(4) { left:40%; animation-duration:12s; animation-delay:0.5s; font-size:0.6rem; }
.snowflake:nth-child(5) { left:55%; animation-duration:9s; animation-delay:3s; font-size:1rem; }
.snowflake:nth-child(6) { left:70%; animation-duration:11s; animation-delay:1.5s; font-size:0.7rem; }
.snowflake:nth-child(7) { left:80%; animation-duration:8s; animation-delay:4s; font-size:1.1rem; }
.snowflake:nth-child(8) { left:90%; animation-duration:10s; animation-delay:2s; font-size:0.9rem; }
@keyframes fall { 0% { top:-10%; opacity:1; } 100% { top:110%; opacity:0.3; } }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(212,160,23,0.2); border: 1px solid rgba(212,160,23,0.4); color: var(--gold-light); font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); font-family: var(--font-display); font-size: clamp(3rem,6vw,5rem); margin-bottom: 0.75rem; line-height: 1.1; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-desc { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.hero-visual { position: relative; display: flex; flex-direction: column; gap: 1.2rem; }
.hero-img-main { border-radius: 20px; width: 100%; height: 360px; object-fit: cover; border: 3px solid rgba(212,160,23,0.3); }
.hero-gift-badge { position: absolute; top: -16px; right: -16px; background: var(--red); border-radius: 50%; width: 80px; height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-head); color: var(--white); box-shadow: 0 4px 16px rgba(192,57,43,0.4); }
.hero-gift-badge .num { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.hero-gift-badge .label { font-size: 0.62rem; line-height: 1.2; text-align: center; }
.hero-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-mini-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px); border-radius: 12px; padding: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-mini-img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; }
.hero-mini-name { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--white); }
.hero-mini-price { color: var(--gold-light); font-size: 0.85rem; font-weight: 700; }

/* ===== CATEGORIES ===== */
.categories { padding: 5rem 0; }
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.cat-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); cursor: pointer; text-align: center; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cat-img { width: 100%; height: 150px; object-fit: cover; }
.cat-body { padding: 1rem; }
.cat-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.cat-body h4 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--text); }
.cat-body span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FEATURED PRODUCTS ===== */
.products { padding: 6rem 0; background: var(--cream-2); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.8rem; }
.product-card { background: var(--white); border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-img-wrap { position: relative; }
.product-img { width: 100%; height: 180px; object-fit: cover; }
.product-badge { position: absolute; top: 10px; left: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.7rem; border-radius: 50px; }
.badge-new { background: var(--green-mid); color: var(--white); }
.badge-sale { background: var(--red); color: var(--white); }
.badge-popular { background: var(--gold); color: var(--white); }
.product-wishlist { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; cursor: pointer; transition: background var(--transition); }
.product-wishlist:hover { background: var(--red); color: var(--white); }
.product-body { padding: 1.2rem; }
.product-cat { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.product-name { font-family: var(--font-head); font-size: 1rem; margin-bottom: 0.5rem; }
.product-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 0.6rem; }
.product-stars span { color: var(--text-muted); font-family: var(--font-body); }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid var(--border); }
.product-price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--red); }
.product-price del { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; margin-left: 0.3rem; }
.product-add { font-size: 0.78rem; font-weight: 700; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.05em; background: var(--green-mid); color: var(--white); padding: 0.45rem 0.9rem; border-radius: 50px; border: none; cursor: pointer; transition: background var(--transition); }
.product-add:hover { background: var(--green-light); }

/* ===== ABOUT / STORY ===== */
.story { padding: 6rem 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-img { border-radius: 20px; width: 100%; height: 440px; object-fit: cover; border: 4px solid var(--cream-2); }
.story-ornaments { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 1.5rem; }
.story-checklist { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.story-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 600; }
.story-check i { color: var(--green-mid); }

/* ===== COUNTDOWN ===== */
.countdown-section { padding: 4rem 0; background: var(--red); position: relative; overflow: hidden; }
.countdown-section::before { content:''; position:absolute; inset:0; background:url('https://picsum.photos/seed/xmas_pattern/400/400') repeat; opacity:0.04; }
.countdown-inner { position:relative; z-index:1; text-align:center; }
.countdown-title { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); margin-bottom: 0.5rem; }
.countdown-sub { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.countdown-units { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.countdown-unit { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 1.5rem 2rem; min-width: 100px; text-align: center; }
.countdown-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; }
.countdown-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }

/* ===== GIFT GUIDE ===== */
.gift-guide { padding: 6rem 0; background: var(--green); }
.gift-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 3rem; }
.gift-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; text-align: center; transition: transform var(--transition), background var(--transition); }
.gift-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.gift-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.gift-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.gift-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; }
.gift-range { font-family: var(--font-head); font-weight: 700; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 1.2rem; }
.gift-link { font-size: 0.85rem; font-weight: 700; color: var(--gold-light); display: inline-flex; align-items: center; gap: 0.4rem; border-bottom: 1px solid rgba(240,192,64,0.3); padding-bottom: 0.2rem; transition: gap var(--transition); }
.gift-link:hover { gap: 0.7rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 6rem 0; background: var(--cream-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 3rem; }
.testi-card { background: var(--white); border-radius: 14px; padding: 2rem; border: 1px solid var(--border); }
.testi-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.testi-text { color: var(--text); font-style: italic; font-size: 0.95rem; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--cream-2); }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.testi-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq { padding: 6rem 0; }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--text); text-align: left; gap: 1rem; }
.faq-q i { color: var(--red); transition: transform var(--transition); font-size: 0.85rem; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.3rem; color: var(--text-muted); font-size: 0.95rem; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info p { color: var(--text-muted); margin: 1rem 0 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(192,57,43,0.08); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item-val { font-weight: 600; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.83rem; font-weight: 700; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 0.8rem 1rem; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); transition: border-color var(--transition), box-shadow var(--transition); resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; margin-top: 0.5rem; }

/* ===== FOOTER ===== */
.footer { background: var(--green); color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.9rem; margin-top: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h5 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: 0.04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold-light); }

/* ===== BACK TO TOP ===== */
#backToTop { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--red); color: var(--white); border-radius: 50%; border: none; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(192,57,43,0.4); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); z-index: 900; }
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .products-grid, .cat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: fixed; inset: 0; top: 68px; background: var(--white); padding: 2rem; gap: 1.2rem; align-items: flex-start; border-top: 1px solid var(--border); }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .snow-banner { display: none; }
  .testi-grid, .gift-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .countdown-units { gap: 0.75rem; }
  .countdown-unit { padding: 1rem 1.2rem; min-width: 70px; }
  .countdown-num { font-size: 2rem; }
}
@media (max-width: 480px) {
  .products-grid, .cat-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}
