/*
===========================================
============ Native element ===============
===========================================
*/

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
    --primary-color: red;
    --secondary-color: black;    
}

html, body {
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.3;
}
.primary-color {
    color: var(--primary-color);
}
.secondary-color {
    color: var(--secondary-color);
}


/* ------ CUSTOM EVA ----- */

.h1{
    font-weight: bold;
    color: red;
}


ul{
    font-size: 1.2rem;
}

.acceptCgv a{
     text-decoration: underline !important;
    color: red;
}

.acceptCgs a {
    text-decoration: underline !important;
    color: red;
}

td.bcl-suggestion {
    display: none !important;
}

.total .subtotal {
    width: 85px;
    display: inline-block;
}

.cart-totals .total{
    font-weight: bold;
    border-top : 2px solid black;
    padding-top: 15px;
    margin-top: 15px;
}


.extrasell-header h4{
    font-weight: bold;
    color: red;
}

.section-1 {
    background: linear-gradient(45deg, black, red) !important;
    color: white;
}

.section-3{
    background: linear-gradient(45deg, black, red) !important;
    color: white;
}

/* Sections 2 & 4 : noir vers rouge */
.section-2 h2,
.section-4 h2 {
  background: linear-gradient(135deg, #000000 0%, #8b0000 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  display: inline-block;
  transform: rotate(-2deg);
  border-radius: 2px;
  margin-bottom: 2rem;
  margin-top: 1.1rem;  
}

/* Sections 1 & 3 : blanc vers gris clair + ombre légère */
.section-1 h2,
.section-3 h2 {
  background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
  color: #000000;
  padding: 1rem 1.5rem;
  display: inline-block;
  transform: rotate(2deg);
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 2rem;
  margin-top: 1.1rem;  
}

.section-1, .section-2, .section-3, .section-4{
    margin-bottom: 1.8rem;
}


/* Ombre slider */
.slider-shadow {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Flèches rouges */
.custom-arrow {
    filter: invert(16%) sepia(96%) saturate(7486%) hue-rotate(357deg) brightness(95%) contrast(119%);
}

/* Option : agrandir légèrement les flèches */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}



/* ===== Checkout layout propre ===== */

.checkout-wrapper .shopping-cart-table tbody .cart-row {
    display: flex !important;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Image */
.checkout-wrapper .shopping-cart-table tbody .cart-row td.image {
    position: relative;
    flex: 0 0 70px;
}

/* Quantité en badge SUR l’image */
.checkout-wrapper .shopping-cart-table tbody .cart-row td.qty {
    position: absolute !important;
    top: -6px;
    left: 45px;
    background: red;
    color: #fff;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    padding: 0 6px;
}

/* Bloc texte */
.checkout-wrapper .shopping-cart-table tbody .cart-row td.item,
.checkout-wrapper .shopping-cart-table tbody .cart-row td.choice-name {
    display: block !important;
    margin: 0;
}

/* On force empilement description sous titre */
.checkout-wrapper .shopping-cart-table tbody .cart-row td.item {
    flex: 1;
    font-weight: 600;
}

.checkout-wrapper .shopping-cart-table tbody .cart-row td.choice-name {
    flex: 1;
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 4px;
}

/* Prix à droite */
.checkout-wrapper .shopping-cart-table tbody .cart-row td.subtotal {
    margin-left: auto;
    font-weight: 600;
    white-space: nowrap;
}

/* Masquer prix unitaire */
.checkout-wrapper .shopping-cart-table tbody .cart-row td.price {
    display: none !important;
}





/* FIN CUSTOM */


.container-fluid {
    --bs-gutter-x: 0px !important;
}


.red {
    color: red;
}
.orange {
    color: red;
}
.bg-green {
    background-color: #97D700;
}
.bg-orange {
    background-color: #ED8B00;
}
.bg-orange-light {
    background-color: #fafafa;
}
.bg-green-light {
    background-color: #f7ffe6;
}
.extrasmall {
    font-size: 12px;
}
.drop-shadow {
    filter: drop-shadow(5px 4px 2px #ccc);
}
h2 {
    color: var(--secondary-color);
}
a {
    color: var(--secondary-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

p {
    margin-top: 0;  
    font-size: 1.2rem;  
}
.table-global-wrapper table {
    margin-bottom: 30px;
    margin-top: 15px;
}
.table-global-wrapper table td {
    border: 1px solid #d7d7d7;
    padding: 10px;
}
.alert-top {
    display: block;
    position: fixed;
    top :0;
    left: 0;
    width: 100%;
    z-index: 99;
    opacity: 0.7;
    pointer-events: none;
}
.action.primary {
    background-image: none;
    background: #08c;
    border: 1px solid #08c;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: 7px 15px;
    font-size: 1.4rem;
    vertical-align: middle;
    font-weight: 400;
    line-height: 22px;
}
.sticky-top  {
    z-index: 9999;
}
.blinking {
    animation: animate 2s linear infinite;
}
    @keyframes animate {
        0% {opacity: 0.2;}
        50% {opacity: 1;}
        100% {opacity: 0.2;}
    }
.rotated { 
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* === Loader === */

.loading {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #555;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}
.page-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #555;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

/* === Pagination === */

.pagination-effect-grid-enter-active {
    transition: all 0.5s ease;
}
.pagination-effect-grid-enter-from {
    opacity: 0;
    transform: translateX(30px);
}

/* === Services Premium === */

.minicart-content #oneclick-choice-div {
    display: none;
}
.spinfo {
    color: orange;
    font-weight: 500;
}

.sp-disclaimer {
    background: #f9f9f9;
    font-size: 0.75rem;
}

.sp-disclaimer p {
    margin-bottom: 5px;
    opacity: 0.75;
}

#oneclick-choice-div {
    opacity: 0.7;
    font-size: 0.85rem;
    border-bottom: 0;
}

#oneclick-choice-div .item-wrapper .item-content {
    margin: 0 10px 0 0;
    display: inline-block;
    vertical-align: middle;
}

#oneclick-choice-div .item-wrapper .item-content a {
    color: #002A3A;
}

#oneclick-choice-div .item-wrapper .item-content-action {
    display: inline-block;
    vertical-align: middle;
    opacity: 0;
    transition: all ease-in 0.2s;
    -webkit-transition: all ease-in 0.2s;
    -ms-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
}

#oneclick-choice-div:hover > .item .item-wrapper .item-content-action {
    opacity: 1;
}

#oneclick-choice-div .delete-item-btn {
    height: 30px;
    width: 30px;
    border: none;
    background: none;
    color: grey;
}
#oneclick-choice-div .delete-item-btn:before {
    line-height: 30px;
    font-size: 0.95rem;
}

