/** Shopify CDN: Minification failed

Line 102:26 Expected identifier but found "!"
Line 633:1 Expected "}" to go with "{"

**/
/*
File: custom.css
Created by: Benjamin Pradel
Date: 02/01/2025
Purpose: To store custom CSS for Shopify theme customization.
Usage: This file contains CSS rules that exceed the 1500-character limit in Shopify's custom editor. 
It is included in the theme via a link in the layout or custom liquid files.
Maintenability Notes:
1. Keep the file organized with comments dividing sections.
2. Use meaningful class names and avoid inline styles in HTML.
3. Test changes in a development environment before deploying to production.
4. Remove unused styles to avoid bloating the file.
*/

@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro?styles=82957');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.custom-message {
  color: #f00; /* exemple pour un texte rouge */
  font-size: 16px;
  padding: 10px;
  background-color: #000;
  color: white;
}

/*-------------------------------
PERSONNALISATION PAGE PANIER
--------------------------------*/

/* Masque les boutons Shop Pay / PayPal sur le panier et le tiroir panier */
.additional-checkout-buttons,
.shopify-payment-button,
.shopify-payment-button__button,
.shopify-payment-button__more-options {
  display: none !important;
}

/*-------------------------------
PERSONNALISATION HEADER HOME PAGE
--------------------------------*/

/* HEADER PHOTO */

.photo-desktop {
  display: block;
  width: 100%;
  height: auto;
}
.photo-mobile {
  display: none;
  width: 100%;
  height: auto;
}

.header-title,
.header-description,
.header-promo-text,
.header-stock {
margin: 0;
color: #ffffff;
}

/* HEADER TEXT - DESKTOP */

#shopify-section-template--22831282159948__slideshow_g7HQxe .h1 {
   font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
   letter-spacing: 0.2rem;
   text-align: left;
   margin-bottom: 5px;
   display: inline-block;
   white-space: nowrap;
   max-width: 100%;
 }

#shopify-section-template--22831282159948__slideshow_g7HQxe .description-size--small {
  font-size: 10px;
  font-weight: medium;
  margin-bottom: 1px;
}

#shopify-section-template--22831282159948__slideshow_g7HQxe .subheading {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {

  #shopify-section-template--22831282159948__slideshow_g7HQxe .subheading {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
}
#shopify-section-template--22831282159948__slideshow_g7HQxe .button {
/* background-color: transparent !important; */
  background-color: #ffff;!important;
  border: 3px solid #ffff;
  border-radius: 29px;
  color: #000000;
  font-weight: médium;
  text-transform: capitalize;
}

#shopify-section-template--22831282159948__slideshow_g7HQxe .slideshow__slide-content .button-overflow-container {
  display: block !important;
}

#shopify-section-template--22831282159948__slideshow_g7HQxe .slideshow-subtext {
  font-size: 13px;
  text-align: left;
  margin-left: 22px;
}

/* Titres sous les 4 catégories principales HP */
.template-index .multicolumn__column .rte p strong {
  font-family: 'Bebas Neue', sans-serif !important;
  font-weight: 400 !important;
  font-size: 28px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #000 !important;
  display: block !important;
  line-height: 1.1 !important;
}

/* Titres h1 */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 25px;
  position: relative;
}

h3.h1,
.rte .h1,
h1.product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  text-align: left; /* ✅ toujours à gauche */
  margin-bottom: 25px;
  position: relative;
}

/* Titres h2, h3 et h4 */
h1.template-header--title.h2,
h1.h2,
h2,
h3.h2,
h3,
h3.section-header--title,
h3.h3,
h4,
h3.h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1em;
  text-transform: uppercase;
  color: #111;
  text-align: left !important; /* ✅ toujours à gauche */
  margin-top: 10px;
  margin-bottom: 25px;
  position: relative;
}

/* Titres h4 */
h4,
h3.h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1em;
  text-transform: uppercase;
  color: #111;
  text-align: left !important; /* ✅ toujours à gauche */
  margin-top: 10px;
  margin-bottom: 25px;
  position: relative;
}

