/** Shopify CDN: Minification failed

Line 35:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:article (INDEX:1) */
.article-hero-image {
  display: block;
  margin-bottom: 2rem !important;
}

.article-hero-image {
  display: block;
  margin-bottom: 1rem !important;
}

.article-hero-image img {
  display: block;
  width: 100%;
}

.article-title {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.article-content {
  text-align: justify !important;
  padding-bottom: 2rem;
}
}
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:2) */
.blog-grid-wrapper {
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.blog-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-item-image {
  width: 100%;
  margin-bottom: 0.75rem;
}

.blog-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.blog-item:hover .blog-img {
  transform: scale(1.03);
}

.blog-item-title {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin: 0.75rem 0 0.25rem !important;
  text-decoration: none !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  text-align: justify !important;
}

.blog-item-excerpt {
  font-size: 0.8rem !important;
  color: #888 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  letter-spacing: 0.01em !important;
  text-align: justify !important;
}

.blog-pagination {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .blog-grid-wrapper {
    padding: 1rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
/* END_SECTION:blog */

/* START_SECTION:cart (INDEX:3) */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
  }
  
  .cart-item {
    
  }
  
  .cart-item td {
    vertical-align: middle;
    padding: 1rem;
  }
  
  .cart-item__image {
    width: 100px;
    text-align: center;
  }
  
  .cart-product-image {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 4px;
    display: block;
  }
  
  .cart-product-image img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .cart-item__details {
    width: auto;
  }
  
  .cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .cart-item__title {
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
  }
  
  .cart-item__variant {
    color: #666;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.2;
  }
  
  .cart-item__price {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2;
  }
  
  .cart-item__quantity {
    width: 150px;
    text-align: right;
  }
  
  .cart-quantity-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }
  
  .cart-quantity-input {
    width: 60px;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    text-align: center;
    font-size: 0.9rem;
    background: transparent;
    outline: none;
  }

  .cart-quantity-input:focus {
    border-bottom-color: #999;
  }
  
  .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
  }
  
  .cart-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.2;
    text-decoration: none;
  }
  
  .cart-update-btn {
    color: #000;
  }
  
  .cart-update-btn:hover {
    text-decoration: underline;
  }
  
  .cart-item__remove {
    color: #ff4444;
  }

  .cart-item__remove:hover {
    text-decoration: underline;
  }

  .cart-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .cart-summary {
    padding: 1.5rem 0;
    margin: 2rem 0;
    display: flex;
    justify-content: flex-end; /* Aligner le contenu à droite */
  }
  
  .cart-total {
    text-align: right;
    padding-right: 1rem; /* Ajouter un padding pour aligner avec les contrôles de quantité */
  }
  
  .cart-total__label {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }
  
  .cart-total__price {
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .cart-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  
  .cart-checkout-btn {
    background: none;
    border: none;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-checkout-btn svg {
  width: auto;
  height: 2rem;
}

.cart-checkout-btn svg path {
  fill: #ff0000;
  transition: fill 0.2s ease;
}

.cart-checkout-btn:hover svg path {
  fill: #000000;
}
  
  .cart-empty {
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .cart-empty p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
  }
  
  @media (max-width: 768px) {
    .cart-item td {
      padding: 0.75rem 0.5rem;
    }
    
    .cart-item__image {
      width: 80px;
    }
    
    .cart-product-image,
    .cart-product-image img {
      width: 60px !important;
      height: 60px !important;
    }
    
    .cart-item__title {
      font-size: 0.9rem;
    }
    
    .cart-item__quantity {
      width: 120px;
    }
    
    .cart-quantity-input {
      width: 50px;
    }
    
    .cart-quantity-controls {
      align-items: center;
    }
    
    .cart-actions {
      align-items: center;
    }
    
    .cart-footer {
      flex-direction: column;
      gap: 1rem;
    }
    
    .cart-checkout-btn {
      width: 100%;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4) */
.book-grid-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

.book-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  text-decoration: none;
  background: #f0f0f0;
}

.book-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.book-item:hover .book-img {
  transform: scale(1.03);
}

.book-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 1.5rem 0.75rem 0.75rem;
  opacity: 1;
}

.book-title {
  color: white;
  font-size: 0.8rem;
  font-weight: 400;
  display: block;
  line-height: 1.3;
}

.book-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  border-top: 1px solid #e0e0e0;
}

.pagination-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagination-link:hover {
  text-decoration: underline;
}

