/** Shopify CDN: Minification failed

Line 1165:0 Comments in CSS use "/* ... */" instead of "//"
Line 1265:1 Expected "}" to go with "{"

**/
/*
    © 2023 EcomGraduates.com
    https://www.ecomgraduates.com
*/

/*
    General layout
*/
#main {
    transition: all .2s ease-out;
}

#main::after {
    z-index: 1019;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .25);
    visibility: hidden;
    opacity: 0;
    transition: all .3s linear;
}

#main.main-hidden {
    position: relative;
}

#main.main-hidden::after {
   opacity: 1;
   visibility: visible;
}


/*
    Blog/Article
*/
.article-item img {
    transition: all .2s ease-out;
}

.article-item a:hover img {
    opacity: .75;
}


/*
    Article Prev/Next
*/
#article-prev-next-prev,
#article-prev-next-next {
    position: fixed;
    top: 50%;
    transition: all .2s ease-out;
    z-index: 9;
}

#article-prev-next-prev {
    left: 0;
    transform: translate(-100%, -50%);
}

.show #article-prev-next-prev {
    transform: translate(-50%, -50%);
}

.show #article-prev-next-prev:hover,
.show #article-prev-next-prev:focus {
    transform: translate(0, -50%);
}

#article-prev-next-next {
    right: 0;
    transform: translate(100%, -50%);
}

.show #article-prev-next-next {
    transform: translate(50%, -50%);
}

.show #article-prev-next-next:hover,
.show #article-prev-next-next:focus {
    transform: translate(0, -50%);
}

#article-prev-next-prev img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#article-prev-next-next img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 1599px) {
    #article-prev-next img {
        max-width: 60px;
    }
}



/*
    Search page
*/
@media (max-width: 991px) {
    #search-header .btn {
        width: 100%;
    }
}

@media (min-width: 992px) {
    #search-header .form-select {
        width: auto;
        min-width: 160px;
    }
}


/*
    Account pages 
    account, login, register, order, etc
*/


/*
    Quantity wrapper (plus/minus)
*/ 
.quantity-wrapper {
    position: relative;
    max-width: 120px;
    flex-shrink: 0;
}

.quantity-wrapper .btn {
    position: absolute;
    top: 0;
    padding: 0;
    width: 36px;
    height: 100%;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-wrapper .btn:focus-visible {
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb),.25);
}

.quantity-wrapper .btn[data-mode="minus"] {
    left: 0;
}

.quantity-wrapper .btn[data-mode="plus"] {
    right: 0
}

.quantity-wrapper .form-control {
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
}


/*
    SplideJS overrides
*/
.splide__arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H6M12 5l-7 7 7 7'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(var(--bs-dark-rgb), .75);
    width: 2rem;
    height: 2rem;
    transition: all .2s ease-out;
    opacity: 1;
}

@media (min-width: 576px) {
    .splide__arrow {
        width: 2.25rem;
        height: 2.25rem;
    }
}

.splide__arrow:not([disabled]):hover {
    background-color: var(--bs-primary);
    opacity: 1;
    background-position: 40% 50%;
}

.splide.is-focus-in .splide__arrow:focus,
.splide__arrow:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.125rem rgba(var(--bs-primary-rgb), .5)
}

.splide__arrow--prev {
}

.splide__arrow--next {
    transform: rotate(180deg) translateY(50%);
}

.splide__arrow:disabled {
    opacity: 0 !important;
}

.splide__arrow svg {
    display: none;
}

.splide__track--nav > .splide__list > .splide__slide {
    border: 1px solid transparent;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
    border: 1px solid var(--bs-primary);
}

