/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--background) 0%, rgba(245, 158, 11, 0.05) 100%);
  padding: 4rem 0;
  margin-top: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  width: fit-content;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

.hero-title span {
  color: var(--accent);
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-buttons {
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  flex: 1;
  min-width: 200px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.badge-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.hero-image {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-placeholder {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(245, 158, 11, 0.2);
  text-align: center;
}

/* Featured Section */
.featured {
  padding: 5rem 0;
  background-color: var(--card);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Category Filters */
.category-filters {
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border);
  background-color: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--background);
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.15);
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.8rem;
  animation: pulse 2s ease-in-out infinite;
}

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: var(--text);
}

.product-rating {
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.current-price {
  color: var(--primary);
  font-size: 1.3rem;
}

.original-price {
  font-size: 0.95rem;
}

.product-actions {
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.9rem;
}

.product-actions .btn-secondary {
  padding: 0.75rem;
  min-width: 45px;
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  background-color: white;
  color: var(--primary);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form button {
  padding: 1rem 2rem;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-placeholder {
    font-size: 4rem;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .category-filters {
    justify-content: center;
  }

  .cta h2 {
    font-size: 1.75rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: auto;
  }

  .newsletter-form button {
    width: 100%;
  }
}