.pagination-info {
  font-size: 0.85rem;
  color: #888;
}

.book-price {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.sold-out-label {
  color: #b0b0b0;
  font-style: normal;
}

.book-title.sold-out {
  text-decoration: line-through;
}
@media (max-width: 768px) {
  .book-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}

.collection-product-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
}

.collection-product-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.collection-product-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.collection-product-item:hover .collection-product-image__img {
  transform: scale(1.03);
}

.collection-product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-product-item:hover .collection-product-overlay {
  opacity: 1;
}

.collection-product-title {
  color: white;
  font-size: 0.85rem;
  font-weight: 400;
  display: block;
}

.collection-pagination {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  border-top: 1px solid #e0e0e0;
}

.pagination-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagination-link:hover {
  text-decoration: underline;
}

.pagination-info {
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-product-overlay {
    opacity: 1;
  }
}
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:6) */
.collection-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .collection-description {
    max-width: 600px;
    margin: 1rem auto 0;
    color: #666;
    line-height: 1.6;
  }
  
  .collection-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .collection-carousel {
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    background: #fafafa;
  }
  
  .collection-carousel::-webkit-scrollbar {
    width: 8px;
  }
  
  .collection-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  .collection-carousel::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }
  
  .collection-carousel::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }
  
  .collection-product-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .collection-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .collection-product-card:last-child {
    margin-bottom: 0;
  }
  
  .product-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .product-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .product-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .product-title a {
    color: var(--color-foreground);
    text-decoration: none;
  }
  
  .product-title a:hover {
    color: #0066cc;
  }
  
  .product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0;
  }
  
  .product-compare-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin: 0;
  }
  
  .product-description {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .carousel-controls {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
  }
  
  .carousel-btn:hover {
    background: white;
    transform: scale(1.1);
  }
  
  .carousel-btn:active {
    transform: scale(0.95);
  }
  
  @media (max-width: 768px) {
    .collection-carousel {
      height: 500px;
      padding: 0.5rem;
    }
    
    .collection-product-card {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    
    .product-image {
      width: 100%;
      height: 200px;
      align-self: center;
    }
    
    .carousel-controls {
      position: static;
      transform: none;
      flex-direction: row;
      justify-content: center;
      margin-top: 1rem;
    }
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:7) */
footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    margin-top: auto;
  }

  .footer__logo {
    grid-column: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .footer__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .footer__logo-img {
    height: 2rem;
    width: auto;
    max-width: 150px;
    display: block;
  }

  .footer__logo {
  display: none;
  }

  .footer__links {
    grid-column: 2;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
  }

  .footer__link {
    text-decoration: none;
    color: var(--color-foreground);
    font-family: var(--font-primary--family);
    font-weight: 400;
    font-size: 1rem;
    transition: opacity 0.2s ease;
  }

  .footer__link:hover {
    opacity: 0.7;
  }

  /* Footer fixe + liens blancs sur la homepage uniquement */
  .template-index footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    pointer-events: none;
  }

  .template-index footer a {
    pointer-events: auto;
    color: white !important;
  }

  @media (max-width: 1024px) {
    footer {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
      padding: 2.5rem 2rem;
    }

    .footer__logo {
      grid-column: 1;
      justify-content: center;
      order: 1;
    }

    .footer__links {
      grid-column: 1;
      justify-content: center;
      order: 2;
    }
  }

  @media (max-width: 768px) {
    footer {
      padding: 2rem 1rem;
      gap: 1.5rem;
    }

    .footer__logo-img {
      height: 1.75rem;
      max-width: 120px;
    }

    .footer__links {
      gap: 1.5rem;
    }

    .footer__link {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    footer {
      padding: 1.5rem 1rem;
      gap: 1rem;
    }

    .footer__logo-img {
      height: 1.5rem;
      max-width: 100px;
    }

    .footer__links {
      flex-direction: column;
      gap: 1rem;
    }

    .footer__link {
      font-size: 0.85rem;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:8) */
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}

header a {
  pointer-events: auto;
}

body:not(.template-index) .shopify-section:first-child {
  padding-top: 4rem;
}

.homepage-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.header__top-left {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 10;
}

.header__top-right {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 10;
}

.header__main-link {
  color: white !important;
  text-decoration: none !important;
  font-size: 1.1rem;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.header__main-link:hover {
  opacity: 0.7;
}


.header__center-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.header__logo-svg {
  width: 400px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .header__logo-svg {
    width: 280px;
  }

  .header__center-logo {
    top: 20%;
    transform: translate(-50%, -20%);
  }
}

@media (max-width: 768px) {
  .header__top-left {
    top: 1rem;
    left: 1rem;
  }

  .header__top-right {
    top: 1rem;
    right: 1rem;
  }

  .header__main-link {
    font-size: 0.9rem;
  }
}
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:9) */
/* ✅ FOND GRIS sur toute la page collection */
  body.template-collection {
    background-color: #f5f5f5 !important;
  }

  .gallery-collection {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
  }
  
  .products-gallery {
    display: flex;
    flex-direction: column;
    gap: 5.33rem;
  }
  
  .product-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .gallery-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.67rem;
    align-items: center;
  }
  
  .product-image-container {
    width: 66.67%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }
  
  .product-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    user-select: none;
  }
  
  .carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }
  
  .carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .carousel-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .carousel-slide.active {
    opacity: 1;
  }
  
  .gallery-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    pointer-events: none;
  }
  
  .image-placeholder {
    color: #999;
    font-size: 1rem;
  }
  
  .product-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
  }
  
  .product-details-header {
    margin-bottom: 1.33rem;
    margin-top: 0;
  }
  
  .product-title {
    font-size: 1.33rem;
    font-weight: 700;
    margin: 0 0 0.33rem 0;
    color: #000;
    line-height: 1.2;
  }
  
  .product-subtitle {
    font-size: 1rem;
    font-style: italic;
    margin: 0 0 0.33rem 0;
    color: #000;
    font-weight: 400;
  }
  
  .product-details {
    font-size: 0.67rem;
    margin: 0 0 0.17rem 0;
    color: #000;
    font-weight: 400;
  }
  
  .product-vendor {
    font-size: 0.67rem;
    margin: 0 0 0.67rem 0;
    color: #000;
    font-weight: 400;
  }
  
  .product-price {
    margin: 1rem 0;
  }
  
  .price-current {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  
  .price-compare {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.33rem;
  }
  
  .product-actions {
    margin: 1.33rem 0;
  }
  
  .add-to-cart-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 0.73rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: all 0.2s ease;
  }
  
  .add-to-cart-btn:hover {
    opacity: 0.7;
  }
  
  .add-to-cart-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }
  
  .product-description {
    font-size: 0.67rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 1.33rem;
  }
  
  .product-description p {
    margin: 0 0 1rem 0;
  }
  
  .product-description em {
    font-style: italic;
  }
  
  .product-specs {
    font-size: 0.67rem;
    color: #000;
    border-top: 1px solid #eee;
    padding-top: 1rem;
  }
  
  .product-specs p {
    margin: 0 0 0.5rem 0;
  }
  
  .no-products {
    text-align: center;
    padding: 4rem;
    color: #666;
    font-size: 1.1rem;
  }
  
  @media (max-width: 1024px) {
    .gallery-collection {
      padding: 2rem 1rem;
    }
    
    .gallery-item {
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }
    
    .product-info {
      align-self: start;
      justify-content: flex-start;
    }
    
    .products-gallery {
      gap: 6rem;
    }
    
    .product-section {
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-collection {
      padding: 1.5rem 1rem;
    }
    
    .product-title {
      font-size: 1.5rem;
    }
    
    .product-subtitle {
      font-size: 1.2rem;
    }
    
    .price-current {
      font-size: 1.2rem;
    }
    
    .products-gallery {
      gap: 4rem;
    }
    
    .product-section {
      gap: 1.5rem;
    }
  }

  .pagination-container {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Suisse', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .pagination-link {
    color: #000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: opacity 0.2s ease;
    border-radius: 4px;
  }
  
  .pagination-link:hover {
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .pagination-current {
    color: #000;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-weight: bold;
  }
  
  .pagination-gap {
    color: #999;
    padding: 0.5rem 1rem;
  }
  
  .pagination-prev,
  .pagination-next {
    font-size: 1.4rem;
    padding: 0.5rem 0.75rem;
  }
  
  @media (max-width: 768px) {
    .pagination-container {
      margin-top: 4rem;
    }
    
    .pagination {
      gap: 0.5rem;
      font-size: 1rem;
    }
    
    .pagination-link,
    .pagination-current,
    .pagination-gap {
      padding: 0.4rem 0.8rem;
    }
    
    .pagination-prev,
    .pagination-next {
      font-size: 1.2rem;
      padding: 0.4rem 0.6rem;
    }
  }
/* END_SECTION:hello-world */

/* START_SECTION:password (INDEX:11) */
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}


body:not(.template-index) .shopify-section:first-child {
  padding-top: 4rem;
}

.homepage-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}