body .splide__video,
body .splide__video iframe,
body .splide__video__wrapper {
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

body .splide__video__play {
    background-color: var(--bs-body-color);
}

body .splide__video__play:after {
    border-left-color: var(--bs-body-bg);
}

/* 
    Glightbox gallery
*/
@media (max-width: 768px) {
    body .glightbox-clean .gprev,
    body .glightbox-clean .gnext {
        top: 45%;
        width: 32px;
        height: 38px;
        border-radius: 0.125rem;
    }
    body .glightbox-clean .gprev {
        left: 1rem;
    }
    body .glightbox-clean .gnext {
        right: 1rem;
    }
    body .glightbox-clean .gprev svg,
    body .glightbox-clean .gnext svg {
        width: 20px;
    }
}


/*
    Countdown timers
*/
ul.countdown-timer {
    display: flex;
    margin: 0;
}

ul.countdown-timer li {
    border-radius: .25rem;
    padding: .075rem .15rem;
    margin: 0 0.125rem;
    font-size: .7rem;
    font-weight: bold;
    min-width: 20px;
    min-height: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-light);
    color: var(--bs-dark);
    border: 1px solid var(--bs-dark);
    border-radius: var(--bs-border-radius);
}

.text-white ul.countdown-timer li {
    background: white;
    color: var(--bs-dark);
    border-color: transparent;
}


/*
    Wishlist - various
*/
.wishlist-icon {
    position: relative;
}

.wishlist-icon .badge {
    position: absolute;
    top: 2px;
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
    Offcanvas Accordion
*/
.offcanvas-accordion .offcanvas-body {
    padding: 1rem;
}

.offcanvas-accordion .accordion {
    margin-bottom: 0;
}

.offcanvas-accordion .accordion-item {
    border-left: none;
    border-right: none;
}

.offcanvas-accordion .accordion-item:first-of-type {
    border-top: none;
}

.offcanvas-accordion .accordion-item:last-of-type {
    border-bottom: none;
}

.offcanvas-accordion .accordion-button {
    padding: 1rem 1.25rem;
}

.offcanvas-accordion .accordion-body {
    padding: 1rem 1.25rem;
}

.offcanvas-from-bottom {
  transform: translateY(100%);
}

.offcanvas-from-top {
  transform: translateY(-100%);
}

.offcanvas.show:not(.hiding), 
.offcanvas.showing {
  transform: none;
}

.offcanvas.rounded {
  margin: 0.75rem;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}

.offcanvas.rounded .offcanvas-header {
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
}

@media (max-width: 575px) {
  .offcanvas.rounded {
    width: calc(100% - 1.5rem) !important;
  }
}


/*
    Offcanvas wishlist
*/
#offcanvas-wishlist .product-item {
    position: relative;
}

#offcanvas-wishlist .product-item .product-item-title {
    margin-right: 2.25rem;
}

#offcanvas-wishlist .product-item .spr-badge {
    margin: 0 0 .25rem;
}

#offcanvas-wishlist .product-item .btn-remove {
    position: absolute;
    top: .5rem;
    right: -.25rem;
    display: flex;
    color: var(--bs-dark);
    opacity: .75;
    border: none;
}

#offcanvas-wishlist .product-item .btn-remove:hover,
#offcanvas-wishlist .product-item .btn-remove:focus {
    opacity: 1;
}

#offcanvas-wishlist-empty {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

#offcanvas-wishlist-empty svg {
    animation: offcanvas-wishlist-empty-svg-animation 1s linear infinite alternate;
}

@keyframes offcanvas-wishlist-empty-svg-animation {
    from {
        transform: translateX(-.5rem);
    }
    to {
        transform: translateX(.5rem);
    }
}


/*
    Offcanvas menu
*/
#offcanvas-menu {
    max-width: 300px;
}

#offcanvas-menu .offcanvas-header a {
    color: currentColor;
}

#offcanvas-menu-nav .nav-link {
    color: var(--bs-body-color);
    border-bottom: 1px solid var(--bs-border-color);
    padding: 0.75rem 2.5rem .75rem 1rem;
    font-weight: 500;
    position: relative;
}

#offcanvas-menu-nav .nav-link[aria-expanded]::after {
    content: "";
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-size: cover;
    transition: all .2s ease-out;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */
}

