/* Products Page Styles */

/* Hero Section */
.products-hero {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.products-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea1c26 0%, #c41820 100%);
}

.products-hero h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-hero .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #ea1c26;
}

.products-hero .hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #ddd;
}

/* Section Titles */
.section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #666;
  margin-bottom: 50px;
}

/* Product Categories Section */
.products-categories {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: #ea1c26;
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ea1c26 0%, #c41820 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #c41820 0%, #ea1c26 100%);
}

.category-icon i {
  font-size: 2.5em;
  color: white;
}

.category-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
}

.category-card p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 50px;
}

.category-link {
  display: inline-block;
  color: #ea1c26;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.category-link:hover {
  color: #c41820;
  transform: translateX(5px);
}

.category-link i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.category-link:hover i {
  margin-left: 10px;
}

/* Engine Oils Section */
.engine-oils-section {
  padding: 80px 0;
  background-color: white;
}

.oils-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.oils-text h3 {
  font-size: 2em;
  color: #333;
  margin-bottom: 25px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.benefits-list li {
  padding: 15px 0;
  font-size: 1.1em;
  color: #333;
  border-bottom: 1px solid #eee;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list i {
  color: #ea1c26;
  margin-right: 15px;
  font-size: 1.2em;
}

.oils-brands h3 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 25px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.brand-tag {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ea1c26 0%, #c41820 100%);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(234, 28, 38, 0.2);
}

.brand-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(234, 28, 38, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ea1c26 0%, #c41820 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(234, 28, 38, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(234, 28, 38, 0.4);
  color: white;
  text-decoration: none;
}

/* Brands Section */
.brands-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.brand-item {
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2em;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 2px solid transparent;
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-color: #ea1c26;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ea1c26 0%, #c41820 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature-icon i {
  font-size: 3em;
  color: white;
}

.feature-card h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #666;
  font-size: 1.1em;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #f8f9fa;
  color: #333;
  text-align: center;
  border-top: 4px solid #ea1c26;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
}

.cta-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #666;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 18px 45px;
  font-size: 1.2em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid #ea1c26;
}

.btn-primary {
  background: #ea1c26;
  color: white;
}

.btn-primary:hover {
  background: #c41820;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(234, 28, 38, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ea1c26;
}

.btn-secondary:hover {
  background: #ea1c26;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(234, 28, 38, 0.3);
}

.btn-secondary i {
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 2em;
  }

  .products-hero .hero-subtitle {
    font-size: 1.2em;
  }

  .products-hero .hero-description {
    font-size: 1em;
  }

  .section-title {
    font-size: 1.8em;
  }

  .section-subtitle {
    font-size: 1em;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oils-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .cta-section p {
    font-size: 1.1em;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .products-hero {
    padding: 50px 0 40px;
  }

  .products-hero h1 {
    font-size: 1.6em;
  }

  .category-card {
    padding: 30px 20px;
  }

  .category-icon {
    width: 60px;
    height: 60px;
  }

  .category-icon i {
    font-size: 2em;
  }

  .brand-tag {
    padding: 10px 20px;
    font-size: 1em;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
  }

  .feature-icon i {
    font-size: 2.5em;
  }
}
