:root {
  --yellow: #FFD21E;
  --blue: #4FC3F7;
  --text: #1F2937;
  --text-secondary: #6B7280;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #FFFFFF;
  color: var(--text);
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #F3F4F6;
  z-index: 100;
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-btn {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.search-bar {
  flex: 1;
  max-width: 600px;
  margin: 0 24px;
}

.search-bar input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}

.search-bar input:focus {
  border-color: #D1D5DB;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.search-bar input::placeholder {
  color: #9CA3AF;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn-text {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 12px;
}

.btn-text:hover {
  color: var(--text);
}

.btn-outline {
  background: transparent;
  border: 1px solid #E5E7EB;
  color: var(--text);
}

.btn-outline:hover {
  background: #F9FAFB;
}

.btn-dark {
  background: var(--text);
  color: white;
}

.btn-dark:hover {
  background: #374151;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.5;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: #FFC700;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 210, 30, 0.3);
}

/* Illustration */
.hero-illustration {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  pointer-events: none;
  opacity: 0.25;
}

/* Hand-drawn decorative elements */
.doodle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.doodle-lemon {
  width: 100px;
  height: 100px;
  fill: #FFD700;
}

.doodle-circle {
  width: 80px;
  height: 80px;
  stroke: #FF9A4D;
  stroke-width: 3;
  fill: none;
}

.doodle-wave {
  width: 150px;
  height: 50px;
  stroke: #FFB84D;
  stroke-width: 3;
  fill: none;
}

.doodle-star {
  width: 60px;
  height: 60px;
  fill: #FFA500;
}

.doodle-squiggle {
  width: 120px;
  height: 120px;
  stroke: #FFD700;
  stroke-width: 2;
  fill: none;
}

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

/* Different opacity levels for depth */
.doodle-1 { top: 15%; left: 5%; opacity: 0.18; animation: float 8s ease-in-out infinite; }
.doodle-2 { top: 25%; right: 8%; opacity: 0.12; animation: float 10s ease-in-out infinite 1s; }
.doodle-3 { top: 45%; left: 10%; opacity: 0.15; animation: float 12s ease-in-out infinite 2s; }
.doodle-4 { top: 65%; right: 12%; opacity: 0.2; animation: float 9s ease-in-out infinite 1.5s; }
.doodle-5 { top: 80%; left: 15%; opacity: 0.08; animation: float 11s ease-in-out infinite 0.5s; }
.doodle-6 { top: 35%; left: 3%; opacity: 0.1; animation: float 13s ease-in-out infinite 3s; }
.doodle-7 { top: 55%; right: 5%; opacity: 0.22; animation: float 10s ease-in-out infinite 2.5s; }
.doodle-8 { top: 90%; right: 20%; opacity: 0.14; animation: float 14s ease-in-out infinite 1s; }

/* Bottom decorative elements */
.doodle-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.doodle-triangle {
  width: 70px;
  height: 70px;
  fill: #FFB84D;
}

.doodle-9 { bottom: 12%; left: 8%; opacity: 0.14; animation: float 10s ease-in-out infinite 2s; }
.doodle-10 { bottom: 18%; right: 12%; opacity: 0.18; animation: float 11s ease-in-out infinite 1s; }

.section {
  position: relative;
  z-index: 1;
}

/* Products Section */
.section {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 64px;
  font-weight: 400;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.featured-card-wrapper {
  margin-bottom: 48px;
}

.featured-card {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  border: none;
  color: white;
}

.featured-card h3,
.featured-card p {
  color: white;
}

.featured-card .product-tag {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.featured-card:hover {
  border-color: transparent;
}

/* CTA Section */
.cta-section {
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.cta-section .section-title {
  margin-bottom: 24px;
}

.cta-section .section-subtitle {
  margin-bottom: 48px;
}

.product-card {
  background: #FFFFFF;
  border: 2px solid #F3F4F6;
  border-radius: 24px;
  padding: 40px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.product-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.product-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Footer */
footer {
  border-top: 1px solid #F3F4F6;
  padding: 64px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #F3F4F6;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-illustration {
    opacity: 0.08;
  }

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

@media (max-width: 768px) {
  .nav-inner {
    padding: 16px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section {
    padding: 80px 24px;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  footer {
    padding: 48px 24px;
  }

  .hero-illustration {
    display: none;
  }
}
