/* Claude Vision QA - Auto-generated CSS fixes */

/* Fix: Product category images - ensure proper sizing */
.category-grid img, .product-category img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
}

/* Fix: Product carousel grid layout */
.nouvel-arrive-products, .new-arrivals .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* Fix: App section overflow */
.app-section img, .app-cta img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  overflow: hidden;
}
.app-section, .app-cta-section {
  overflow: hidden;
  position: relative;
}

/* Fix: Carousel/slider image sizing */
.swiper-slide img, .carousel-item img, .slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix: Footer columns layout */
footer .footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
footer .footer-columns > div {
  flex: 1;
  min-width: 0;
}

/* Fix: Trust badges layout */
.trust-badges, .reassurance-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

/* Fix: Selection saison product card images */
.selection-saison .product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* Fix: Carousel pagination dots */
.swiper-pagination-bullet, .slick-dots li button {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
}
.swiper-pagination-bullet-active, .slick-dots li.slick-active button {
  background-color: #1b7a2b;
}

/* Fix: Delivery info cards */
.delivery-info-card, .feature-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
}

/* Fix: Footer payment icons */
.payment-icons img, .footer-payment img {
  height: 24px;
  margin-right: 8px;
}