#offcanvas-menu-nav .nav-link[aria-expanded="true"]::after {
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E"); */
}

#offcanvas-menu-nav .nav-link.active {
    color: var(--bs-primary);
}

#offcanvas-menu-nav .nav {
    padding: .5rem 0;
    background-color: var(--bs-light);
}

#offcanvas-menu-nav .dropdown-item {
    padding: .5rem 1rem;
}

#offcanvas-menu-nav .dropdown-item.active {
    color: var(--bs-primary);
}

#offcanvas-menu-nav .megamenu-block a {
    display: block;
    text-align: center;
    color: currentColor;
    text-decoration: none;
    font-size: .875rem;
    padding: 1rem;
}

#offcanvas-menu-nav .megamenu-block + .megamenu-block a {
    padding-top: .25rem;
}

#offcanvas-menu-utilities-nav .nav-link {
    color: var(--bs-body-color);
    font-size: .875rem;
    display: flex;
    align-items: center;
}

#offcanvas-menu-utilities-nav .nav-link.active {
    color: var(--bs-primary);
}

#offcanvas-menu-utilities-nav .wishlist-count-badge {
    background-color: var(--bs-primary);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.25rem;
}

#offcanvas-menu .offcanvas-footer {
    padding: .25rem .5rem .5rem;
    background-color: var(--bs-light);
    border-top: 1px solid var(--bs-border-color);
}

#offcanvas-menu .social-icons .nav-link {
    color: var(--bs-dark);
} 


/*
    Offcanvas search
*/
#offcanvas-search {
    
}

#offcanvas-search .form-control-wrapper {
    position: relative;
}

#offcanvas-search .form-control-wrapper svg.icon-search {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: .75;
}

#offcanvas-search .form-control-wrapper .form-control {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

#offcanvas-search .form-control-wrapper .btn-search-by-voice {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: .75;
    display: flex;
    align-items: center;
    transition: all .2s ease-out;
}

#offcanvas-search .form-control-wrapper .btn-search-by-voice.speech-started {
    animation: speechStarted 1s linear infinite alternate;
}

@keyframes speechStarted {
    to { opacity: .25; }
}

#offcanvas-search .form-control-wrapper .btn-search-by-voice:hover,
#offcanvas-search .form-control-wrapper .btn-search-by-voice:focus {
    opacity: 1;
}

#offcanvas-search .form-control-wrapper .btn-search-by-voice:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), .25);
} 

.predictive-search-results-title {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: .5rem;
}

#predictive-search .product-item .spr-badge {
    margin-bottom: .25rem;
}


/*
    Language/Currency selector
*/
.language-selector .dropdown-menu,
.currency-selector .dropdown-menu {
    max-height: 360px;
    overflow: auto;
    z-index: 1021;
    border: none;
}



/*
    Shopify's Product Reviews App
    https://apps.shopify.com/product-reviews
*/
body .spr-icon {
}

body .spr-badge {
    margin: 0 0 0.5rem;
}

body .spr-starrating {
    display: inline-block;
}

body [class^="spr-icon-"]:before, 
body [class*=" spr-icon-"]:before {
    font-size: 100%;
}

body .spr-badge-caption {
    font-size: .875rem;
    opacity: .75;
}

body .spr-summary {
    font-size: .875rem;
    margin-bottom: .25rem;
}

body #shopify-product-reviews {
    margin: 0;
}