.header-text {
  position: absolute;
  top: 170%;
  left: 22%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 10;
  padding: 0 10%;
}
.header-title {
  font-size: 4.1rem;
  font-weight: bold;
  margin-bottom: -18px;
}
.header-description {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.header-promo-box {
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 10px 20px;
  display: inline-block;
  margin: 0 auto 15px;
}
.header-promo-text {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.header-stock {
  font-size: 0.8rem;
  text-align: left;
  margin-left: 5%;
  margin-top: -7px;
}

/* HEADER SLIDESHOW HP */

/* HEADER VIDEO */

.video-desktop {
  display: block;
}
.video-mobile {
  display: none;
}

.texte_superpose_header {
  position: absolute;
  width: 100%;
  top: 56%;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  padding-left: 15%;
}
.texte_conteneur {
  text-align: left;
  max-width: 80%;
  text-transform: uppercase;
}
.texte_conteneur .promo-box {
  background: white;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 5px;
}
.texte_conteneur .promo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #780505;
  margin: 0;
  text-align: center;
}
.texte_conteneur .promo-text1 {
  font-size: 1rem;
  font-weight: bold;
}
.texte_conteneur .promo-text2 {
  font-size: 0.7rem;
}
.texte_conteneur p {
  margin: 5px 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: white;
}

@media (max-width: 768px) {
  .video-desktop {
    display: none !important;
  }
  .video-mobile {
    display: block !important;
    width: 100%;
    height: auto;
  }
  .texte_superpose_header {
    padding-left: 18%;
    top: 30%;
  }
  .texte_conteneur .promo-text {
    font-size: 1rem;
  }
  .texte_conteneur .promo-box {
    padding: 3px 10px;
  }
  .texte_conteneur {
    max-width: 100%;
  }
  .texte_conteneur p {
    font-size: 0.8rem;
  }
}

/*-------------------------------
PERSONNALISATION POPUP BOGO
--------------------------------*/

.thb-full-menu li a tc,
.thb-full-menu li ul li a tc {
  text-transform: uppercase !important;
}
.button {
  background-color: #2c2d2e;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}
.button:hover {
  background-color: #fc941b;
}
.wpopup_nothanks_btn {
  width: 100%;
}
.wpopup_imgbox--inner {
  height: 90px;
  width: 130px;
}
.wpopup_line_item {
  border-bottom: 1px solid hsla(0, 0%, 80%, 0.5);
  list-style: none;
  margin: 0 1rem;
  padding: 1rem 0;
  position: relative;
}
.wpopup_imgbox--inner img {
  box-shadow: none;
}

/*-------------------------------
PERSONNALISATION BADGES SUR PRODUITS
--------------------------------*/

span.badge.onsale {
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.6em;
}

span.badge.out-of-stock {
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.6em;
}

/*-------------------------------
PERSONNALISATION HEADER BANDEAUX TEXTE titre
--------------------------------*/
.custom-announcement {
  background-color: #191970;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  font-weight: bold;
  font-family: inherit;}
.announcement-left,
.announcement-center,
.announcement-right {
  font-size: 16px; 
  color: #ff9900; }
.announcement-center .uppercase { 
  font-size: 25px;}
.announcement-center .lowercase { 
  text-transform: none;}
.announcement-right {
  font-size: 10px; 
  text-transform: none;
} @media screen and (max-width: 768px) { 
  .custom-announcement { 
    flex-direction: column; 
    text-align: center; 
    gap: 4px;  }}

/*-------------------------------
PERSONNALISATION ICONES PAGES PRODUITS
--------------------------------*/

/*.product--icon-list-image img.lazyautosizes {
width: 60px;
height: 60px;
}*/

/*-------------------------------
PERSONNALISATION PAGE TUTORIAUX
--------------------------------*/

.product-card-title-tuto {
    font-size: calc(var(--font-product-title-scale, 1) * 1rem);
    line-height: calc(var(--font-product-title-line-height-scale, 1) * 1.4);
    font-weight: var(--font-body-medium-weight, 500);
    margin-top: 15px;
}

/*-------------------------------
BUDS-COMPARE – VARIANTE 5 COLONNES
--------------------------------*/
.scroll-progress::after {
  width: var(--scroll-progress, 0%);
}

.buds-compare {
  --radius-xl: 20px;
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 60px auto;
  border: 1px solid #e6e6e6;
  border-radius: var(--radius-xl);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  background: #fff;
}

/*--- Conteneur de scroll ---*/
.buds-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  position: relative;
}

/*--- Table ---*/
.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 1fr);
  text-align: center;
  border-bottom: 1px solid #eee;
  min-width: 780px; /* forcer le scroll sur mobile */
}

