/** Shopify CDN: Minification failed

Line 2071:0 Expected "}" to go with "{"

**/
/* ============================================================
 * BARRY-CUSTOM.CSS — CSS personnalisé barry.ca
 * Extrait de base.css lors de la mise à jour Trade 15.4.1 → 15.5.0 (juillet 2026)
 * Chargé après base.css depuis layout/theme.liquid.
 * Les futures mises à jour du thème ne touchent pas ce fichier.
 * ============================================================ */

/* Surcharge de la bulle du panier (anciennement modifiée dans base.css) */
.cart-count-bubble {
  background-color: #EEB211;
  font-size: 1rem;
  left: 2.8rem;
}

/* mapion */
/* Breadcrumb container - map */
.custom-breadcrumb {
  padding-top: 6px 0;
  padding-bottom: 5px 0;
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 50px; /* Increase padding-left to move right */
  padding-right: 15px;
  font-family: inherit;
  font-size: 0.75em; /* Make the text smaller */
  color: var(--text-color, #333);
  text-align: left; /* Ensure text is aligned left inside its container */
}

/* Breadcrumb list styles */
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--link-color, #003760);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--link-hover-color, #00365d);
}

.breadcrumb .separator {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
}

.breadcrumb .current {
  color: var(--text-color, #333);
  font-weight: normal;
}

/* Full-width HR line */
.breadcrumb-divider-full-width {
  border: 0;
  border-top: 1px solid #e6e6e6;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .custom-breadcrumb {
    display: none; /* Hide the breadcrumb on small screens */
  }
}

#form-container {
  position: relative;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  margin: 20px auto;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#close-form {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
}

#close-form:hover {
  color: #ff0000;
}

#form-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: left;
  color: #003760; /* Couleur personnalisée */
}
/* rich-text - map */
.rich-text__blocks {
  max-width: 100%;
}
h2 {
  color: #003760;
}
/* Resources - map */
.titrepublication {
  font-size: 18px;
  color: #ffffff;
  background-color: #003760;
  padding: 5px 10px 5px 10px;
  margin-top: 10px;
  margin-bottom: 30px;
  border-radius: 5px;
}
.quick-order-list table {
  width: 100%;
  border-collapse: collapse;
}
/* Wrapper pour étendre la bande bleue */
.titrepublication-wrapper {
  width: 100%;
  background-color: #003760;
  padding: 5px 0; /* Ajuste la hauteur de la bande */
  margin-top: 10px;
  margin-bottom: 30px;
}
/* Style pour le texte centré */
.titrepublication-02 {
  font-size: 18px;
  color: #ffffff;
  max-width: 1350px; /* Largeur maximale pour le texte */
  margin: 0 auto; /* Centre le contenu horizontalement */
  padding: 5px 10px; /* Ajuste le padding interne */
  border-radius: 5px; /* Facultatif si vous voulez garder des coins arrondis */
}
/* variant - map */
/* Style pour les boutons sélectionnés */
.product-form__input--pill input[type="radio"]:checked + label,
.product-form__input--pill label.selected {
  background-color: #003760 !important; /* Bleu Barry */
  color: #ffffff !important; /* Texte blanc */
  border-color: #003760 !important; /* Bordure bleue */
}

/* Style pour les boutons non sélectionnés */
.product-form__input--pill label {
  background-color: #f8f8f8; /* Fond gris clair */
  color: #333333; /* Texte gris foncé */
  border: 1px solid #cccccc; /* Bordure grise */
  padding: 8px 16px; /* Ajustement de l'espacement */
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Effet au survol des boutons */
.product-form__input--pill label:hover {
  background-color: #e6f2ff; /* Bleu clair au survol */
  border-color: #003760;
  color: #003760;
}
/* Make the variant option name bold */
.product-form__input legend.form__label,
.product-form__input label.form__label {
  font-weight: bold !important; /* Bold font */
}
/* technical-content - map */
.technical-content {
  background-color: rgba(0, 69, 129, 0.1);
  padding-top: 0;
}
.link-top-product {
  font-size: 16px;
  color: #00477f;
  margin: 0;
}
.link-top-product a {
  text-decoration: none;
  color: #00477f;
}
.separator {
  border: none;
  border-top: 1px solid #cccccc; /* Remplacez par la couleur de votre site */
  margin: 0;
}
/* im form - map */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  padding: 20px;
  align-items: flex-start; /* Aligne les éléments au sommet */
}

.contact-image,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  margin-top: -20px; /* Ajuste la position pour être plus haut */
}

.contact-form {
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-form {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .contact-image {
    margin-bottom: 20px;
  }
}

/* Home-Link - map */
.vignettes-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
}

.vignette {
  text-align: center;
}

