/* =====================================================
   PRODUCTS PAGE STYLES – Modern, Bold Design
   ===================================================== */

/* HERO SECTION */
.products-hero {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.products-hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.products-hero p {
  font-size: 1.375rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
}

/* CATEGORIES SECTION */
.categories-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
}

.section-intro h2 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-text);
}

.section-intro .highlight {
  color: var(--brand-red);
}

.section-intro p {
  font-size: 1.125rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.category-card {
  background: var(--light-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
  background: var(--white);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-text);
}

.category-card p {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin: 0;
}

/* PRODUCTS LISTING */
.products-listing {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
}

.product-image {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.product-content {
  padding: var(--spacing-lg);
}

.product-category {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-red);
  margin-bottom: var(--spacing-xs);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-text);
}

.product-card p {
  font-size: 1rem;
  color: var(--mid-grey);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(255, 10, 6, 0.1);
  color: var(--brand-red);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .btn-secondary {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 2.5rem;
  }

  .products-hero p {
    font-size: 1.125rem;
  }

  .section-intro h2 {
    font-size: 2rem;
  }

  .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}