#oneclick-choice-div .item-wrapper:after {
    display: block;
    content: 'livraison prioritaire + réductions, cadeaux et ventes privées exclusifs';
    font-size: 0.65rem;
}

/* === waiting double optin === */

.enter-your-token .input-number-token {
    border: 0;
    border-bottom: 1px solid #ddd;
    width: 2rem;
    text-align: center;
    margin: 0 0.2rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}
.enter-your-token .input-number-dash {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
}
.enter-your-token .countdown {
    position: relative;
    margin: auto;
    height: 100px;
    line-height: 100px;
    width: 100px;
    text-align: center;
    margin-top: 20px;
    background: #429bd6;
    background: linear-gradient(145deg, #429bd6 0%, #22458d 100%);
    font-size: 18px;
    border-radius: 50%;
}
.enter-your-token .countdown .countdown-number {
    color: white;
    display: inline-block;
    line-height: 100px;
}
.enter-your-token .countdown svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    transform: rotateY(-180deg) rotateZ(-90deg);
}
.enter-your-token .countdown svg circle {
    stroke-dasharray: 301px;
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 2px;
    stroke: white;
    fill: none;
}
/* === Buttons === */

.add-to-cart {
    display: flex;
}
.back-home,
.btn-contact,
.minicart-content .checkout-btn,
.add-to-cart-btn,
.know-more,
.products-slider .product-item-details .know-more {
    background-color: red;
    border: none;
    border-radius: 5px;
    color: white;
    width: 100%;
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    line-height: 27px;
    padding: 5px 10px;
    margin: 0;
    font-style: normal;
}
.btn-contact:hover,
.back-home:hover,
.minicart-content .checkout-btn:hover,
.add-to-cart-btn:hover,
.know-more:hover,
.products-slider .product-item-details .know-more:hover {
    background: #002A3A;
    text-decoration: none !important;
    color: #fff;
}
.btn.btn-primary,
.add-to-cart-bcl .add-to-cart-btn,
.btn.btn-filter {
    color: #ffffff;
    background-color: red;
    border: 0;
}
.btn.btn-primary:hover,
.add-to-cart-bcl .add-to-cart-btn:hover,
.btn.btn-filter:hover {
    color: #ffffff;
    background-color: #ED8B00;
    text-decoration: none;
    border: 0;
}
.minicart-content .checkout-btn:before {
    font-family: "bootstrap-icons";
    content: '\F26D';
    display: inline;
    margin-right: 8px;
}
.add-to-cart-btn:before {
    font-family: "bootstrap-icons";
    content: '\F176';
    display: inline;
    margin-right: 10px;
}
.back-home:before {
    font-family: "bootstrap-icons";
    content: '\F896';
    display: inline;
    margin-right: 10px;
}
.btn-contact:before {
    font-family: "bootstrap-icons";
    content: '\F6B9';
    display: inline;
    margin-right: 10px;
}
.delete-item-btn {
    background-color: transparent;
    border: none;
    color: grey;
    width: 40px;
    display: inline-block;
    position: relative;
    text-indent: -99999px;
}
.delete-item-btn:before {
    font-family: "bootstrap-icons";
    content: '\F5DE';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20%;
    left: 0;
    line-height: 1;
    font-size: 18px;
    text-indent: initial;
}

.delete-coupon-btn {
    background-color: transparent;
    border: none;
    color: grey;
    height: 32px;
    width: 32px;
    display: inline-block;
    position: relative;
    text-indent: -99999px;
    margin: 0 5px;
}
.delete-coupon-btn:before {
    font-family: "bootstrap-icons";
    content: '\F5DE';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 32px;
    font-size: 18px;
    text-indent: initial;
}
.delete-coupon-btn:hover,
.delete-item-btn:hover {
    background-color: transparent;
    color: #000;
}

/* == Transitions == */

a, button {  
    transition: all ease-in 0.2s;
    -webkit-transition: all ease-in 0.2s;
    -ms-transition: all ease-in 0.2s;
    -o-transition: all ease-in 0.2s;
}

/* === Announcement Bar === */

.announcement-bar {
    overflow: hidden;
    height: 40px; /* Fixed height */
    position: relative;
    background-color: #002A3A;
    color: #fff;
}
.announcement-list li {
    height: 40px; /* Ensure each li has the same height as the bar */
    line-height: 40px; /* Center text vertically */
    text-align: center;
    width: 100%;
    display: none; /* Initially hide all messages */
}

/* === Header === */

.header  {
    -webkit-box-shadow: 0 0 5px rgba(0, 0,0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0,0, 0.15);
}