.vignette-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vignette img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.vignette h2 {
  margin-top: 10px;
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .vignettes-container {
    grid-template-columns: 1fr;
  }

  .vignette h2 {
    margin-top: 5px;
  }
}
/* CSS pour uniformiser les lignes horizontales map */
hr {
  border: none !important;
  height: 1px !important;
  background-color: #e0e0e0 !important;
  margin: 0 !important;
}
/* CSS pour uniformiser les lignes horizontales map */
.barry-about {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 1400px;
}
.barry-divider-02 {
  border: 1px solid #003760;
  margin: 20px 0;
}
.barry-section-02 {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.barry-card-02 {
  display: flex;
  flex-direction: column; /* Organiser verticalement les éléments */
  align-items: center; /* Centrer horizontalement les icônes et textes */
  text-align: center; /* Centrer le texte */

  width: 30%;
  min-width: 250px;
  margin: 20px 0;
}
.barry-card-02 img.barry-icon-02 {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
  text-align: center;
  align-items: center;
}
.barry-markets-02 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.barry-market-list-02 {
  padding: 0;
  margin: 0;
}
.barry-market-list li {
  margin-bottom: 5px;
}
.barry-market-image {
  width: 300px;
  height: auto;
  align-self: center;
  margin: auto;
}
/* Responsive styles for mobile screens */
@media screen and (max-width: 768px) {
  .barry-section-02 {
    flex-direction: column;
    align-items: center;
  }

  .barry-card-02 {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .barry-card-02 img.barry-icon-02 {
    margin-bottom: 10px;
  }

  .barry-markets-02 {
    flex-direction: column;
    align-items: left;
  }

  .barry-market-image {
    width: 100%;
    max-width: 400px;
  }
}
/* contcat us map */
/* Main section styles */
.custom-contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto;
  max-width: 1400px;
  padding: 0;
  align-items: flex-start;
}

/* Form styles */
.custom-contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -20px;
}

/* Info section styles */
.custom-contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}

/* Header alignment */
.custom-contact-form h2,
.custom-contact-info h2 {
  text-align: left;
  margin-bottom: 15px;
  color: #003760;
  font-family: Arial, sans-serif;
  font-size: 1.8em;
}

/* Text styles */
.custom-contact-info p {
  font-size: 1em;
  line-height: 1.8;
  margin: 10px 0;
  color: #333;
  font-family: Arial, sans-serif;
}

.custom-contact-info a {
  color: #003760;
  text-decoration: none;
  font-weight: bold;
}

.custom-contact-info a:hover {
  text-decoration: underline;
}

/* Contact details layout */
.custom-contact-info .contact-details {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.custom-contact-info .contact-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Company details layout */
.company-details {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
}

.contact-column img {
  max-width: 180px; /* Ajustement de la largeur des images */
  margin: 0;
}

.company-column p {
  margin: 0;
  font-size: 1em;
  color: #333;
  font-family: Arial, sans-serif;
  text-align: left;
}

/* Note section */
.note {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
}

/* Horizontal rules */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}
/* Icon-map */
.icon-small {
  width: 20px; /* Taille appropriée pour les icônes */
  height: 20px;
  fill: #003760; /* Applique le bleu Barry */
  stroke: none; /* Désactive le contour */
  display: inline-block; /* Alignement cohérent */
  margin: 0 5px; /* Ajoute un espace de 6px à gauche et à droite */
}
.icon-small:hover {
  fill: #002f5d; /* Change légèrement la couleur au survol */
  transform: scale(
    1.1
  ); /* Agrandit légèrement l'icône pour un effet interactif */
}
.header__icon--account {
  display: inline-flex; /* Permet d'aligner l'icône et le texte horizontalement */
  align-items: center; /* Centre verticalement les éléments */
}

.header__text--account {
  font-size: 14px; /* Taille du texte */
  color: #003760; /* Applique le bleu Barry */
  text-decoration: none; /* Supprime le soulignement */
  margin-left: 0px; /* Rapproche le texte encore plus de l'icône */
  width: 100%;
}

.header__text--account:hover {
  color: #002f5d; /* Change la couleur au survol */
}

.svg-wrapper {
  display: inline-flex; /* Aligne correctement l'icône avec le texte */
}
/* Empêche le débordement horizontal */
body {
    overflow-x: hidden;
}

/* Corrige les éléments qui dépassent */
* {
    max-width: 100vw;
    box-sizing: border-box;
}
/* custom.collections_detail_text map */
.product-collection-detail {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* mega map */
.mega-menu__list--horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  padding: 1rem 0;
}

.mega-menu__item {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  gap: 0.5rem;
  position: relative;
}