body .spr-container {
    max-width: 1290px;
    margin: 3rem auto;
    padding: 1rem;
    border-color: var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

@media (max-width: 1320px) {
    body .spr-container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

body .spr-header-title {
    margin-bottom: .5rem;
}

body .spr-summary-actions-newreview {
    font-size: 1rem;
    padding-left: 2.25rem;
    margin-top: -1rem;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 14.66V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.34'%3E%3C/path%3E%3Cpolygon points='18 2 22 6 12 16 8 16 8 12 18 2'%3E%3C/polygon%3E%3C/svg%3E");
    background-position: 0.65rem center;
    background-size: 18px;
    background-repeat: no-repeat;
}


body .spr-form-title {
    font-size: 24px;
    line-height: normal;
    margin-bottom: .5rem;
}

body .spr-form-label {
    font-size: 1rem;
    line-height: normal;
    margin: 0 0 .75rem;
}

body .spr-form-contact-name, 
body .spr-form-contact-email, 
body .spr-form-contact-location, 
body .spr-form-review-rating, 
body .spr-form-review-title, 
body .spr-form-review-body {
    margin-bottom: 1.25rem;
}

body .spr-form-message-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

body .spr-form-actions .btn {
    float: left;
}

body .spr-review-content-body {
    font-size: 1rem;
    line-height: normal;
}

body .spr-review-content {
    margin-bottom: 1rem;
}

body .spr-review-header-starratings {
    margin-bottom: .25rem;
}

body .spr-review-header-byline {
    font-size: 14px;
    opacity: .75;
    margin-bottom: .5rem;
}

body .spr-review-reply {
    background: var(--bs-light);
    border-radius: .25rem;
    padding: 1rem;
}

body .spr-review-reply-body {
    font-size: 1rem;
}

body .spr-review-reportreview {
    color: var(--bs-dark);
    opacity: .5;
}

.spr-pagination-page a {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 0.125rem 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s ease-out;
}

.spr-pagination-page a:hover,
.spr-pagination-page a:focus {
    background-color: rgba(0, 0, 0, .05);
}

.spr-pagination-page.is-active {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 0.125rem 0.5rem;
}

@media (max-width: 480px) {
    body .spr-summary-actions-newreview {
        display: block;
        margin-top: .75rem;
    }
}

/*
    Loox
    https://apps.shopify.com/product-reviews
*/
.loox-rating svg.loox-icon {
    width: .9em;
    height: .9em;
}

.loox-rating .loox-rating-label {
    font-size: .9em;
}


/*
    JudgeMe
    https://apps.shopify.com/judgeme
*/
body .jdgm-prev-badge {
    font-size: .9em;
}

.product-item .jdgm-prev-badge {
    margin-bottom: .25rem;
}

body .jdgm-rev-widg {
    max-width: 1320px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.page-type-product .jdgm-widget {
  width: 100%;
  padding-right: var(--bs-gutter-x, .75rem);
  padding-left: var(--bs-gutter-x, .75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .page-type-product .jdgm-widget { max-width: 540px; }
}

@media (min-width: 768px) {
  .page-type-product .jdgm-widget { max-width: 720px; }
}

@media (min-width: 992px) {
  .page-type-product .jdgm-widget { max-width: 960px; }
}

@media (min-width: 1200px) {
  .page-type-product .jdgm-widget { max-width: 1140px; }
}

@media (min-width: 1400px) {
  .page-type-product .jdgm-widget { max-width: 1320px; }
}

.jdgm-rev__pic-img {
  border-radius: var(--bs-border-radius) !important;
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.jdgm-gallery__thumbnail {
  border-radius: var(--bs-border-radius) !important;
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}


/*
    noUiSlider
    https://refreshless.com/nouislider/
*/
body {
    
}

body .noUi-horizontal {
    height: 8px;
}

body .noUi-horizontal .noUi-handle {
    width: 22px;
    height: 22px;
    right: -11px;
    top: -8px;
    border-radius: 50%;
    box-shadow: none;
    background-color: var(--bs-body-bg);
    border: 1.5px solid var(--bs-body-color)
}

body .noUi-handle::before,
body .noUi-handle::after {
    background-color: var(--bs-body-color);
    height: 8px;
    width: 1.5px;
    left: 7px;
    top: 5px;
}

body .noUi-handle::after {
    left: 11px;
}

body .noUi-target {
    box-shadow: none;
    background-color: var(--bs-light);
    border: 1px solid var(--bs-border-color);
    padding: 0 11px;
}

body .noUi-connect {
    background-color: var(--bs-body-color);
}


/*
    Rivo Reviews
*/


/*
    Shopify Subscriptions App
*/
body .shopify_subscriptions_app__title {
    font-family: var(--bs-headings-font-family);
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

body .shopify_subscriptions_app_block_label ul {
    padding: 0.25rem 0 0;
}

body .shopify_subscriptions_fieldset label {
    display: flex;
    align-items: center;
}

body .shopify_subscriptions_fieldset input[type="radio"] {
    margin: 0 .75rem 0 0;
}

body .shopify_subscriptions_app_policy {
    margin: .25rem 0 2rem;
    opacity: .75;
    text-align: center;
    font-size: .925rem;
}


/* scroll progress bar */

.scroll-progress-bar-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2075;
}

.scroll-progress-bar-container {
    background-color: rgba(150, 150, 150, 0.6);
    height: 5px;
    width: 100%;
}

.scroll-progress-bar {
    background-color: var(--bs-primary);
    height: 5px;
    width: 0%;
}


/*
    Air Datepicker
*/
body .air-datepicker {
    --adp-border-radius: var(--bs-border-radius);
    --adp-color-current-date: var(--bs-primary);
    --adp-cell-background-color-selected-hover: var(--bs-primary);
    --adp-cell-background-color-selected: var(--bs-primary);
    --adp-day-name-color: var(--bs-secondary);
    --adp-day-name-color-hover: var(--bs-secondary);
}

/*
    Afterpay
*/
#product-page .afterpay-paragraph {
    font-size: .9rem;
    margin: -1rem 0 .75rem !important;
}



/*
    Article Upsell Product
*/
#article-upsell-product {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 2147483647;
    background-color: white;
    max-width: 320px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease-in-out;
}

#article-upsell-product:hover {
    transform: translateY(-5px);
}

#article-upsell-product img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
}

#article-upsell-product .qty-selector {
    margin-top: 2rem; 
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#article-upsell-product .qty-selector label {
    font-weight: bold;
}

#article-upsell-product .qty-selector input {
    width: 50px;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

/* MOBILE (≤768px) : dots visibles sur la galerie produit, positionnés sur l'image */
@media (max-width: 768px) {
  /* Cache les vignettes miniatures */
  [class*="thumbs" i],
  [class*="thumbnails" i],
  [class*="product-thumbs" i],
  [class*="gallery-thumbs" i],
  .thumbnails-wrapper,
  .thumbs-wrapper,
  .product-gallery__thumbnails,
  .product__media-thumbnails,
  .product__thumbs,
  .media-gallery__thumbnails,
  .swiper-thumbs,
  .splide__thumbnails,
  .flickity-thumbs {
    display: none !important;
    visibility: hidden !important;
  }

  /* Ancre la pagination à la galerie */
  .product__media-gallery .splide { 
    position: relative !important; 
  }

  /* Dots visibles SEULEMENT pour la vraie galerie produit */
  .product__media-gallery .splide__pagination {
    display: flex !important;
    position: absolute !important;
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 25 !important;
    gap: 8px !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.4) !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    margin: 0 !important;
    list-style: none !important;
    backdrop-filter: blur(4px) !important;
  }

  /* Style des points - optimisé pour la visibilité */
  .product__media-gallery .splide__pagination__page {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
    border: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
  }
  
  /* Dot actif - plus visible */
  .product__media-gallery .splide__pagination__page.is-active,
  .product__media-gallery .splide__pagination__page[aria-current="true"] {
    background: #ffffff !important;
    transform: scale(1.3) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4) !important;
  }

  /* Effet hover sur les dots */
  .product__media-gallery .splide__pagination__page:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.1) !important;
  }

  /* Masquer les dots dans les autres carrousels */
  .related-products .splide__pagination,
  .product-recommendations .splide__pagination,
  .you-may-also-like .splide__pagination,
  .collection-slider .splide__pagination,
  .featured-collection .splide__pagination,
  .carousel .splide__pagination,
  .slider .splide__pagination {
    display: none !important;
  }
}

