@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,400&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --coral: #FF5C3A;
  --coral-light: #FFF0EC;
  --coral-dark: #CC3D22;
  --gold: #F0A500;
  --gold-light: #FFF8E7;
  --dark: #1A1208;
  --dark-2: #2D2416;
  --mid: #6B5B45;
  --light: #F9F6F2;
  --white: #FFFFFF;
  --border: rgba(26,18,8,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(26,18,8,0.08);
  --shadow-lg: 0 12px 48px rgba(26,18,8,0.14);
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,246,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--coral);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--coral); }

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,92,58,0.2);
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,58,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--mid);
  margin-top: 4px;
}

/* ── UPCOMING DATES BANNER ── */
.upcoming-banner {
  background: var(--dark);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

.upcoming-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.02) 60px,
    rgba(255,255,255,0.02) 61px
  );
}

.upcoming-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  position: relative;
}

.upcoming-date-badge {
  background: var(--coral);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.upcoming-separator { color: rgba(255,255,255,0.2); font-size: 20px; }

/* ── SECTION ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.section-title span { color: var(--coral); font-style: italic; }

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.section-link:hover { gap: 8px; }

/* ── OCCASIONS GRID ── */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.occasion-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.occasion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  opacity: 0;
  transition: var(--transition);
}

.occasion-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.occasion-card:hover::before { opacity: 0.04; }

.occasion-card.urgent {
  border-color: var(--coral);
  background: var(--coral-light);
}

.occasion-emoji {
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
}

.occasion-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  position: relative;
}

.occasion-date {
  font-size: 12px;
  color: var(--mid);
  position: relative;
}

.occasion-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--coral);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
}

/* ── TRENDING ── */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,92,58,0.3);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.product-body { padding: 1rem; }

.product-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--dark);
}

.product-profile {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 10px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
}

.product-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.btn-store {
  flex: 1;
  padding: 7px 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-shopee {
  background: #FF6600;
  color: white;
}

.btn-shopee:hover { background: #e05a00; }

.btn-ml {
  background: #FFE600;
  color: #1a1a1a;
}

.btn-ml:hover { background: #e6d800; }

/* ── INSPIRATION STRIPS ── */
.inspo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.inspo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
}

.inspo-card:hover {
  border-color: var(--coral);
  background: var(--coral-light);
  transform: translateY(-3px);
}

.inspo-emoji { font-size: 1.8rem; margin-bottom: 8px; }

.inspo-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--dark); color: var(--white); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.how-step { position: relative; }

.how-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: -1.5rem;
}

.how-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.how-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.how-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.how-section .section-title { color: var(--white); }

/* ── COUNTDOWN ── */
.countdown-section {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.countdown-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.countdown-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.countdown-timer {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.countdown-unit { text-align: center; }

.countdown-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.countdown-unit-label {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.4;
  line-height: 1.2;
  align-self: flex-start;
  margin-top: 4px;
}

.countdown-section .btn-primary {
  background: white;
  color: var(--coral-dark);
}

.countdown-section .btn-primary:hover {
  background: var(--light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .logo-text { color: white; font-size: 20px; }
.footer-brand p { font-size: 13px; margin-top: 0.75rem; line-height: 1.6; }

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; transition: var(--transition); }
.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-disclaimer {
  font-size: 11px;
  opacity: 0.5;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.5rem; }
  .section { padding: 3rem 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .countdown-timer { gap: 1rem; }
  .countdown-num { font-size: 2.5rem; }
  .upcoming-banner { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}