.mega-menu-item-container {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.mega-menu-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.mega-menu-category-title {
  font-size: 1.29rem;
  font-weight: bold;
  color: #000;
  
}

.mega-menu__sub-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mega-menu__link--sub {
  font-size: 1.29rem;
  color: #555;
  text-decoration: none;
}

.mega-menu__link--sub:hover {
  color: #000;
  text-decoration: underline;
}

.mega-menu__list > li:hover {
  background-color: #f5f5f5;
}
/* publicatio produit map */
.anchor-offset {
  scroll-margin-top: 100px;
  padding-top: 0.5rem;
}
.hide-on-mobile {
  display: inline;
}

@media (max-width: 1100px) {
  .hide-on-mobile {
    display: none;
  }
}
/* contact us button map */
.button--header-contact {
  margin-left: 2.2rem;
  white-space: nowrap;
}
/* discover-our-products map */
  .scroll-adjust-anchor {
    display: block;
    position: relative;
    top: -80px;
    height: 0;
    visibility: hidden;
  }
/* localization-form  map */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-switch {
  background: none;
  border: none;
  color: #003760;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin: 0 1.2rem 0 0;
  display: flex;
  align-items: center;
}

.language-switch.active {
  text-decoration: underline;
}

.language-switch:hover {
  text-decoration: underline;
}

/* ================= FINISHING MAP ================= */

.finishing-map {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
margin: 20px 0;
}

.finishing-map .fm-cell {
display: flex;
}

.finishing-map .fm-item {
display: flex;
flex-direction: column;
width: 100%;
border: 1px solid #ddd;
padding: 10px;
border-radius: 4px;
text-align: center;
background: transparent;
}

.finishing-map .fm-item.fm-active {
border-color: #003760;
background-color: #FBFBFB;
}

.finishing-map .fm-item img {
max-width: 100px;
margin: 0 auto 6px;
display: block;
}

.finishing-map .fm-name {
font-size: 13px;
margin: 4px 0;
line-height: 1.3;
color: #333;
}

/* Link wrapper */
.finishing-map .fm-link {
display: flex;
flex-direction: column;
height: 100%;
text-decoration: none;
color: inherit;
}

/* Buttons */
.finishing-map .fm-action,
.finishing-map .fm-status {
margin-top: auto;
width: 100%;
padding: 6px 10px;
font-size: 12px;
border-radius: 4px;
text-align: center;
box-sizing: border-box;
}

/* Selected */
.finishing-map .fm-status {
background-color: #f2f2f2;
border: 1px solid #c9c9c9;
color: #333;
cursor: default;
}

.finishing-map .fm-status::after {
content: " ✓";
font-weight: bold;
}

/* Select */
.finishing-map .fm-action {
background-color: #003760;
border: 1px solid #003760;
color: #fff;
}

.finishing-map .fm-link:hover .fm-action {
background-color: #003866;
border-color: #003866;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1023px) {
.finishing-map {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 767px) {
.finishing-map {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}

.finishing-map .fm-item {
padding: 12px 8px;
}

.finishing-map .fm-item img {
max-width: 100px;
}

.finishing-map .fm-name {
font-size: 12px;
}

.finishing-map .fm-action,
.finishing-map .fm-status {
padding: 8px 10px;
}
}
/* Finishing option label (same style as Unit label) */
.fm-label {
margin: 0 0 8px;
font-size: 14px;
line-height: 1.4;
font-weight: 500;
}
.product-finish-options {
margin-top:0.75rem;
}

.product-finish-options-label {
font-size:0.75rem;
margin-bottom:0.25rem;
opacity:0.8;
}

.product-finish-options-grid {
display:grid;
grid-template-columns:repeat(4,1fr);
gap:6px;
max-width:420px;
}

.product-finish-thumb {
aspect-ratio:1 / 1;
overflow:hidden;
}

.product-finish-thumb img {
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.product-finish-options-link {
text-decoration:none;
color:inherit;
display:block;
}
.product-finish-options-link,
.product-finish-options-link:hover {
text-decoration:none;
}

.product-finish-options .caption-with-letter-spacing {
font-weight:600;
text-transform:uppercase;
display:inline-block;
}
.card-information .caption-with-letter-spacing {
margin-bottom:0.25rem;
}

.learn-more-cta {
margin-top:0.25rem !important;
}

.card__inner > .card__content {
padding-top: 0 !important;
}
.card__media {
margin-bottom: 0 !important;
}

.product-finish-options {
margin-top: 0.25rem;
}

.product-finish-options-grid {
gap: 0.4rem;
}

.product-finish-thumb img {
display: block;
}

.card__heading {
margin-top: 1rem !important;
}

.product-finish-options .caption-with-letter-spacing {
margin-bottom: 0.25rem;
}


/* ================= product-introduction MAP ================= */
.product-introduction-wrapper {
  position: relative;
  margin-top: 0.25rem;
}

.product-introduction-text {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.product-introduction-text p:first-child {
  margin-top: 0;
}

.product-introduction-text p {
  margin-bottom: 0.75rem;
}

/* 300 caractères */
.product-introduction-wrapper[data-is-truncated="true"][data-truncate-limit="300"] .product-introduction-text {
  max-height: 9.5em;
}

/* 600 caractères */
.product-introduction-wrapper[data-is-truncated="true"][data-truncate-limit="600"] .product-introduction-text {
  max-height: 19em;
}

.product-introduction-wrapper[data-is-truncated="true"] .product-introduction-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,0.9)
  );
  pointer-events: none;
}

/* ÉTAT EXPAND – doit TOUJOURS gagner */
.product-introduction-wrapper.is-expanded .product-introduction-text {
  max-height: none !important;
}

.product-introduction-wrapper.is-expanded .product-introduction-text::after {
  display: none;
}

.introduction-toggle {
  margin-top: 0.75rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #003760;
  text-decoration: underline;
}


/* =========================================================
   Complementary / Compatible products (Shopify-like)
   ========================================================= */

/* Section container */
.complementary-products {
border-top: 0.1rem solid rgba(var(--color-foreground), 0.15);
margin-top: 2.5rem;
padding-top: 0.75rem;
}

/* Accordion header */
.complementary-products summary {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 0.3rem;
padding-bottom: 0.8rem;
cursor: pointer;
list-style: none;
}

/* Remove native marker */
.complementary-products summary::-webkit-details-marker {
display: none;
}

/* Chevron */
.complementary-products summary .svg-wrapper {
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.25s ease;
}

/* Chevron default = DOWN */
.complementary-products summary svg {
transform: rotate(0deg);
transition: transform 0.2s ease;
}

/* When open = UP */
.complementary-products details[open] summary svg {
transform: rotate(180deg);
}

.complementary-products summary .svg-wrapper {
transform: rotate(180deg);
}

/* Title container */
.complementary-products .summary__title {
display: flex;
align-items: center;
}

/* Product list */
.complementary-products__list {
display: grid;
gap: 1.2rem;
margin: 0;
padding: 0;
}

/* Product row */
.complementary-product__link {
display: flex;
align-items: flex-start;
gap: 1.2rem;
text-decoration: none;
}

/* Product image */
.complementary-product__media img {
width: 10rem;
max-width: 10rem;
height: auto;
display: block;
object-fit: contain;
}

/* Product title */
.compatible-product__title {
font-size: 1.4rem;
line-height: 1.4;
font-weight: 600;
margin: 0;
color: rgb(var(--color-link));
}

.complementary-product__link:hover .compatible-product__title {
text-decoration: underline;
}

/* SKU / Product code */
.compatible-product__sku {
margin: 0.2rem 0 0.6rem;
font-size: 1.1rem;
letter-spacing: 0.07em;
text-transform: uppercase;
color: rgba(var(--color-foreground), 0.75);
}

.product__sku-value {
margin-left: 0.4rem;
}

/* Learn more link */
.complementary-product__info .link {
display: inline-block;
margin-top: 0.2rem;
}
.complementary-products .summary__title p {
margin: 0 0 4px 0;
line-height: 1.3;
}

/* =========================
   Product tabs – isolated
   ========================= */

.ptabs {
  width: 100%;
}

/* Full-width blue bar */
.ptabs-bar {
  background: #003760;
}

/* Content-aligned inner wrapper */
.ptabs-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 14px 0 16px;
  padding-left: 50px;
}