/* DESKTOP (≥769px) : pas de dots sur la galerie produit */
@media (min-width: 769px) {
  .product__media-gallery .splide__pagination { 
    display: none !important; 
  }
}

/* Assurer que le conteneur parent permet le positionnement absolu */
.product__media-gallery {
  position: relative;
}

.product__media-gallery .splide__track {
  position: relative;
  overflow: hidden;
}

/* Mobile : dots plus fins et doux */
@media (max-width: 768px) {
  /* L’overlay de fond un peu plus léger et compact */
  .mobile-dots-custom {
    gap: 5px !important;
    padding: 5px 8px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 9999px;
  }

  /* Dots plus fins (diamètre réduit) + transitions plus douces */
  .mobile-dots-custom button {
    width: 6px !important;      /* ← plus fin (tu peux mettre 5px si tu veux ultra fin) */
    height: 6px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.5); /* léger contour pour la netteté */
    transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
    opacity: .9; /* un chouïa plus soft */
  }


.d-block.lh-sm.opacity-75.fst-italic {
  font-style: italic;
  font-weight: bold;
  color: #000 !important;   /* noir pur */
  opacity: 1 !important;    /* annule le gris de .opacity-75 */
}

#cart-drawer .btn-checkout {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

//* Footer panier minimal - Mobile avec textes lisibles */
.offcanvas-footer { 
  padding: 0.375rem 0.625rem !important; 
}

#offcanvas-cart-subtotal { 
  margin-bottom: 0.125rem !important; 
  font-size: 1.1rem !important;
}

.offcanvas-footer .small { 
  margin-top: 0 !important; 
  margin-bottom: 0.25rem !important; 
  font-size: 0.8rem !important;
}

.btn-checkout { 
  padding: 0.375rem !important; 
  font-size: 1rem !important;
}

.btn-checkout svg { 
  width: 14px !important; 
  height: 14px !important; 
  margin-right: 0.25rem !important;
}

.payment-icons-wrapper { 
  margin-top: 0.125rem !important; 
  margin-bottom: 0 !important; 
}

.payment-icons li { 
  padding: 0.015625rem !important; 
}

.payment-icons .icon { 
  width: 28px !important; 
  height: 18px !important; 
}

.payment-icons small { 
  font-size: 0.75rem !important; 
  line-height: 1.1 !important; 
  margin-top: 0.0625rem !important; 
}

.btn-atc.btn.btn-sm.btn-primary.w-100.text-nowrap { 
  padding: 0.25rem 0.375rem !important; 
  font-size: 0.75rem !important;
}

#offcanvas-cart-label,
#offcanvas-cart-label * {
  text-align:center!important;
  margin:0 auto!important;
  display:block!important;
}
/* Overlay invisible pour bloquer les clics */
#cart-upsell a::before,
#cart-upsell [href]::before,
#cart-upsell .product-link::before,
#cart-upsell .product-title::before,
#cart-upsell .product-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: transparent;
  pointer-events: auto;
}

/* Assurer que les éléments parents sont en position relative */
#cart-upsell a,
#cart-upsell [href],
#cart-upsell .product-link,
#cart-upsell .product-title,
#cart-upsell .product-image {
  position: relative !important;
  pointer-events: none !important;
  cursor: default !important;
}

/* Les boutons d'ajout ne doivent pas avoir l'overlay */
#cart-upsell .btn::before,
#cart-upsell .add-to-cart::before,
#cart-upsell .product-form__submit::before,
#cart-upsell button[type="submit"]::before {
  display: none !important;
}

#cart-upsell .btn,
#cart-upsell .add-to-cart,
#cart-upsell .product-form__submit,
#cart-upsell button[type="submit"] {
  pointer-events: auto !important;
  cursor: pointer !important;
}