/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
  background: linear-gradient(180deg, rgba(234,185,101,0.08) 0%, transparent 100%);
}

.hero-content h1 {
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.slogan {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: var(--space-lg);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 280px;
  margin: 0 auto;
}

/* Featured */
.featured {
  padding: var(--space-xl) 0;
}

.featured h2 {
  text-align: center;
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: var(--space-lg);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.featured-card {
  background: var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.featured-card .product-info {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.featured-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: var(--space-xs);
  flex-grow: 1;
}

.featured-card .product-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.featured-cta {
  text-align: center;
}

/* Tablet */
@media (min-width: 600px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 900px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .slogan {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}