.header__center-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.header__logo-svg {
  width: 400px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .header__logo-svg {
    width: 280px;
  }

  .header__center-logo {
    top: 20%;
    transform: translate(-50%, -20%);
  }
}

@media (max-width: 768px) {
  .header__top-left {
    top: 1rem;
    left: 1rem;
  }

  .header__top-right {
    top: 1rem;
    right: 1rem;
  }

  .header__main-link {
    font-size: 0.9rem;
  }
}

.password-overlay {
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  color: white;
  width: 90%;
  max-width: 400px;
}

.password-coming-soon {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.password-overlay input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.6);
  color: white;
  text-align: center;
  margin-bottom: 0.75rem;
}

.password-overlay input::placeholder {
  color: rgba(255,255,255,0.6);
}

.password-overlay button {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid white;
  color: white;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.password-overlay button:hover {
  background: rgba(255,255,255,0.15);
}

.password-overlay label {
  display: none;
}
/* END_SECTION:password */

/* START_SECTION:product (INDEX:12) */
#shopify-section-template--24189724885320__main {
  display: block;
}

/* ─── Layout principal ─── */
.product-layout {
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* ─── Visibilité galeries ─── */
.desktop-gallery {
  display: block;
}

.mobile-gallery {
  display: none;
}

/* ─── Galerie scrollable desktop ─── */
.product-gallery__scroll-track {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: 100vh;
  scrollbar-width: none;
  background: #1a1a1a;
  gap:0;
}

.product-gallery__scroll-track::-webkit-scrollbar {
  display: none;
}

.product-gallery__slide {
  flex: 0 0 auto;
  /*width: 45vw;*/
  height: 100vh;
  scroll-snap-align: start;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.product-gallery__slide--empty {
  background: #1a1a1a;
}

.product-gallery__slide-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ─── Mobile gallery ─── */
.mobile-gallery__img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

/* ─── Info produit ─── */
.product-layout__info {
  position: static;
  transform: none;  
  width: 320px;     
  flex-shrink: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #000;
  color: #fff;
  order: -1; 
  padding: 6rem 2rem 2rem;
}

.product-layout__title {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
  min-height: 4rem;    /* ← 2 lignes max avant troncature */
  overflow: hidden;
  display: -webkit-box;
  /*-webkit-line-clamp: 2;*/
  -webkit-box-orient: vertical;
}

.product-layout__price {
  font-size: 1rem;
  color: #aaa;
  margin: 0;
  letter-spacing: 0.05em;
  height: 1.5rem;      /* ← toujours une ligne */
  overflow: hidden;
}

.product-layout__description {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
  height: 160px;       /* ← hauteur fixe, ajuste selon tes préférences */
  overflow-y: auto;    /* ← scrollable si la description est longue */
  padding-right: 0.5rem;
  
  /* Scrollbar discrète */
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}


.product-layout__description::-webkit-scrollbar {
  width: 3px;
}

.product-layout__description::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 2px;
}

.product-layout__form {
  margin-top: auto;    /* ← pousse le formulaire en bas de la colonne */
}

.product-layout__description a {
  color: inherit;
  text-decoration: underline;
}

.product-layout__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  background: white;
  font-size: 0.9rem;
  color: #1a1a1a;
  appearance: none;
  cursor: pointer;
}

.product-layout__btn {
  width: 100%;
  padding: 1rem;
  background:white;
  color: black;
  border: 1;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-layout__btn:hover {
  background: #333;
}

/* Empêche le scroll horizontal sur toute la page */
body {
  overflow-x: hidden;
}

/* Isole le scroll dans la galerie uniquement */
  .product-layout__media {
    flex: 1;
    overflow: hidden;
    height: 100vh;
  }
/* ─── Responsive mobile ─── */
@media (max-width: 989px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem auto;
  }

  .desktop-gallery {
    display: none;
  }

  .mobile-gallery {
    display: block;
  }

  .product-layout__info {
    position: static;
  }

  .gallery-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
  }

}
/* END_SECTION:product */

/* START_SECTION:search (INDEX:13) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:15) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:16) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:18) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */