/* Products Page Specific Styles */

.products-section {
  background: #fff;
  padding: 100px 0 60px 0;
}
.products-title {
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 2.5rem;
  color: #c0392b;
  margin-bottom: 2.5rem;
}
.product-section {
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem 2.5rem 2rem;
}
.product-section.reverse {
  flex-direction: row-reverse;
}
.product-img-large {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 2rem 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.product-section.reverse .product-img-large {
  margin: 0 0 0 2rem;
}
.product-info {
  flex: 1 1 350px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.product-title {
  font-family: "Bellefair", serif;
  font-size: 1.7rem;
  color: #c0392b;
  margin-bottom: 0.7rem;
}
.product-desc {
  font-family: "Belleza", sans-serif;
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 0.7rem;
}
.product-details {
  font-size: 0.98rem;
  color: #666;
  margin-bottom: 0.7rem;
}
.product-colors {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.7rem;
}
.product-color-sample {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: inline-block;
}
.product-color-red {
  background: #c0392b;
}
.product-color-pink {
  background: #e1707a;
}
.product-color-yellow {
  background: #ffe066;
}
.product-color-white {
  background: #fff;
  border: 2px solid #eee;
}

.products-custom {
  max-width: 700px;
  margin: 3rem auto 0 auto;
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
}
.products-custom-title {
  font-family: "Bellefair", serif;
  font-size: 1.2rem;
  color: #c0392b;
  margin-bottom: 0.7rem;
}
.products-custom-desc {
  font-family: "Belleza", sans-serif;
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.products-contact-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #ff6b6b;
}
.products-contact-cta:hover {
  background: transparent;
  color: #ff6b6b;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.13);
}
@media (max-width: 900px) {
  .product-section {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0.7rem;
  }
  .product-section.reverse {
    flex-direction: column;
  }
  .product-img-large {
    margin: 0 0 1.2rem 0 !important;
  }
}
@media (max-width: 600px) {
  .products-section {
    padding: 60px 0 40px 0;
  }
  .products-title {
    font-size: 2rem;
  }
  .products-custom {
    padding: 1.2rem 0.7rem;
  }
  .product-img-large {
    width: 100%;
    max-width: 260px;
    height: 140px;
  }
}