/* Tabs */
.ptabs-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.85;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.ptabs-btn:hover {
  opacity: 1;
}

.ptabs-btn.is-active {
  opacity: 1;
}

/* Underline active tab */
.ptabs-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: transparent;
}

.ptabs-btn.is-active::after {
  background: #ffffff;
}

/* Vertical separator */
.ptabs-btn.ptabs-separator.has-next::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1.3rem;
  background-color: #ffffff;
  opacity: 0.9;
  pointer-events: none;
}

/* Content spacing – only when tabs exist */
.ptabs .ptabs-content {
  padding-top: 20px;
  padding-bottom: 0;
}

/* Panels */
.ptabs-panel {
  display: none;
}

.ptabs-panel.is-active {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .ptabs-inner {
    justify-content: center;
    padding-left: 0;
  }

  .ptabs-btn {
    text-align: center;
  }
}


/* =========================
   technical-content
   ========================= */

.tc-block {
  margin-top: 1.5rem;
  background: transparent;
}

.tc-heading {
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.tc-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin: 0 0 2rem 0;
  background: transparent;
}

.tc-item {
  margin-bottom: 0.4rem;
  background: transparent;
}

.tc-link {
  color: #004581;
  text-decoration: underline;
  background: transparent;
}

.tc-link:hover {
  text-decoration: none;
}
/* =========================================================
   PROTECTION SHOPIFY / DPO
   Empêche toute pollution des snippets produit
   ========================================================= */

.product-form table,
.product__info table {
  border: none;
  width: auto;
}

.product-form th,
.product-form td,
.product__info th,
.product__info td {
  border: none;
  padding: initial;
  text-align: inherit;
  background: none;
}

/* =========================================================
   TABLES BARRY – desktop & tablet
   (opt-in seulement)
   ========================================================= */

table[data-responsive="stack"] {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

table[data-responsive="stack"] th,
table[data-responsive="stack"] td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

table[data-responsive="stack"] thead th {
  background-color: #f2f2f2;
}

/* =========================================================
   MOBILE – tables empilées
   ========================================================= */

@media (max-width: 768px) {

  table[data-responsive="stack"],
  table[data-responsive="stack"] thead,
  table[data-responsive="stack"] tbody,
  table[data-responsive="stack"] tr,
  table[data-responsive="stack"] th,
  table[data-responsive="stack"] td {
    display: block;
    width: 100%;
  }

  table[data-responsive="stack"] thead {
    display: none;
  }

  table[data-responsive="stack"] tr {
    border: 1px solid #ddd;
    margin-bottom: 16px;
    background-color: #fff;
  }

  table[data-responsive="stack"] td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: right;
  }

  table[data-responsive="stack"] td:last-child {
    border-bottom: none;
  }

  table[data-responsive="stack"] td::before {
    content: attr(data-label);
    font-weight: 600;
    padding-right: 12px;
    white-space: nowrap;
    text-align: left;
  }

  /* Valeur toujours collée à droite */
  table[data-responsive="stack"] td > * {
    margin-left: auto;
  }

  /* Première ligne = en-tête de carte */
  table[data-responsive="stack"] tr td:first-child {
    background-color: #f2f2f2;
    font-weight: 600;
  }

  /* Lignes pleine largeur (ex: Important, notes) */
  table[data-responsive="stack"] tr.is-full-row td {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #fff;
    font-weight: normal;
  }

  table[data-responsive="stack"] tr.is-full-row td::before {
    content: none;
  }
}




/* =========================================================
   Account dropdown in header (desktop only)
   Uses native theme icon sizing
   ========================================================= */

/* Container */
.header-account-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Ensure icon + text align perfectly */
.header-account-dropdown a {
  display: inline-flex;
  align-items: center;
}

