/* ========================================
   PRODUCTS SECTION CSS
   ======================================== */

.products {
  background-color: white;
  padding: 60px 0;
}

.products h2 {
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.product-item {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.product-item h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.product-item p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.product-item .btn {
  width: 100%;
  font-size: 1rem;
  padding: 14px 0;
}

/* Newsletter Section */

.newsletter {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  white-space: nowrap;
}

.consent-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.consent-text a {
  color: #FFD700;
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .newsletter-form input, .newsletter-form button {
    width: 100%;
    min-width: unset;
  }
}

