/** Shopify CDN: Minification failed

Line 304:0 Unexpected "}"

**/
/* assets/section-collection-grid2.css */

.collection-grid-section {
  margin-bottom: 5rem;
}

/*.section-header {
  text-align: center;
  margin-bottom: 4rem;
} */

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.75);
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.5;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.product-card {
  background: rgb(var(--color-background));
  border-radius: 0.8rem;
  overflow: hidden;
  border: 0.1rem solid rgba(var(--color-border), 0.08);
}

.product-image-container {
  position: relative;
  overflow: hidden;
}

.product-image-link {
  display: block;
  text-decoration: none;
}

.product-image {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.02);
}

.product-image-placeholder {
  width: 100%;
  height: 25rem;
  background-color: rgba(var(--color-foreground), 0.04);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder svg {
  width: 8rem;
  height: 8rem;
  opacity: 0.3;
}

.comfort-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(var(--color-background), 0.9);
  color: rgb(var(--color-foreground));
  padding: 0.9rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  backdrop-filter: blur(1rem);
}

.product-info {
  padding: 0rem 1rem 0rem 1rem;
  text-align: left;
}

.product-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: left;
}

.product-title a {
  text-decoration: none;
  color: #00237D;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: rgb(var(--color-link));
}

.product-price {
  font-size: 2rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin-bottom: 1.5rem;
  text-align: left;
}

.price-original {
  color: rgba(var(--color-foreground), 0.5);
  text-decoration: line-through;
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 1rem;
}

.product-description-short {
  font-size: 1.6rem;
  color: rgba(var(--color-foreground), 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: left;
}

.product-description-multi {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.65);
  line-height: 1.6;
  text-align: left;
}

.product-description-multi ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.product-description-multi li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
}

.product-description-multi li:before {
  content: "•";
  color: rgb(var(--color-foreground));
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.product-description-multi p {
  margin-bottom: 1rem;
}

.collection-empty {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1 / -1;
}

.collection-empty p {
  font-size: 1.8rem;
  color: rgba(var(--color-foreground), 0.5);
}

.collection-view-all {
  text-align: center;
  margin-top: 2rem;
}

/* Desktop - 2 colonnes */
@media screen and (min-width: 750px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .product-image {
    height: 30rem;
  }

  .product-image-placeholder {
    height: 30rem;
  }

 /* .section-title {
    font-size: 3.2rem;
  }*/

  .product-title {
    font-size: 2.8rem;
  }

  .product-price {
    font-size: 2.2rem;
  }

  .product-description-short {
    font-size: 1.8rem;
  }

  .product-description-multi {
    font-size: 1.5rem;
  }

  .product-description-multi li {
    margin-bottom: 1rem;
  }
}

/* Tablette */
@media screen and (min-width: 990px) {
  .product-info {
    padding: 0rem 1rem 0rem 1rem;
    text-align: left;
  }
}

/* Large desktop */
@media screen and (min-width: 1200px) {
  .products-grid {
    gap: 5rem;
  }

  .product-image {
    height: 35rem;
  }

  .product-image-placeholder {
    height: 35rem;
  }
}

/* Mobile optimizations */
@media screen and (max-width: 749px) {
  .collection-grid-section {
    margin-bottom: 3rem;
  }

 /* .section-header {
    margin-bottom: 2.5rem;
  } */

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1.4rem;
  }

  .products-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-price {
    font-size: 1.8rem;
  }

  .product-description-short {
    font-size: 1.4rem;
  }

  .product-description-multi {
    font-size: 1.3rem;
  }

  .product-description-multi li {
    margin-bottom: 0.6rem;
  }

  .comfort-badge {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}
}