/* Space between icon and text */
.header-account-dropdown .header__icon {
  margin-right: 0.4rem;
}

/* Dropdown menu */
.header-account-dropdown .account-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin: 0;
  padding: 0.4rem 0;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

/* List reset */
.header-account-dropdown .account-dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Dropdown links */
.header-account-dropdown .account-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  text-decoration: none;
  color: #1f2933;
  font-size: 1.5rem;
  line-height: 1.5;
  white-space: nowrap;
}

/* Hover state */
.header-account-dropdown .account-dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Open dropdown */
.header-account-dropdown:hover .account-dropdown-menu,
.header-account-dropdown:focus-within .account-dropdown-menu {
  display: block;
}


@media screen and (max-width: 749px) {
  .menu-drawer__account .icon-small {
    width: 28px;
    height: 28px;
  }

  .menu-drawer__account .svg-wrapper {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-drawer__account svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 749px) {
  .menu-drawer__account .icon-small {
    transform: scale(2);
    transform-origin: center;
  }
}

@media (max-width: 1150px) {
  #request-access {
    display: none;
  }
}


/* =========================================================
   product-card-wrapper
   ========================================================= */
.product-card-wrapper .card {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card-wrapper:hover .card {
  background-color: #FBFBFB;
}

.product-card-wrapper .card__content {
  padding-bottom: 0.75rem;
}

/* =========================================================
   Main-product top up 
   ========================================================= */
.product-main,
.main-product,
.product__info-wrapper {
  margin-top: -8px;
}

/* =========================================================
   product-reviews
   ========================================================= */
.product-reviews-wrapper{
margin-top:40px;
padding-top:30px;
border-top:1px solid #e5e5e5;
}
.product-reviews-summary{
margin:0 0 20px 0;
}
.product-review-item{
margin-bottom:18px;
padding:16px;
border:1px solid #e5e5e5;
border-radius:6px;
background:#fafafa;
}
.product-review-rating{
margin:0 0 10px 0;
font-weight:600;
}
.product-review-body{
margin:0 0 10px 0;
}
.product-review-author{
margin:0;
font-size:0.9em;
color:#666;
}

/* =========================================================
   FAQ – Optimized for B2B readability
   ========================================================= */

.barry-faq-wrapper{
  max-width: 880px;
  margin: 0 auto;
  padding: 10px 0 10px 0;
}

/* Intro */

.barry-faq-intro{
  margin-bottom: 30px;
}

.barry-faq-intro h2{
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #003760;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.barry-faq-intro p{
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 720px;
}

.barry-faq-download{
  font-weight: 600;
  text-decoration: underline;
  color: #004581;
  transition: opacity 0.2s ease;
}

.barry-faq-download:hover{
  opacity: 0.75;
}


/* FAQ List */

.barry-faq-list{
  margin-top: 30px;
}


/* FAQ Item */

.barry-faq-item{
  padding: 20px 22px;
  margin-bottom: 18px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.barry-faq-item:hover{
  border-color: #d2d2d2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}


/* Question */

.barry-faq-item h3{
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 10px 0;
  color: #003760;
  font-weight: 600;
}


/* Answer */

.barry-faq-item p{
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: #333;
  max-width: 720px;
}


/* Responsive */

@media (max-width: 768px){

  .barry-faq-wrapper{
    padding: 15px 0;
  }

  .barry-faq-intro h2{
    font-size: 24px;
  }

  .barry-faq-item{
    padding: 18px 18px;
  }

  .barry-faq-item h3{
    font-size: 17.5px;
  }

  .barry-faq-item p{
    font-size: 15.5px;
  }
}
.barry-faq-item p + p{
  margin-top: 12px;
}

/* =========================================================
   manual-featured-products
   ========================================================= */

.manual-featured-products__grid{
display:grid;
grid-template-columns:repeat(var(--mfp-columns-desktop),minmax(0,1fr));
gap:20px;
}
@media(max-width:749px){
.manual-featured-products__grid{
grid-template-columns:repeat(var(--mfp-columns-mobile),minmax(0,1fr));
gap:14px;
}
}
.manual-featured-products__header{
margin-bottom:24px;
}
.mfp-title{
margin:0;
}

/* =========================================================
   Shopify Form Styling
   ========================================================= */

/* Shopify Form Styling */
.shopify-form-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.shopify-form-wrapper input[type="text"],
.shopify-form-wrapper input[type="email"],
.shopify-form-wrapper input[type="tel"],
.shopify-form-wrapper textarea {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  color: #666;
}

.shopify-form-wrapper input::placeholder,
.shopify-form-wrapper textarea::placeholder {
  color: #999;
}

.shopify-form-wrapper label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.shopify-form-wrapper button[type="submit"] {
  background-color: #003d7a;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
}

.shopify-form-wrapper button[type="submit"]:hover {
  background-color: #002d5a;
}
/* Fond bleu très léger pour les champs du formulaire */
.shopify-forms__form input[type="text"],
.shopify-forms__form input[type="email"],
.shopify-forms__form input[type="tel"],
.shopify-forms__form textarea {
  background-color: #f0f7ff !important; /* Bleu très pâle */
}

/* Alternative si vous voulez un bleu encore plus léger */
.shopify-forms__form input[type="text"],
.shopify-forms__form input[type="email"],
.shopify-forms__form input[type="tel"],
.shopify-forms__form textarea {
  background-color: #f5faff !important; /* Bleu ultra-léger */
}


/* ── Barry — Contact Information Block (policy pages) ── */
/* À ajouter dans : Assets → base.css (tout en bas)      */

.barry-contact-info-block {
  max-width: 480px;
  margin: 32px auto 0;          /* 64px de marge en bas */
  padding: 28px 32px;
  background: #f8fafc;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  font-family: var(--font-body-family), Arial, sans-serif;
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}

.barry-contact-info-block__title {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-body-family), Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #003760;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #003760;
}

.barry-contact-info-block__body {
  font-size: calc(var(--font-body-scale, 1) * 14px);
  font-family: var(--font-body-family), Arial, sans-serif;
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: #333;
  line-height: 1.9;
  margin: 0;
}

.barry-contact-info-block__body a {
  color: #003760;
  text-decoration: none;
}

.barry-contact-info-block__body a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 749px) {
  .barry-contact-info-block {
    padding: 20px 18px;
    margin: 24px auto 0;
  }
  .barry-contact-info-block__body {
    font-size: calc(var(--font-body-scale, 1) * 13px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   Barry — Styles partagés des formulaires (préfixe .cf-)
   À coller dans : Online Store → Themes → Edit code → Assets → base.css
   Utilisé par : barry-contact-form.liquid, barry-access-pricing-form.liquid
═══════════════════════════════════════════════════════════════ */

/* ── Access Pricing Form — styles complets (préfixe .cf- partagé) ── */
.cf-wrap  { width: 100%; }
.cf-field { margin-bottom: 14px; }

.cf-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.cf-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d6dde5;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #f8fafc;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  outline: none;
  border-color: #003760;
  background: #fff;
}

.cf-select-wrap { position: relative; }
.cf-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}
.cf-select { padding-right: 36px; cursor: pointer; }
.cf-select option[value=""] { color: #999; }

.cf-textarea { resize: vertical; min-height: 110px; }

.cf-input--error,
.cf-select--error  { border-color: #e53e3e !important; background: #fff5f5 !important; }
.cf-input--error:focus,
.cf-select--error:focus { border-color: #c53030 !important; background: #fff !important; }

.cf-error {
  display: none;
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  color: #cc0000;
  margin-bottom: 14px;
}

.cf-legal {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 14px 0 16px;
}
.cf-legal a { color: #003760; }

.cf-submit-btn {
  display: block;
  width: 100%;
  padding: 13px 36px;
  background: #003760;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02rem;
  transition: background 0.15s;
  font-family: inherit;
  text-align: center;
}
.cf-submit-btn:hover:not(:disabled) { background: #004d8a; }
.cf-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.cf-success {
  display: none;
  text-align: center;
  padding: 40px 16px;
}
.cf-success-icon {
  width: 52px; height: 52px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #2e7d32;
}
.cf-success h3 { font-size: 20px; font-weight: 700; color: #003760; margin: 0 0 10px; }
.cf-success p  { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

@media screen and (max-width: 749px) {
  .cf-grid2 { grid-template-columns: 1fr; }
  .cf-input,
  .cf-select,
  .cf-textarea { font-size: 16px !important; padding: 12px 14px; min-height: 48px; }
  .cf-submit-btn { width: 100%; min-height: 52px; font-size: 16px; text-align: center; }
}

/* ── Boîte formulaire ── */
.cf-form-box {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

@media screen and (max-width: 749px) {
  .cf-form-box { padding: 20px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   Barry — Quote Cart Page (préfixe .qcp-)
═══════════════════════════════════════════════════════════════ */

.qcp-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  font-family: inherit;
}
.qcp-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 32px 0 24px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 32px;
}
.qcp-header h1 { font-size: 28px; font-weight: 700; color: #003760; margin: 0; }
.qcp-header a { font-size: 14px; color: #003760; text-decoration: none; }
.qcp-header a:hover { text-decoration: underline; }
.qcp-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.qcp-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.qcp-table thead tr { border-bottom: 2px solid #003760; }
.qcp-table thead th {
  padding: 10px 0; font-size: 11px; font-weight: 700;
  color: #003760; letter-spacing: 0.08rem; text-align: left;
}
.qcp-table thead th.th-qty { text-align: center; width: 130px; }
.qcp-table thead th.th-del { width: 48px; }
.qcp-table thead th.th-price { text-align: right; padding-right: 8px; width: 130px; }
.qcp-table tbody tr { border-bottom: 1px solid #e8ecf0; }
.qcp-table tbody td { padding: 20px 0; vertical-align: middle; }
.qcp-product-cell { display: flex; align-items: center; gap: 16px; }
.qcp-product-img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; border: 1px solid #eef1f5; flex-shrink: 0; }
.qcp-product-img-placeholder { width: 64px; height: 64px; background: #f5f7fa; border-radius: 4px; flex-shrink: 0; }
.qcp-product-name { font-size: 14px; font-weight: 600; color: #003760; text-decoration: none; line-height: 1.3; display: block; margin-bottom: 3px; }
.qcp-product-name:hover { text-decoration: underline; }
.qcp-product-meta { font-size: 12px; color: #666; margin-top: 2px; }
.qcp-qty-cell { text-align: center; }
.qcp-qty-wrapper { display: inline-flex; align-items: center; border: 1px solid #d6dde5; border-radius: 4px; overflow: hidden; background: #fff; }
.qcp-qty-btn { background: none; border: none; width: 36px; height: 40px; cursor: pointer; color: #003760; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qcp-qty-btn:hover { background: #f0f4f8; }
.qcp-qty-input { width: 48px; height: 40px; border: none; border-left: 1px solid #d6dde5; border-right: 1px solid #d6dde5; text-align: center; font-size: 14px; font-weight: 600; color: #003760; background: #fff; -moz-appearance: textfield; }
.qcp-qty-input::-webkit-outer-spin-button,
.qcp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qcp-del-cell { text-align: center; }
.qcp-price-cell { text-align: right; white-space: nowrap; padding-right: 8px; font-size: 13px; font-weight: 600; color: #003760; }
.qcp-price-cell--on-request { font-style: italic; font-weight: 400; color: #888; font-size: 12px; }
.qcp-mobile-price { font-size: 12px; font-weight: 600; color: #003760; margin-top: 6px; }
.qcp-mobile-price--on-request { font-style: italic; font-weight: 400; color: #888; }
.qcp-del-btn { background: none; border: none; cursor: pointer; color: #aab0b8; padding: 8px; display: inline-flex; transition: color 0.15s; }
.qcp-del-btn:hover { color: #cc0000; }
.qcp-products-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; flex-wrap: wrap; gap: 12px; }
.qcp-count { font-size: 14px; color: #555; }
.qcp-clear-btn { background: none; border: none; font-size: 13px; color: #888; cursor: pointer; text-decoration: underline; padding: 0; }
.qcp-clear-btn:hover { color: #cc0000; }
.qcp-form-col { position: sticky; top: calc(var(--header-height, 80px) + 20px); }
.qcp-form-title { font-size: 20px; font-weight: 700; color: #003760; margin: 0 0 20px; }
.qcp-section-label { font-size: 11px; font-weight: 700; color: #003760; text-transform: uppercase; letter-spacing: 0.07rem; margin: 20px 0 14px; padding-bottom: 8px; border-bottom: 1px solid #e0e8f0; }
.qcp-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.qcp-field { margin-bottom: 12px; }
.qcp-label { display: block; font-size: 14px; font-weight: 600; color: #111; margin-bottom: 5px; }
.qcp-input, .qcp-textarea { width: 100%; padding: 10px 12px; border: 1px solid #d6dde5; border-radius: 4px; font-size: 14px; color: #333; background: #f8fafc; box-sizing: border-box; font-family: inherit; transition: border-color 0.15s, background 0.15s; }
.qcp-input:focus, .qcp-textarea:focus { outline: none; border-color: #003760; background: #fff; }
.qcp-textarea { resize: vertical; }
.qcp-input--error { border-color: #e53e3e !important; background: #fff5f5 !important; }
.qcp-input--error:focus { border-color: #c53030 !important; background: #fff !important; }
.qcp-error { display: none; background: #fff5f5; border: 1px solid #fca5a5; border-radius: 4px; padding: 10px 14px; font-size: 13px; color: #cc0000; margin-bottom: 14px; }
.qcp-legal { font-size: 12px; color: #888; line-height: 1.5; margin: 14px 0 16px; }
.qcp-legal a { color: #003760; }
.qcp-submit-btn { width: 100%; padding: 14px; background: #003760; color: #fff; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; letter-spacing: 0.02rem; transition: background 0.15s; }
.qcp-submit-btn:hover:not(:disabled) { background: #004d8a; }
.qcp-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.qcp-layout--empty { display: flex !important; justify-content: center; grid-template-columns: unset !important; }
.qcp-layout--empty .qcp-products { width: 480px; max-width: 100%; }
.qcp-empty { background: #fff; border: 1px solid #dde3ea; border-radius: 8px; padding: 48px 28px 40px; box-shadow: 0 2px 16px rgba(0,0,0,0.08); text-align: center; }
.qcp-empty-icon { width: 52px; height: 52px; background: #f0f4f8; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #003760; }
.qcp-empty p { font-size: 15px; color: #666; margin: 0 0 28px; line-height: 1.6; }
.qcp-empty a { display: inline-block; padding: 13px 32px; background: #003760; color: #fff; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 15px; }
.qcp-empty a:hover { background: #004d8a; }
.qcp-success { display: none; text-align: center; padding: 48px 20px 40px; }
.qcp-success-icon { width: 52px; height: 52px; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #2e7d32; }
.qcp-success h2 { font-size: 20px; font-weight: 700; color: #003760; margin: 0 0 12px; }
.qcp-success p { font-size: 14px; color: #555; line-height: 1.7; margin: 0 auto; max-width: 300px; }
.qcp-layout--success { display: flex !important; justify-content: center; grid-template-columns: unset !important; }
.qcp-layout--success .qcp-form-col { position: static !important; width: 480px; max-width: 100%; }
.qcp-mobile-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #e8ecf0; }
.qcp-mobile-card:first-child { border-top: 1px solid #e8ecf0; }
.qcp-mobile-card-img { width: 100px; height: 100px; object-fit: cover; border-radius: 4px; border: 1px solid #eef1f5; flex-shrink: 0; }
.qcp-mobile-card-img-placeholder { width: 100px; height: 100px; background: #f5f7fa; border-radius: 4px; flex-shrink: 0; }
.qcp-mobile-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.qcp-mobile-card-vendor { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.05rem; }
.qcp-mobile-card-name { font-size: 14px; font-weight: 600; color: #003760; text-decoration: none; line-height: 1.3; }
.qcp-mobile-card-name:hover { text-decoration: underline; }
.qcp-mobile-card-meta { font-size: 12px; color: #666; line-height: 1.4; }
.qcp-mobile-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }

.qcp-form-box {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

@media screen and (max-width: 989px) {
  .qcp-layout { grid-template-columns: 1fr; gap: 32px; }
  .qcp-form-col { position: static; }
  .qcp-header h1 { font-size: 22px; }
}
@media screen and (max-width: 749px) {
  .qcp-grid2 { grid-template-columns: 1fr; }
  .qcp-products-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .qcp-table { display: none; }
  .qcp-mobile-list { display: block; }
  .qcp-header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .qcp-header h1 { font-size: 20px; }
  .qcp-form-box { padding: 20px 16px; }
  .qcp-input, .qcp-textarea { font-size: 16px !important; padding: 12px 14px; min-height: 48px; }
  .qcp-submit-btn { min-height: 52px; font-size: 16px; }
}
@media screen and (min-width: 750px) {
  .qcp-mobile-list { display: none; }
}
@media screen and (max-width: 480px) {
  .qcp-mobile-card { flex-direction: row; gap: 12px; padding: 16px 0; align-items: flex-start; }
  .qcp-qty-btn { width: 40px !important; height: 44px !important; }
  .qcp-qty-input { width: 50px !important; height: 44px !important; font-size: 15px !important; }
  .qcp-del-btn { padding: 10px !important; }
  .qcp-mobile-price { font-size: 13px !important; margin-top: 6px; }
}

/* ═══════════════════════════════════════════════════════════════
   Barry — Request Information Snippet (préfixe .rif-)
═══════════════════════════════════════════════════════════════ */

.rif-wrap { margin-top: 12px; }
.rif-toggle-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; background: #003760; color: #fff; border: none;
  border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer;
  letter-spacing: 0.02rem; transition: background 0.15s; font-family: inherit; width: 100%;
}
.rif-toggle-btn:hover { background: #004d8a; }
.rif-panel {
  display: none; margin-top: 12px; background: #fff; border: 1px solid #dde3ea;
  border-radius: 8px; padding: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); position: relative;
}
.rif-panel.rif-is-open { display: block; }
.rif-close { position: absolute; top: 10px; right: 12px; background: none; border: none; font-size: 22px; line-height: 1; color: #aab0b8; cursor: pointer; padding: 4px 6px; transition: color 0.15s; font-family: inherit; }
.rif-close:hover { color: #333; }
.rif-panel-title { font-size: 18px; font-weight: 700; color: #003760; margin: 0 0 20px; padding-right: 28px; }
.rif-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.rif-field { margin-bottom: 12px; }
.rif-label { display: block; font-size: 14px; font-weight: 600; color: #111; margin-bottom: 5px; }
.rif-input, .rif-textarea { width: 100%; padding: 10px 12px; border: 1px solid #d6dde5; border-radius: 4px; font-size: 14px; color: #333; background: #f8fafc; box-sizing: border-box; font-family: inherit; transition: border-color 0.15s, background 0.15s; }
.rif-input:focus, .rif-textarea:focus { outline: none; border-color: #003760; background: #fff; }
.rif-textarea { resize: vertical; }
.rif-input--error { border-color: #e53e3e !important; background: #fff5f5 !important; }
.rif-input--error:focus { border-color: #c53030 !important; background: #fff !important; }
.rif-error { display: none; background: #fff5f5; border: 1px solid #fca5a5; border-radius: 4px; padding: 10px 14px; font-size: 13px; color: #cc0000; margin-bottom: 14px; }
.rif-legal { font-size: 12px; color: #888; line-height: 1.5; margin: 14px 0 16px; }
.rif-legal a { color: #003760; }
.rif-submit-btn { width: 100%; padding: 14px; background: #003760; color: #fff; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; letter-spacing: 0.02rem; transition: background 0.15s; font-family: inherit; }
.rif-submit-btn:hover:not(:disabled) { background: #004d8a; }
.rif-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.rif-success { display: none; text-align: center; padding: 32px 16px 16px; }
.rif-success-icon { width: 48px; height: 48px; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #2e7d32; }
.rif-success h3 { font-size: 18px; font-weight: 700; color: #003760; margin: 0 0 8px; }
.rif-success p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

@media screen and (max-width: 749px) {
  .rif-grid2 { grid-template-columns: 1fr; }
  .rif-input, .rif-textarea { font-size: 16px !important; padding: 12px 14px; min-height: 48px; }
  .rif-submit-btn { min-height: 52px; font-size: 16px; }
}

/* ── Astérisque champs obligatoires — rouge erreur ── */
.cf-label .req,
.qcp-label .req,
.rif-label .req,
.cf-label:has(+ .cf-input--error),
label .req { color: #e53e3e; }

/* Cibler le * directement via attribut ou span — méthode universelle */
.barry-required-star { color: #e53e3e; font-weight: 700; margin-left: 2px; }

/* Cacher "(X in cart)" / "(X au panier)" sur les pages produit */
.quantity__rules-cart { display: none !important; }

/* ── Cacher pickup availability sur les pages produit ── */
pickup-availability {
  display: none !important;
