/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 79:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .custom-collections {
    position: relative;
  }

  .custom-collections.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .custom-collections.slider-layout {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px; /* Centrage visuel */
    scrollbar-width: none;
  }

  .custom-collections.slider-layout::-webkit-scrollbar {
    display: none;
  }

  .custom-collections .collection-block {
    flex: 0 0 auto;
    scroll-snap-align: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
  }

  .custom-collections .collection-block img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
  }

  .custom-collections .collection-block p {
    margin-top: 8px;
    font-weight: bold;
    font-size: 1.1em;
  }

  .collection-dots-wrapper {
    padding-top: 16px;
    padding-bottom: 32px;
    overflow: hidden;
  }

  .collection-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .collection-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }

  .collection-dot.active {
    background: #000;
  }
</style>