.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 100%;
}
.main-menu-wrapper a {
    text-decoration: none;
}
.main-menu-wrapper a:hover {
    color: var(--primary-color)!important;
}
.main-menu-wrapper .category-item.level1 a {
    color: var(--bs-nav-link-color);
}
li[data-id="24"].category-item.level1 a {
    color:#ED8B00
}
.main-menu-wrapper .dropdown-item:focus, 
.main-menu-wrapper .dropdown-item:hover {
    background-color: transparent;
}
.dropdown-mega .mega-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dropdown-mega .main-menu-categorie ul.menu_vp a {
    color: #c571da;
}
.dropdown-mega .main-menu-categorie ul li.level1 {
    margin-bottom: 0.6rem;
}
.dropdown-mega .main-menu-besoin ul.subchildmenu li.level2 {
    margin-bottom: 0.8rem;
}
.dropdown-mega .main-menu-categorie li.level1 ul.subchildmenu {
    display: none;
}
.dropdown-mega .main-menu-besoin li.level1 a {
    display: none;
}
.dropdown-mega .main-menu-besoin li[data-id="2"].level1 ul.subchildmenu li a {
    display: initial;
}
.dropdown-mega .main-menu-besoin ul.main-menu {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.dropdown-mega .main-menu-besoin .subchildmenu .level2 img {
    width: 45px;
    margin-right: 1rem;
}
.dropdown-mega .best-product .list-group-item {
    border: 0;
}
.main-menu-mobile-wrapper.offcanvas {
    width: 100%;
    max-width: 100%;
    border: none;
}
.main-menu-mobile-wrapper.offcanvas .accordion-button {
    color: var(--secondary-color);
}
.main-menu-mobile-wrapper.offcanvas .accordion-button:not(.collapsed) {
    color: red;
}
.main-menu-mobile-wrapper .main-menu-besoin ul,
.main-menu-mobile-wrapper .main-menu-categorie ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu-mobile-wrapper ul li {
    margin-bottom: 0.8rem;
}
.main-menu-mobile-wrapper .main-menu-categorie li.level1 ul.subchildmenu {
    display: none;
}
.main-menu-mobile-wrapper .main-menu-besoin li.level1 a {
    display: none;
}
.main-menu-mobile-wrapper .main-menu-besoin li[data-id="2"].level1 ul.subchildmenu li a {
    display: initial;
}

/* === Icon Menu Mobile === */

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* === Icon compte === */

a.btn.btn-link.icon-moncompte .bi-person-circle {
    font-size: 25px;
    line-height: 1;
    vertical-align: middle;
}
a.btn.btn-link.icon-moncompte {
    --bs-btn-color: var(--secondary-color);
    --bs-btn-hover-color: var(--primary-color);
    --bs-btn-active-color: var(--primary-color);
}

/* === Icon Minicart === */

a.showcart{
    color: var(--secondary-color);
}
a.showcart:hover{
    color: var(--primary-color);
}
.showcart .counter {
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 15px;
    margin: 0;
    padding: 0 3px;
    overflow: hidden;
    color: white;
    background: red;
    border-radius: 32px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}
.showcart {
    text-decoration: none !important;
    vertical-align: middle;
}
.showcart:before {
    font-family: "bootstrap-icons";
    content: '\F179';
    display: block;
    line-height: 1;
    font-size: 25px;
}

/* === Icon Search === */

.search-block .btn.btn-search {
    --bs-btn-color: var(--secondary-color);
    --bs-btn-hover-color: var(--primary-color);
    --bs-btn-active-color: var(--primary-color);
}
.search-block .bi-search {
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
}
  
/* === Search bar === */

.search-block .element-search-result {
    margin-bottom: 1.5rem;
}
.search-block .image-container img {
    width: 100px;
}
.search-block .modal-body a {
    text-decoration: none;
}
.search-block .product-detail-name-search:hover {
    text-decoration: underline;
}
.search-block .long-name-search {
    font-size: 0.8rem;
}
.search-block .old-price-search {
    display: inline-block;
    padding-top: .25rem;
    margin-right: 0.5rem;
    text-decoration: line-through;
    color: #6c757d;
}
.search-block .price-search {
    display: inline-block;
    padding-top: .25rem;
    text-rendering: optimizeLegibility;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.025rem;
}
.search-block .modal-footer {
    background-color: #f7ffe6!important;
}
.search-block .modal-footer .category-summary {
    color: #ED8B00;
}
.search-block .modal-footer .categories-list .category {
    margin-bottom: 0.5rem;
    margin-right: 1.5rem!important;
}


/* === breadrumbs === */

.breadcrumbs {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 1170px;
}
.breadcrumbs ol {
    padding-left: 0rem;
}
.breadcrumb {
    display: inline-block;
    vertical-align: middle;
}
.breadcrumb a {
    font-size: 14px;
    color: #666666;
}
.breadcrumbs li:not(:last-child):after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    line-height: 18px;
    color: inherit;
    content: '/';
    margin: 0 9px;
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center;
}

/* === Product List === */

.products-grid .product-item {
    text-align: center;
    vertical-align: top;
    margin: 1rem;
    padding: 1rem;
    border: red solid 2px;
    border-radius: 3px;
}
.products-slider .product-item {
    text-align: left;
    margin-bottom: 0.5rem;
}
.products-grid .product-item-info.card {
    border: none;
}