.comparison-header {
  background: #1A1C1D;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.comparison-header .feature-title {
  background: #1A1C1D;
  color: #fff;
  border-right: 1px solid #000;
}
.comparison-header .product {
  padding: 20px 10px 10px;
  border-right: 1px solid #333;
}

.comparison-row {
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 15px;
  color: #111;
}
.comparison-row:nth-child(even) { background-color: #fafafa; }

.feature-title {
  font-weight: 700;
  text-align: left;
  padding: 15px;
  border-right: 1px solid #eee;
  background: #f7f7f7;
}
.product {
  padding: 18px 10px;
  border-right: 1px solid #eee;
}

.link-row .product a {
  background: #1A1C1D;
  color: #fff;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
}
/* Hover effect cohérent avec les autres CTA Buds Sports */
.link-row .product a:hover {
  background: #fc941b;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/*--- Mobile ---*/
@media (max-width: 768px) {
  .buds-compare {
    border: none;
    box-shadow: none;
    margin: 30px auto;
  }

  .buds-scroll-wrapper {
    border-radius: 20px;
    mask-image: linear-gradient(to right, black 94%, transparent);
  }
  
  .comparison-header,
  .comparison-row {
    min-width: 780px !important;
    grid-template-columns: 150px repeat(5, minmax(140px, 1fr)) !important;
  }

  .feature-title {
    min-width: 150px;
    max-width: 150px;
    position: sticky;
    left: 0;
    z-index: 3;
    background: #f7f7f7;
  }

  .comparison-header,
  .comparison-header .feature-title,
  .comparison-header .product {
    background: #1A1C1D !important;
    color: #fff !important;
  }

  .comparison-row:nth-child(even) .feature-title { background: #fafafa !important; }
  .comparison-row:nth-child(odd) .feature-title { background: #fff !important; }

/*-----------------------------------
BUDS-COMPARE – VARIANTE 3 COLONNES
------------------------------------*/

/* On isole la variante 3 colonnes pour neutraliser la grille à 5 colonnes */
.buds-compare.buds-compare--3cols .comparison-header,
.buds-compare.buds-compare--3cols .comparison-row {
  display: grid !important;
  grid-template-columns: 1.3fr repeat(3, 1fr) !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-content: center !important;
}

/* On fixe le conteneur à une largeur élégante et centrée */
.buds-compare.buds-compare--3cols {
  max-width: 780px !important;
  margin: 60px auto !important;
  overflow-x: hidden !important;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

/* On supprime les colonnes excédentaires du template 5 colonnes */
.buds-compare.buds-compare--3cols .comparison-header .product:nth-child(n+5),
.buds-compare.buds-compare--3cols .comparison-row .product:nth-child(n+5) {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* On empêche toute grille parent (5 colonnes) d’être appliquée */
.buds-compare--3cols .comparison-header,
.buds-compare--3cols .comparison-row {
  grid-template-columns: unset !important;
}

/* Bordures nettes et propres */
.buds-compare.buds-compare--3cols .comparison-header .product:last-child,
.buds-compare.buds-compare--3cols .comparison-row .product:last-child {
  border-right: none !important;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .buds-compare--3cols .comparison-header,
  .buds-compare--3cols .comparison-row {
    min-width: 520px !important;
    grid-template-columns: 150px repeat(3, minmax(120px, 1fr)) !important;
  }
}


/*-----------------------------------
BARRE DE PROGRESSION PLEINE – STYLE VISION 11
------------------------------------*/
@media (max-width: 768px) {
  .scroll-progress {
    position: relative;
    width: 100%;
    height: 2px;
    background: #e0e0e0; /* piste grise fixe */
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
  }

  /* Barre noire qui s’étend */
  .scroll-progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: var(--scroll-width, 0%); /* largeur dynamique */
    background: #1A1C1D;            /* couleur Buds Sports */
    border-radius: 3px;
    transition: width 0.1s linear;
  }
}