/* Products Section Styles */

.products-section {
  padding: 80px 0;
  background-color: #f7fafc;
}

.products-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.products-section__title {
  font-size: 42px;
  font-weight: 900;
  color: #1a1f2c;
  margin-bottom: 15px;
  font-family: "Raleway", sans-serif;
}

.products-section__subtitle {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  height: 280px;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-card__image-container {
  width: 45%;
  overflow: hidden;
  position: relative;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.3s ease;
}

.product-card__image--primary {
  opacity: 1;
}

.product-card__image--secondary {
  opacity: 0;
}

.product-card__content {
  width: 55%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__badge {
  background: linear-gradient(135deg, #fe4040, #fb8404);
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}

.product-card__badge-text {
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f2c;
  margin-bottom: 12px;
  margin-top: 8px;
  font-family: "Raleway", sans-serif;
}

.product-card__description {
  color: #4a5568;
  font-size: 13px;
  line-height: 1.6;
}

.product-card__link {
  color: #fe4040;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.product-card__link:hover {
  color: #fb8404;
}

.product-card__link-icon {
  margin-left: 8px;
  font-size: 11px;
}

.products-section__cta {
  text-align: center;
}

.products-section__cta-button {
  background: linear-gradient(135deg, #fe4040 0%, #fb8404 100%);
  color: #ffffff;
  padding: 15px 40px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(254, 64, 64, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.products-section__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(254, 64, 64, 0.4);
}

.products-section__cta-button-icon {
  margin-left: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .product-card {
    height: auto;
    flex-direction: column;
  }

  .product-card__image-container {
    width: 100%;
    height: 200px;
  }

  .product-card__content {
    width: 100%;
    padding: 20px;
  }

  .products-section__title {
    font-size: clamp(28px, 6vw, 42px);
  }
}