.products-grid .product-image,
.products-slider .product-image{
    max-width: 100%;
    filter: drop-shadow(4px 2px 5px lightgrey);
    transition: all 0.7s ease;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background-color: #d3d3d324;
}
.products-grid .product-image:hover,
.products-slider .product-image:hover {
    scale: 1.1;
}
.products-grid .product-item-details,
.products-slider .product-item-details {
    margin-top: 1rem;
}
.products-grid .product-item-details.card-body,
.products-slider .product-item-details.card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.products-grid .product-item-name,
.products-slider .product-item-name {
    display: block;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    font-size: 1.1rem;
    color: #000;
    font-weight: bold !important;
    overflow: hidden;
    text-transform: uppercase;
}
.products-grid .product-item-link,
.products-slider .product-item-link {
    text-decoration: none;
}
.products-grid .product-item-link:hover,
.products-slider .product-item-link:hover {
    text-decoration: underline;
}
.products-grid .product-item-details-button.card-footer,
.products-slider .product-item-details-button.card-footer {
    border: none;
    padding: 0;
    background: initial;
    display: none;
}
.products-grid .listing-long-name,
.products-slider .listing-long-name {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.products-grid .price-container {
    display: block;
    margin-bottom: 1rem;
}
.products-grid .price-container .promotion-label-container,
.products-slider .price-container .promotion-label-container {
    display: none;
    height: auto;
    width: auto;
    line-height: unset;
}
.products-grid .price-container .promotion-label-container .promotion-label,
.products-slider .price-container .promotion-label-container .promotion-label {
    display: inline-block;
    color: white;
    background: #ED8B00;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
}
.products-grid .price-container .price-wrapper .old-price-wrapper,
.products-slider .price-container .price-wrapper .old-price-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.products-grid .price-container .price-wrapper .old-price-wrapper .old-price,
.products-slider .price-container .price-wrapper .old-price-wrapper .old-price {
    text-decoration: line-through;
    color: #6c757d;
}
.products-grid .price-container .price-wrapper .price,
.products-slider .price-container .price-wrapper .price {
    text-rendering: optimizeLegibility;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
}

.products-grid .product-item .product-item-details .skeepers_product__stars,
.products-slider .product-item .product-item-details .skeepers_product__stars,
.products-list .product-item .product-item-details .skeepers_product__stars {
    pointer-events: none;
}

/* == Product slider == */

.products-slider .embla {
    --slide-height: 19rem;
    --slide-spacing: 1rem;
    --slide-size: 24%;
}
.products-slider .embla__button__svg {
    width: 25%;
    height: 25%;
}

.products-slider .embla__dots {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center; */
    margin-right: 0;
}
.products-slider .embla__dot {
    appearance: none;
    background-color: transparent;
    touch-action: manipulation;
    display: inline-flex;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    width: 1rem;
    height: 1rem;
    align-items: center;
    justify-content: center;
}
.products-slider .embla__dot:after {
    content: "\F28A";
    font-family: 'bootstrap-icons';
    color: #ccc;
    font-weight: 800;
    font-size: 12px;
    box-shadow:none;
}
.products-slider .embla__dot--selected:after {
    content: "\F287";
    font-family: 'bootstrap-icons';
    color: var(--secondary-color);
}

/* === Carousel === */

.home .carousel .carousel-control-next-icon, 
.home .carousel .carousel-control-prev-icon {
    background-size: 50% 50%;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
}

/* === Footer === */

.footer{
    background-color: var(--secondary-color);
    color: white;
} 

.footer .leadgen form input.form-control {
  display: block;
  width: 100%;
  height: 46px;
  line-height: 44px;
  padding: 0 15px;
  border: 2px solid var(--primary-color);
  margin-bottom: 10px;
}
.footer .leadgen form button {
    background-color: #FFB54D;
    border: 1px solid #002A3A;
    border-radius: 50px;
    color: #002A3A;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 27px;
    padding: 5px 10px;
}
.footer .leadgen form button:hover {
    background: #002A3A;
    text-decoration: none !important;
    color: #fff;
    border: 1px solid #fff;
}
.footer .leadgen h4,
.footer .leadgen p,
.footer .leadgen label {
    color: #fff;
}
.footer .footer-menu a {
    color: #fff;
}

.footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer li{
    line-height: 2rem;
}



/*
===========================================
================== Pages ==================
===========================================
*/


/* === Minicart page === */

.minicart-wrapper.offcanvas.offcanvas-end {
    width: 600px;
    max-width: 100%;
    color: var(--secondary-color);
}
.minicart-content.cart-table-wrapper .shopping-cart-table .product-image {
    max-width: 100px;
}
.minicart-wrapper .bar-wrapper .free-shipping-label {
    font-size: 0.8rem;
    font-weight: 600;
}
.minicart-wrapper .bar-wrapper .free-shipping-progressbar {
    margin-top: 6px
}
.progress-bar {
    background-color: var(--primary-color);
}
.minicart-wrapper .bar-wrapper {
    background-color: #f7f7f7;
}
.minicart-wrapper .bar-wrapper .progress {
    --bs-progress-height: 0.5rem!important;
    height: 0.5rem!important;
    border: 1px solid #d3e1da;
    background-color: white;
}
.minicart-content.cart-table-wrapper {
    height: 100%;
    overflow-y: auto;
}
.minicart-content.cart-table-wrapper table thead {
    display: none;
}
.minicart-content.cart-table-wrapper table th,
.minicart-content.cart-table-wrapper table tr,
.minicart-content.cart-table-wrapper table td {
    display: block;
}
.minicart-content.cart-table-wrapper .shopping-cart-table,
.minicart-content.cart-table-wrapper .shopping-cart-table tbody {
    display: block;
    width: 100%;
}
.minicart-content.cart-table-wrapper .shopping-cart-table {
    border: none;
    margin: 0;
}
.minicart-content.cart-table-wrapper .shopping-cart-table tr.cart-row {
    display: grid !important;
    grid-template-columns: 90px 1fr auto;
    grid-template-areas:
        "image item item"
        "image choice action"
        "image qty subtotal";
    column-gap: 15px;
    row-gap: 6px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dadada;
}
.minicart-content.cart-table-wrapper .shopping-cart-table tr.cart-row.bcl-item {
    grid-template-areas:
        "image item item subtotal"
        "image choice choice subtotal"
        "image qty action subtotal";
}
.minicart-content.cart-table-wrapper .shopping-cart-table tr.cart-row:last-child {
    border-bottom: none;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.image {
    grid-area: image;
    align-self: center;
    margin-right: 10px;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.item {
    grid-area: item;
    font-weight: bold;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row:not(.bcl-item) td.item {
    margin-bottom: 5px;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.choice-name {
    grid-area: choice;
    font-size: 14px;
    margin-bottom: 5px;
}

/* .minicart-content.cart-table-wrapper .shopping-cart-table .cart-row:not(.bcl-item) td.choice-name {
    display: none;
}*/

.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.choice-name span {
    display: block;
}

.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.bcl-suggestion span.associated-bcl-label {
    margin-bottom: 5px;
    color: #ED8B00;
    font-weight: bold;
    display: block;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.bcl-suggestion select {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
    border: 1px solid lightgrey;
    background: #fff;
    margin-right: 5px;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.bcl-suggestion .add-to-cart-bcl {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.bcl-suggestion .add-to-cart-bcl .add-to-cart-btn:before {
    display: none;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.bcl-suggestion .add-to-cart-bcl .add-to-cart-btn {
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    line-height: 20px;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.price {
    clear: both;
    display: none;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.qty {
    grid-area: qty;
    width: 70px;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.qty input {
    display: block;
    width: 100%;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
    border: 1px solid lightgrey;
    text-align: center;
    line-height: 27px;
    margin-right: 1.5rem;
    font-weight: 400;
    border-radius: 4px;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.action {
    grid-area: action;
    justify-self: end;
    align-self: center;
}
.minicart-content.cart-table-wrapper .shopping-cart-table .cart-row td.subtotal {
    grid-area: subtotal;
    font-weight: bold;
    justify-self: end;
    align-self: center;
}
.minicart-content.price-wrapper {
    box-shadow: 0 -4px 10px 0 rgba(0,0,0,.07);
}
.minicart-content ul.cart-totals {
    text-align: right;
    list-style: none;
    padding: 0;
    margin-bottom: 0.5rem;
}
.minicart-content ul.cart-totals li {
    margin-bottom: 5px;
}


.minicart-content ul.cart-totals li.total {
    font-weight: bold;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--secondary-color);
}
.minicart-content .cart-coupon-wrapper,
.checkout-wrapper .checkout-coupon-wrapper {
    font-size: 0.8rem;
    text-align: right;
}
.minicart-content .cart-coupon-wrapper p,
.checkout-wrapper .checkout-coupon-wrapper p {
    margin-bottom: 5px;
    font-weight: 500;
}

.minicart-content .cart-coupon-wrapper input,
.checkout-wrapper .checkout-coupon-wrapper input {
    display: inline-block;
    width: 50%;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity)) !important;
    border: 1px solid lightgrey;
    text-align: center;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    font-weight: 400;
    border-radius: 4px;
    vertical-align: middle;
}

.minicart-content .cart-coupon-wrapper button,
.checkout-wrapper .checkout-coupon-wrapper button {
    background-color: #6c757d;
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    color: #fff;
    line-height: 27px;
    display: inline-block;
    vertical-align: middle;
}
.minicart-content .cart-coupon-wrapper button:hover,
.checkout-wrapper .checkout-coupon-wrapper button:hover {
    border: none;
    background: #5c636a;
    color: #fff;
}

.minicart-content .cart-coupon-wrapper .alert,
.checkout-wrapper .checkout-coupon-wrapper .alert {
    margin-top: 10px;
}

/* Extrasells Page */

.minicart-wrapper .cart-extrasell-wrapper {
    display: none;
    transition: transform 0.5s ease-in-out;
    transform: translateX(100%);
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100vh;
    box-shadow: inset -5px 0 5px 0 rgba(0,0,0,0.05);
}
.minicart-wrapper .cart-extrasell-wrapper.active {
    display: block;
    transform: translateX(0);
    overflow-y: auto;
}
.minicart-wrapper .cart-extrasell-wrapper .extrasell-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .extrasell-header {
    margin: 1.5rem 0
}

.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .product-item {
    background-color: white;
    margin-bottom: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    padding: 0.3rem 0.5rem;
}

.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .product-item .product-item-name {
    font-size: 1rem;
    margin: 0.5rem 0;
}
.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .product-item .price-container {
    text-align: center;
}
.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .product-item .price-wrapper {
    font-weight: 600;
    color: green;
    display: block;
    padding: 0.25rem 0;
}
.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .product-item .add-to-cart-btn::before {
    display: none;
}
.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .nothanks {
    font-style: italic;
    cursor: pointer;
}

.minicart-wrapper .cart-extrasell-wrapper .extrasell-container .extrasell-close.nothanks {
    position: absolute;
    top: 20px;
    right: 20px;
}

.minicart-wrapper .show-extrasell {
    /* display: none; */
    line-height: 27px;
    padding: 5px 10px;
    border-radius: 5px;
    background: #fff4e6;
    color: var(--secondary-color);
    cursor: pointer;
}

/* === Checkout Page === */

.checkout-wrapper .checkout-toggle ul.cart-totals {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-left: auto;
}
.checkout-wrapper .checkout-toggle li.subtotal {
    display: none;
}
.checkout-wrapper .checkout-toggle .shipping-price-total {
    display: none;
}
.checkout-wrapper .checkout-toggle .coupons {
    display: none;
}
.checkout-wrapper .checkout-toggle .total {
    font-weight: 700;
}
.checkout-wrapper .checkout-toggle .total .label {
    display: none;
}
.checkout-wrapper .checkout-toggle .chevron-down-wrapper {
    transition: transform .5s ease;;
}
.checkout-wrapper .shopping-cart-table {
    width: 100%;
}
.checkout-wrapper .shopping-cart-table thead {
    display: none;
}
.checkout-wrapper .shopping-cart-table tr.cart-row {
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.checkout-wrapper .shopping-cart-table tbody .cart-row {
    display: flex;
    align-items: center;
    position: relative;
}
.checkout-wrapper .shopping-cart-table tbody .cart-row.bcl-item {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "image item subtotal"
        "image choice subtotal";
}
.checkout-wrapper .shopping-cart-table tbody .image {
    background-color: white;
    margin-right: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    grid-area: image;
}
.checkout-wrapper .shopping-cart-table tbody .image .product-image {
    width: 60px;
    max-width: unset!important;
}
.checkout-wrapper .shopping-cart-table tbody .item,
.checkout-wrapper .shopping-cart-table tbody .choice-name {
    margin-right: 1rem;
}
.checkout-wrapper .shopping-cart-table tbody .cart-row.bcl-item .item {
    grid-area: item;
    align-self: end;
}
.checkout-wrapper .shopping-cart-table tbody .cart-row.bcl-item .choice-name {
    grid-area: choice;
    align-self: baseline;
    font-size: 12px;
}

.checkout-wrapper .shopping-cart-table tbody .price {
    display: none;
}
.checkout-wrapper .shopping-cart-table tbody .qty {
    position: absolute;
    top: -8px;
    left: 50px;
    background-color: red;
    color: white;
    border-radius: 1.75em;
    height: 1.75em;
    min-width: 1.75em;
    text-align: center;
    font-size: 0.8em;
    line-height: 1.75em;
    padding: 0 0.5833333333em;
    white-space: nowrap;
    font-weight: 500;
    box-sizing: border-box;
}
.checkout-wrapper .shopping-cart-table tbody .subtotal {
    margin-left: auto;
    display: block;
    font-weight: 500;
    grid-area: subtotal;
}
.checkout-wrapper .cart-totals {
    text-align: right;
}
.checkout-wrapper ul.cart-totals {
    list-style: none;
    padding: 0;
}
.checkout-wrapper .checkout-order-recap ul.cart-totals li {
    margin-bottom: 0.5rem;
    padding: 0 10px;
}
.minicart-content ul.cart-totals li.shipping-price-total span.amount, .minicart-content ul.cart-totals li.subtotal span.subtotal, .minicart-content ul.cart-totals li.coupons span.amount, .minicart-content ul.cart-totals li.total span.subtotal, .checkout-wrapper ul.cart-totals li.shipping-price-total span.amount, .checkout-wrapper ul.cart-totals li.subtotal span.subtotal, .checkout-wrapper ul.cart-totals li.coupons span.amount, .checkout-wrapper .checkout-order-recap ul.cart-totals li.total span.subtotal {
    display: inline-block;
    width: 85px;
}

.checkout-wrapper .checkout-order-recap ul.cart-totals li.total {
    font-weight: bold !important;
    margin-top: 15px !important;
    padding-top: 10px !important;
    padding-bottom: 15px !important;
    border-top: 1px solid black !important;
}

.minicart-content ul.cart-totals li.coupons,
.checkout-wrapper ul.cart-totals li.coupons {
    padding: 5px 10px;
    background: #f8f8f8;
}
.coupons .label {
    font-weight: 500;
}
.coupons .subtotal {
    margin: 0 5px;
}
.checkout-wrapper .field-group-billing,
.checkout-wrapper .field-group-shipping {
    display: inline-block;
    padding: 0 10px;
    margin-bottom: 20px;
    vertical-align: top;
}
.checkout-wrapper .field-group-billing .validation-error,
.checkout-wrapper .field-group-shipping .validation-error {
    display: inline-block;
    color: var(--bs-form-invalid-color);
    font-size: 14px;
    padding: 0.25rem 0;
}
.checkout-wrapper .field-group-billing label,
.checkout-wrapper .field-group-shipping label {
    display: block;
    margin-right: 10px;
    position: absolute;
    margin-top: -10px !important;
    margin-left: 10px !important;
    background-color: white !important;
    width: fit-content !important;
    font-weight: 400 !important;
    font-size: 0.8rem !important;
    color: #999;
    padding: 0 5px;
}
.checkout-wrapper .field-group-billing input,
.checkout-wrapper .field-group-shipping input {
    width: 100%;
    padding: 5px 10px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid grey;
}
.checkout-wrapper .field-group-billing select, 
.checkout-wrapper .field-group-shipping select {
    width: 100%;
    padding: 5px 10px;
    height: 40px;
    border-radius: 5px;
    background: #ffffff;
}
.checkout-wrapper .field-group-billing.billingEmail,
.checkout-wrapper .field-group-billing.billingEmailConfirm,
.checkout-wrapper .field-group-billing.billingZipCode,
.checkout-wrapper .field-group-shipping.shippingZipCode,
.checkout-wrapper .field-group-billing.billingCity,
.checkout-wrapper .field-group-shipping.shippingCity {
    width: 50%;
}
.checkout-wrapper .field-group-billing.billingGender,
.checkout-wrapper .field-group-shipping.shippingGender,
.checkout-wrapper .field-group-billing.billingFirstName,
.checkout-wrapper .field-group-shipping.shippingFirstName,
.checkout-wrapper .field-group-billing.billingLastName,
.checkout-wrapper .field-group-shipping.shippingLastName {
    width: 33%;
}
.checkout-wrapper .field-group-billing.billingPhoneNumber,
.checkout-wrapper .field-group-shipping.shippingPhoneNumber,
.checkout-wrapper .field-group-billing.sameAsBilling,
.checkout-wrapper .field-group-shipping.shippingTitle,
.checkout-wrapper .field-group-billing.billingStreet3,
.checkout-wrapper .field-group-shipping.shippingStreet3,
.checkout-wrapper .field-group-billing.billingStreet1,
.checkout-wrapper .field-group-shipping.shippingStreet1,
.checkout-wrapper .field-group-billing.billingStreet2,
.checkout-wrapper .field-group-shipping.shippingStreet2,
.checkout-wrapper .field-group-billing.billingStreet4,
.checkout-wrapper .field-group-shipping.shippingStreet4,
.checkout-wrapper .field-group-billing.billingCountry,
.checkout-wrapper .field-group-shipping.shippingCountry {
    width: 100%;
}
.checkout-wrapper .field-group-billing.sameAsBilling {
    margin-top: 1rem;
    display: flex;
    align-items: baseline;
}
.checkout-wrapper .field-group-billing.sameAsBilling label {
    display: inline-block!important;
    font-size: inherit !important;
    position: relative;
    color: inherit;
    margin: 0 !important;
    padding: 0 !important;
}
.checkout-wrapper .field-group-billing.sameAsBilling input {
    width: auto!important;
    height: initial;
    margin-right: 10px;
}
.checkout-wrapper .field-group-shipping.shippingTitle label {
    color: var(--secondary-color);
    width: 100%;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    border-top: 1px solid lightgray;
}
.checkout-wrapper .field-group-cgv {
    padding: 0 10px;
    margin: 15px 0;
    display: flex;
    align-items: baseline;
}
.checkout-wrapper .field-group-cgv input {
    margin-right: 10px;
}
.checkout-wrapper .field-group-cgv.acceptCgs {
    margin-bottom: 1rem;
}

.checkout-wrapper .payment-form ul {
    list-style: none;
    padding-left: 0px;
    text-align: center;
    text-transform: uppercase;
}
.checkout-wrapper .payment-form ul li {
    display: inline-block;
    width: 50%;
    position: relative;
    line-height: 45px;
}
.checkout-wrapper .payment-form ul li label {
    width: 100%;
    border: 1px solid lightgrey;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.checkout-wrapper .payment-form ul li.bankcard label {
    border-radius: 5px 0 0 5px;
}
.checkout-wrapper .payment-form ul li.bankcard label:after {
    font-family: "bootstrap-icons";
    content: '\F2DB';
    display: inline;
    margin-left: 8px;
}
.checkout-wrapper .payment-form ul li.sepa label {
    border-radius: 0 5px 5px 0;
}
.checkout-wrapper .payment-form ul li.sepa label:after {
    font-family: "bootstrap-icons";
    content: '\F637';
    display: inline;
    margin-left: 8px;
    font-weight: 700;
    font-size: 20px;
}
.checkout-wrapper .payment-form ul li label:hover {
    border: 1px solid var(--secondary-color);
    background-color: #f7f7f7;
}
.checkout-wrapper .payment-form ul li input {
    position: absolute;
    z-index: -1;
    left: 0;
    opacity: 0;
}
.checkout-wrapper .payment-form ul li input:checked + label {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: #fff;
}
.checkout-wrapper .payment-form .vanguard-payment-iframe {
    border: 1px solid lightgrey;
}

/* === Category page === */

.nos-produits-naturels .filter-wrapper div[data-app-mode="filter"] {
    display: block!important;
}
.filter-wrapper .btn-filter {
    padding-left: 1rem!important;
    padding-right: 1rem!important;
}
.filter-wrapper .btn-sort {
    padding-left: 1rem!important;
    padding-right: 1rem!important;
}
.filter-wrapper .btn-filter::after {
    display: none;
}
.filter-wrapper .wrapper-filter ul {
    width: auto!important;
    overflow-y: auto;
    height: 400px;
}

/* === Product page === */

.product-page .main-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.product-page .additional-images {
    text-align: center;
    padding: 1rem 0;
}
.product-page .additional-images li {
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}
.product-page .additional-images li:first-child {
    margin-left: 0;
}
.product-page .additional-images li img {
    max-width: 50px;
    border: solid 1px lightgrey;
}
.additional-images li img.current {
    border: solid 1px var(--primary-color);
}
.img-product-wrapper.sticky-top {
    z-index: 1;
    top: 80px;
}
.product-page .product-choices-option input{
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0;
}
.product-page .product-choices {
    display: flex;
    justify-content: start;
    position: relative;
    flex-wrap: wrap;
}
.product-page .product-choices-option {
    width: 31%;
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 2%;
}
.product-page .product-choices-option label{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    border: 2px solid #002A3A;
    border-radius: 5px;
}
.product-page .product-choices-option .promotion-label-container {
    display: block;
    margin-top: 0.5rem;
    text-align: center;
}
.product-page .product-choices-option .promotion-label-container .promotion-label {
    display: inline-block;
    color: white;
    background: green;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
}
.product-page .product-choices-option label:hover{
    background-color: #f7f7f7;
}
.product-page .product-choices-option input:checked + label{
    background-color: var(--tertiary-color);
    border-color: red;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23)!important;
}
.product-page .product-choices-option .choice-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.product-page .product-choices-option .price-container .old-price-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.product-page .product-choices-option .price-container .old-price-wrapper .old-price {
    text-decoration: line-through;
    color: #6c757d;
}
.product-page .product-choices-option .price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: green;
}
.product-page .bcl-options .price-per-unit {
    display: block;
    font-size: 0.8rem;
}
.product-page .add-to-cart {
    flex-direction: column;
}
.product-page .add-to-cart input {
    display: none;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important;
    border: 1px solid lightgrey;
    text-align: center;
    max-width: 100%;
    width: 100px;
    height: 40px;
    line-height: 40px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

/* Ingrédients */
.ingredients-container .nav-item {
    text-align: center;
}
.ingredients-container .nav-pills .nav-link.active {
    background-color: transparent;
}
.ingredients-container .nav-item a:hover {
    text-decoration: none;
}
.border-ingredient {
    border: 2px solid var(--secondary-color);
}
.ingredients-container .ingredients-list-images .active img {
    opacity: 1;
}
.ingredients-container .ingredients-list-images img {
    width: 75px;
    opacity: .3;
    display: block;
}
.ingredients-container .ingredients-list-images img:hover {
    cursor: pointer;
    opacity: 1;
    transform: scale(1.1);
}
.ingredients-container .ingredients-list-images hr {
    margin: 2rem 0;
}
.product-page .accordion-button {
    color: #ED8B00;
}
.product-page .accordion-button:after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1rem;
    background-color: #fff4e6;
    border-radius: 50%;
    padding: 0.5rem;
    background-position: center center;
}
.product-page .skeepers_product__reviews {
    margin-left: 0!important;
    margin-right: 0!important;
    padding: 0 0.5rem;
}

/* === Confirmation page === */

.order-recap ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}
.order-recap ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
}
.order-recap ul li:before {
    font-family: "bootstrap-icons";
    content: '\F171';
    display: inline;
    margin-right: 10px;
    color: var(--primary-color);
}
.order-recap .shipping-fees,
.order-recap .subtotal {
    margin-bottom: 0.5rem;
}
.order-recap .amount {
    display: inline-block;
    margin-left: 10px;
}
.order-recap .separator {
    display: inline-block;
    margin: 0 5px;
}
.order-recap .total {
    font-weight: bold;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--secondary-color);
    font-size: 1.2rem;
}

/* === Contact page === */

.contact-form-wrapper form label {
    display: block;
}
.contact-form-wrapper form div.margin-bottom {
    margin-bottom: 1rem;
}
.contact-form-wrapper form label {
    display: block;
    margin-bottom: 10px;
}
.contact-form-wrapper form div.margin-bottom {
    margin-bottom: 1rem;
}
.contact-form-wrapper form input {
    width: 100%;
    padding: 5px 10px;
}
.contact-form-wrapper form select {
    width: 100%;
    height: 40px;
    padding: 5px 10px;
}
.contact-form-wrapper form textarea {
    width: 100%;
    padding: 5px 10px;
}

/******** truc **********/

.actions {
    text-align: right;
}
.vanguard-payment-iframe {
    width: 100%;
    padding: 10px;
    border: 0;
}
.hide,
.hide * {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 0;
    height: 0;
    z-index: -1;
}

/*
===========================================
============= media queries ===============
===========================================
*/
@media only screen and (max-width: 1199px) {
    .navbar-brand img{width: 125px;}
    .minicart-wrapper .cart-extrasell-wrapper {right: 0;}
}
@media (min-width: 992px) {
    .checkout-order-recap {display: block!important;}
}
@media only screen and (max-width: 991px) {
    .checkout-order-recap {display: none;}
    #oneclick-choice-div .item-wrapper .item-content-action {opacity: 1;}
    .products-slider .embla {
        --slide-size: 30%;
    }
    .products-slider .embla__controls {display:none}
}
@media screen and (max-width: 768px) {
    .products-grid .product-image, .products-slider .product-image {max-width: 200px;}
    .product-page .main-image{max-width: 200px;}
    .checkout-wrapper .field-group-billing {width: 100%!important;}
    .product-page .product-choices-option {width: 100%; margin-right: 0;}
    .ingredients-container .ingredients-list-images img{display: none;}
    .ingredients-container .nav-pills .nav-link {border: 1px solid #002A3A; margin-right: 0.5rem; margin-left: 0.5rem; margin-bottom: 0.5rem; border-radius: 50px; box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);}
    .ingredients-container .nav-pills .nav-link.active {background-color: #ED8B00;}
    .announcement-bar {font-size: 0.9rem;}
    .products-slider .embla {
        --slide-size: 40%;
    }

}


@media only screen and (max-width: 576px) {

    .minicart-content.cart-table-wrapper .shopping-cart-table tr.cart-row {
        grid-template-columns: 80px 1fr auto auto;
        grid-template-areas:
            "image item item item"
            "image choice choice choice"
            "image qty action subtotal";
        column-gap: 10px;
        row-gap: 6px;
    }

    td.image { grid-area: image; }
    td.item { grid-area: item; }
    td.choice-name { grid-area: choice; }
    td.qty { grid-area: qty; }
    td.action { grid-area: action; }
    td.subtotal { grid-area: subtotal; }

    td.subtotal {
        font-weight: bold;
        justify-self: end;
    }

    td.action {
        justify-self: center;
    }
}


@media (max-width: 375px) {
    .products-slider .embla {
        --slide-size: 75%;
    }
}
@media only screen and (max-width: 343px) {
    .navbar-brand img{width: 125px;}
    .announcement-bar {font-size: 0.6rem;}
}
@media only screen and (max-width: 317px) {
    .navbar-brand img{width: 100px;}
}