/* Page-specific styles: panier. Loaded only on this page. */
.is-hidden {
    display: none!important;
}
.is-hidden-mobile {
    display: block;
}
.is-hidden-desktop {
    display: none;
}
.is-visible-min-576 {
    display: block;
}
.is-visible-max-575 {
    display: none;
}
.modal-body .prod-category {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 3.5px;
    font-weight: 300;
    color: #818181;
    margin-bottom: 35px;
}
.modal-body .prod-name {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 2.7px;
    font-weight: 600;
    color: #818181;
    padding-bottom: 49px;
    margin-bottom: 31px;
    border-bottom: 2px solid #e4e4e4;
}
.modal-body .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-body .product-price .qty-info {
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 1.8px;
    font-weight: 300;
    color: #818181;
}
.modal-body .product-price .price {
    font-size: 40px;
    line-height: 64px;
    letter-spacing: 0;
    font-weight: 600;
    color: #889FC1;
}
/*
* Panier
*/
.panier-page .breadcrumbs-section {
    padding: 194px 78px 43px;
}
.offer-wrap {
    padding: 65px 20px 62px;
    background-color: #889FC1;
    text-align: center;
}
.panier-page .offer-section .title {
    font-size: 150px;
    line-height: 170px;
    color: #FFFFFF;
    margin-bottom: 60px;
}
.panier-page .head-section .total-info {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}
.panier-page .head-section .total-info .total-text {
    font-size: 12px;
    line-height: 19px;
    font-weight: 300;
    letter-spacing: 1.8px;
    display: inline-block;
    margin-right: 27px;
}
.panier-page .head-section .total-info .total-price {
    font-size: 40px;
    line-height: 37px;
    font-weight: 600;
    letter-spacing: 0px;
    display: flex;
}
.panier-page .head-section .total-info .total-price .price-number {

}
.panier-page .head-section .total-info .total-ttc-text {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0px;
    display: inline-block;
    margin-left: 10px;
}
/*
* panier
*/
.panier {
    border: 1px solid #e6e6e6;
    display: flex;
}
.panier-general .left-panier {
    width: 64%;
    border-right: 1px solid #e6e6e6;
}
.panier-general .right-panier {
    width: 36%;
}
.panier-general .left-panier .left-panier-header {
    padding: 24px 40px;
    height: auto;
    border-bottom: 1px solid #e6e6e6;
}
.panier .left-panier .left-panier-header .left-header-text,
.panier .mid-panier .mid-panier-header .mid-header-text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    letter-spacing: 2.5px;
    color: #6a6a6a;
}
/* ── Cart item rows ──────────────────────────────────────────────────────── */
.cart-items { list-style: none; margin: 0; padding: 6px 40px; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid #efefef;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-media {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border: 1px solid #ececec;
    background: #faf8f4;
    overflow: hidden;
}
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cart-item-text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cart-item-cat {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a0b1ce;
}
.cart-item-name {
    font-size: 16px;
    letter-spacing: 0.4px;
    color: #3f3f3f;
    font-weight: 600;
}
.cart-item-unit { font-size: 13px; letter-spacing: 0.3px; color: #8a8a8a; }
.cart-item-unit em { font-style: normal; color: #b3b3b3; }

/* Gift card line — recipient + message surfaced in the cart and recap. */
.cart-item-gift { display: flex; flex-direction: column; gap: 3px; margin: 4px 0 2px; padding: 8px 12px; background: #f4f6fa; border-left: 3px solid #889FC1; border-radius: 0 6px 6px 0; }
.cart-gift-tag { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: #889FC1; font-weight: 600; }
.cart-gift-tag i { margin-right: 4px; }
.cart-gift-line { font-size: 13px; color: #5f5f5f; }
.cart-gift-line strong { color: #3f3f3f; }
.cart-gift-msg { font-size: 13px; font-style: italic; color: #7a7a7a; }
.recap-gift { display: inline-block; margin-top: 4px; font-size: 12px; letter-spacing: 0.4px; color: #889FC1; }
.recap-gift i { margin-right: 3px; }

/* Gift line edit (cart): toggle view <-> inline form. */
.cart-gift-view, .cart-gift-form { display: flex; flex-direction: column; gap: 4px; }
.cart-gift-form { display: none; margin-top: 4px; }
.cart-item-gift.is-editing .cart-gift-view { display: none; }
.cart-item-gift.is-editing .cart-gift-form { display: flex; }
.cart-gift-edit { align-self: flex-start; margin-top: 4px; padding: 0; background: none; border: none; color: #889FC1; font-size: 12px; letter-spacing: 0.3px; cursor: pointer; }
.cart-gift-edit i { margin-right: 4px; font-size: 11px; }
.cart-gift-edit:hover { color: #6f86ad; text-decoration: underline; }
.cart-gift-fld { display: flex; flex-direction: column; gap: 4px; }
.cart-gift-fld > span:first-child { font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; color: #889FC1; }
.cart-gift-fld input, .cart-gift-fld textarea { width: 100%; border: 1px solid #d8dde6; border-radius: 5px; padding: 8px 10px; font-family: "Hero New Light"; font-size: 13px; color: #3f3f3f; background: #fff; }
.cart-gift-fld textarea { resize: vertical; min-height: 56px; }
.cart-gift-fld input:focus, .cart-gift-fld textarea:focus { outline: none; border-color: #889FC1; }
.cart-gift-err { color: #c0392b; font-size: 12px; display: none; }
.cart-gift-err.is-shown { display: block; }
.cart-gift-actions { display: flex; gap: 10px; margin-top: 2px; }
.cart-gift-cancel { background: none; border: none; color: #8a8a8a; font-size: 13px; cursor: pointer; padding: 6px 4px; }
.cart-gift-cancel:hover { color: #5f5f5f; }
.cart-gift-save { background: #889FC1; color: #fff; border: none; border-radius: 5px; padding: 8px 18px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.cart-gift-save:hover { background: #6f86ad; }
.cart-gift-save.is-loading { opacity: .65; pointer-events: none; }
.cart-gift-radios { display: flex; flex-direction: column; gap: 6px; }
.cart-gift-radio { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #3f3f3f; cursor: pointer; text-transform: none; letter-spacing: 0; font-weight: 400; }
.cart-gift-radio input { accent-color: #889FC1; flex: none; margin: 0; width: auto; height: auto; min-width: 0; }
.cart-gift-recipient { display: flex; flex-direction: column; gap: 4px; }
.cart-gift-recipient[hidden] { display: none; }
.cart-gift-line i { margin-right: 4px; font-size: 11px; color: #889FC1; }
.cart-qty-fixed { font-size: 13px; letter-spacing: 0.3px; color: #8a8a8a; }
.cart-item-remove {
    align-self: flex-start;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #b08983;
    transition: color 0.2s ease;
}
.cart-item-remove:hover { color: #a5281b; }
.cart-item-controls {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}
.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8dee8;
}
.cart-qty-btn {
    width: 34px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    color: #889FC1;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.cart-qty-btn:hover { background: #889FC1; color: #ffffff; }
.cart-qty-val {
    min-width: 36px;
    text-align: center;
    font-size: 14px;
    line-height: 36px;
    color: #3f3f3f;
    border-left: 1px solid #d8dee8;
    border-right: 1px solid #d8dee8;
}
.cart-item-total {
    min-width: 92px;
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #889FC1;
}
.panier .right-panier .right-panier-header {
    padding: 24px 75px 24px 98px;
    height: 93px;
}
.panier .right-panier .right-panier-header .right-header-text {
    font-size: 40px;
    line-height: 50px;
    font-weight: 300;
    letter-spacing: 0;
    color: #818181;
}
/* ── Summary (récapitulatif) ─────────────────────────────────────────────── */
.panier-general .right-panier .cart-summary { padding: 34px 40px 40px; }
.cart-summary-title {
    font-size: 30px;
    letter-spacing: 0.5px;
    color: #889FC1;
    margin: 0 0 22px;
}
.cart-summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #6a6a6a;
    border-bottom: 1px solid #efefef;
}
.cart-summary-row .cart-summary-value { color: #3f3f3f; white-space: nowrap; }
.cart-summary-free {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6fae8e;
}
.cart-summary-total {
    border-bottom: none;
    margin-top: 4px;
    padding-top: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #3f3f3f;
}
.cart-summary-total small { font-size: 11px; color: #a0a0a0; letter-spacing: 1px; margin-left: 3px; }
.cart-summary-total .cart-summary-value { font-size: 24px; color: #889FC1; }
.cart-promo { display: flex; gap: 10px; margin: 24px 0 18px; }
.cart-promo-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 13px 16px;
    border: 1px solid #e2e2e2;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 1px;
    color: #6a6a6a;
    background: #ffffff;
    outline: none;
}
.cart-promo-input::placeholder { color: #b3b3b3; text-transform: uppercase; }
.cart-promo-btn {
    flex: 0 0 auto;
    padding: 0 18px;
    border: 1px solid #889FC1;
    background: #ffffff;
    color: #889FC1;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.cart-promo-btn:hover { background: #889FC1; color: #ffffff; }
.cart-promo-btn.is-busy { opacity: 0.6; pointer-events: none; }

/* Code promo appliqué : remise dans le récapitulatif + puce code + retrait */
.cart-summary-promo .cart-summary-label strong { color: #6fae8e; letter-spacing: 1px; }
.cart-summary-discount { color: #6fae8e; font-weight: 600; }
.cart-promo-applied { align-items: center; }
.cart-promo-chip {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px dashed #6fae8e;
    background: #f2f9f5;
    color: #4c8a6b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.cart-promo-remove {
    flex: 0 0 auto;
    padding: 12px 18px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
    color: #a0a0a0;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.cart-promo-remove:hover { border-color: #c96c66; color: #c96c66; }
/* Remise automatique : puce informative (pas de bouton retirer) */
.cart-promo-auto { margin-bottom: 10px; }
.cart-promo-auto .cart-promo-chip { border-style: solid; }
/* Produit offert : mention dans la ligne remise */
.cart-promo-gift { display: inline-block; margin-left: 8px; color: #6fae8e; font-weight: 600; }
/* Fidélité : bouton « utiliser mes points » + puce appliquée */
.cart-points-btn {
    width: 100%;
    margin: 0 0 12px;
    padding: 13px 16px;
    border: 1px dashed #c9a86a;
    background: #fdf9f1;
    color: #a07f3f;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.cart-points-btn:hover { background: #f7efdd; }
.cart-promo-points .cart-promo-chip { border-color: #c9a86a; background: #fdf9f1; color: #a07f3f; }
.cart-promo-error {
    display: none;
    margin: -8px 0 14px;
    font-size: 12px;
    color: #c96c66;
}
.cart-promo-error.is-shown { display: block; }

/* Ligne remise dans « Rappel de votre commande » (étapes commande + paiement) :
 * bloc VERT (texte blanc) — le bloc « TOTAL DE MA COMMANDE » garde, lui, son
 * fond BLEU d'origine (#889FC1, règle .panier-product-item.total-info). */
.panier-authentication .right-panier .right-panier-content .panier-product-item.total-info.recap-promo-line {
    background-color: #6fae8e;
}
.recap-promo-line .total-info-text,
.recap-promo-line .total-price-discount { color: #FFFFFF; }
.cart-checkout-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    border: 1px solid #889FC1;
    background: #889FC1;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.cart-checkout-btn:hover { background: #ffffff; color: #889FC1; }
.cart-summary-note {
    margin: 16px 0 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: #a3a3a3;
}
.cart-summary-note i { color: #b9c4d8; margin-right: 5px; }
/* ── Cart responsive ─────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .panier-general { flex-direction: column; }
    .panier-general .left-panier,
    .panier-general .right-panier { width: 100%; }
    .panier-general .left-panier {
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
    }
}
@media (max-width: 575px) {
    .panier-general .left-panier .left-panier-header { padding: 20px 22px; }
    .cart-items { padding: 4px 22px; }
    .cart-item { gap: 16px; align-items: flex-start; }
    .cart-item-media { flex-basis: 70px; width: 70px; height: 70px; }
    .cart-item-body { flex-direction: column; align-items: stretch; gap: 16px; }
    .cart-item-controls { justify-content: space-between; }
    .panier-general .right-panier .cart-summary { padding: 28px 22px 32px; }
    .cart-summary-title { font-size: 26px; }
}
/* Inline checkout form feedback (guest e-mail + login errors) */
.cart-form-error {
    display: none;
    margin: 6px 0 16px;
    color: #a5281b;
    font-family: "Hero New Light";
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.3px;
}
.cart-form-error.is-shown { display: block; }
/* The fields above carry large bottom margins (46px / 36px) for the no-error
   layout; pull the message back up so it sits tight under its input. */
.js-guest-error.is-shown { margin-top: -30px; }
.js-login-error.is-shown { margin-top: -40px; }
.js-cart-login.is-busy,
.submit-auth-step.is-busy { opacity: .6; pointer-events: none; }
/* Brief highlight of the "ME CONNECTER" panel when a guest types an existing e-mail. */
.panier-authentication .mid-panier.is-highlight {
    box-shadow: inset 0 0 0 2px #889FC1;
    transition: box-shadow .25s ease;
}

/* ===== Checkout confirmation (#p-finish) — editable email + addresses ====== */
.checkout { padding: 8px 40px 36px; }
.co-block { position: relative; border-bottom: 1px solid #ececec; padding: 30px 0 30px 112px; }
.co-block:last-of-type { border-bottom: none; }
.co-head { display: flex; align-items: center; gap: 14px; }
/* big italic numerals on the left (original template style) */
.co-num {
    position: absolute;
    left: 4px;
    top: 12px;
    font-style: italic;
    font-weight: 300;
    font-size: 88px;
    line-height: 1;
    letter-spacing: 0;
    color: #889FC1;
    font-family: "FreightBig Pro";
}
.co-title { flex: 1 1 auto; margin: 0; font-size: 15px; letter-spacing: 3px; color: #818181; line-height: 25px; font-weight: 300; text-transform: uppercase; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";}
.co-edit {
    flex: 0 0 auto; background: none; border: none; cursor: pointer;
    font-family: "Hero New Light"; font-size: 13px; letter-spacing: 0.5px;
    color: #889FC1; text-decoration: underline;
}
.co-edit:hover { color: #5f7aa6; }
.co-edit.is-hidden { display: none; }
.co-body { margin-top: 14px; font-family: "Hero New Light"; color: #6a6a6a; }
.co-email { font-size: 15px; color: #3f3f3f; letter-spacing: 0.3px; }
.co-hint { margin: 6px 0 0; font-size: 12px; color: #a3a3a3; }
.co-addr-line { display: block; font-size: 14px; line-height: 24px; color: #4f4f4f; }
.co-empty { font-size: 14px; color: #818181; }
.co-add-link {
    background: none; border: none; padding: 0; cursor: pointer;
    font-family: inherit; font-size: 14px; color: #889FC1; text-decoration: underline;
}
/* edit forms */
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.co-field {
    display: flex; flex-direction: column; gap: 6px;
    font-size: 12px; letter-spacing: 0.5px; color: #8a8a8a; text-transform: uppercase;
}
.co-field em { text-transform: none; font-style: normal; color: #b3b3b3; }
.co-field--full { grid-column: 1 / -1; }
.co-input {
    padding: 12px 14px; border: 1px solid #e2e2e2; background: #fff;
    font-family: "Hero New Light"; font-size: 14px; letter-spacing: 0.3px; color: #3f3f3f;
    text-transform: none; outline: none;
}
.co-input:focus { border-color: #889FC1; }
.co-err { display: none; margin-top: 12px; color: #a5281b; font-size: 13px; }
.co-err.is-shown { display: block; }
.co-actions { display: flex; gap: 12px; margin-top: 18px; }
.co-save, .co-cancel {
    padding: 11px 26px; font-family: "Hero New Light";
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    cursor: pointer; border: 1px solid #889FC1;
    transition: background-color .2s ease, color .2s ease;
}
.co-save { background: #889FC1; color: #fff; }
.co-save:hover { background: #fff; color: #889FC1; }
.co-cancel { background: #fff; color: #889FC1; }
.co-cancel:hover { background: #f3f6fb; }
/* billing "same as shipping" */
.co-same { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #6a6a6a; cursor: pointer; margin-bottom: 14px; }
.co-same input { width: 20px; height: 20px; accent-color: #798da9; }
.co-block.is-same .js-co-view,
.co-block.is-same .js-co-form { display: none !important; }
.co-block.is-same .co-edit { visibility: hidden; }
/* delivery + payment */
.co-option { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid #e2e2e2; cursor: pointer; }
.co-option.is-selected { border-color: #889FC1; background: #f7f9fc; }
.co-option input { accent-color: #889FC1; }
.co-option-main { display: flex; align-items: center; gap: 12px; flex: 1 1 auto; }
.co-option-main img { width: 34px; height: 34px; }
.co-option-text { font-size: 14px; color: #3f3f3f; }
.co-option-text small { display: block; font-size: 12px; color: #a3a3a3; }
.co-option-price { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #6fae8e; }
.co-pay-hint { font-size: 13px; color: #818181; margin: 0 0 14px; }
.co-pays { display: flex; gap: 16px; }
.co-pay {
    flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 20px; border: 1px solid #e2e2e2; background: #fff; cursor: pointer; text-align: center;
    font-family: inherit; transition: border-color .2s ease, background-color .2s ease;
}
.co-pay:hover { border-color: #b9c4d8; }
.co-pay.is-selected { border-color: #889FC1; background: #f7f9fc; }
.co-pay img { height: 70px; width: auto; }
.co-pay > span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #6a6a6a; }
.co-pay .co-pay-state { min-height: 14px; font-size: 11px; letter-spacing: 0.3px; text-transform: none; color: #6fae8e; font-weight: 600; }
.js-pay-err { margin-top: 14px; }

/* ----- Payment modal (card / PayPal) ----- */
.pay-modal { position: fixed; inset: 0; z-index: 1400; display: none; }
.pay-modal.is-open { display: block; }
.pay-modal-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.5); }
.pay-modal-dialog {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 440px; max-width: calc(100vw - 32px); max-height: calc(100vh - 40px); overflow-y: auto;
    background: #fff; padding: 40px 36px 34px; box-shadow: 0 24px 70px rgba(20, 30, 55, 0.28);
}
.pay-modal-close {
    position: absolute; top: 5px; right: 10px;
    width: 34px; height: 34px; padding: 0; border: none; background: none; cursor: pointer;
    font-size: 26px; line-height: 1; color: #9aa3b2;
}
.pay-modal-close:hover { color: #889FC1; }
.pay-modal-title { margin: 0 0 6px; font-size: 26px; letter-spacing: 0.5px; color: #889FC1; }
.pay-modal-amount { margin: 0 0 24px; font-family: "Hero New Light"; font-size: 14px; color: #6a6a6a; }
.pay-modal-amount strong { color: #3f3f3f; }
.pay-card-fields { display: flex; flex-direction: column; gap: 14px; }
.pay-card-row { display: flex; gap: 14px; }
.pay-card-row .co-field { flex: 1 1 0; }
.pay-paypal-box {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    padding: 28px 16px; border: 1px dashed #d8dee8; background: #fafbfd; text-align: center;
}
.pay-paypal-box img { height: 40px; width: auto; }
.pay-modal-hint {
    margin: 16px 0 0; font-family: "Hero New Light"; font-size: 12px; line-height: 19px;
    color: #a3a3a3; text-align: center;
}
.pay-modal-hint i { color: #b9c4d8; margin-right: 5px; }
.pay-modal-confirm {
    width: 100%; margin-top: 22px; padding: 16px;
    border: 1px solid #889FC1; background: #889FC1; color: #fff;
    font-family: "Hero New Light"; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; transition: background-color .2s ease, color .2s ease;
}
.pay-modal-confirm:hover { background: #fff; color: #889FC1; }
.pay-modal-confirm:disabled { cursor: not-allowed; }
.pay-modal-confirm.is-loading { position: relative; background: #92b315; color: #fff; pointer-events: none; }
.pay-modal-confirm.is-loading .js-pp-pay-label { visibility: hidden; }
.pay-modal-confirm.is-loading::after {
    content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.45); border-top-color: #fff; border-radius: 50%;
    animation: co-spin .7s linear infinite;
}
/* ── PayPlug card-payment modal — two columns (summary + secure card form) ── */
.pp-dialog { width: 760px; max-width: calc(100vw - 32px); padding: 0; overflow: hidden; }
.pp-grid { display: flex; align-items: stretch; }
/* Left — transaction summary */
.pp-side {
    flex: 0 0 240px; background: #f4f6fa; padding: 42px 26px 30px;
    font-family: "Hero New Light"; color: #6a6a6a;
}
.pp-side-title { font-family: "Hero New Light"; font-size: 16px; font-weight: 600; color: #3f3f3f; margin: 0 0 26px; }
.pp-side-row { display: flex; flex-direction: column; gap: 3px; margin-bottom: 20px; }
.pp-side-row span { font-size: 13px; color: #9aa7bd; line-height: 1;}
.pp-side-row strong { font-size: 14px; font-weight: 600; color: #3f3f3f; }
.pp-side-secure { margin: 26px 0 24px; }
.pp-secure-head { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #3f3f3f; margin-bottom: 9px; }
.pp-secure-head i, .pp-secure-head svg { color: #6fae8e; }
.pp-side-secure p { margin: 0; font-size: 11px; line-height: 17px; color: #9aa7bd; }
.pp-side-brand { display: inline-block; font-weight: 700; font-size: 15px; letter-spacing: 0.5px; color: #889FC1; }
/* Right — card form */
.pp-main { flex: 1 1 auto; padding: 40px 38px 34px; }
.pp-main-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.pp-main-logo { height: 40px; width: auto; }
.pp-main-amount { font-family: "Hero New Light"; font-size: 24px; font-weight: 600; color: #889FC1; white-space: nowrap; }
.pp-main-title { margin: 0 0 18px; font-size: 22px; letter-spacing: 0.5px; color: #889FC1; }
.pp-fields { display: flex; flex-direction: column; gap: 14px; }
.pp-row { display: flex; gap: 14px; }
.pp-row .pp-input { flex: 1 1 0; }
.pp-input {
    display: flex; align-items: center; gap: 11px; height: 52px; padding: 0 16px;
    border: 1px solid #d8dce3; border-radius: 6px; background: #fff;
}
.pp-input > i, .pp-input > svg { color: #b9c4d8; font-size: 15px; flex-shrink: 0; }
.pp-mount { flex: 1 1 auto; height: 100%; }
.pp-mount iframe { width: 100%; height: 100%; border: 0; }
.pp-pay-btn {
    position: relative; width: 100%; margin-top: 22px; padding: 10px 17px;
    border: 1px solid #7f9b13; background: #92b315; color: #fff; border-radius: 6px;
    font-family: "Hero New Light"; font-size: 15px; letter-spacing: 0.5px;
    cursor: pointer; transition: background-color .2s ease, color .2s ease; outline: none;
}
.pp-pay-btn:hover { opacity: 0.87; }
.pp-pay-btn:disabled { cursor: not-allowed; }
.pp-pay-btn.is-loading { background: #889FC1; color: #889FC1; pointer-events: none; }
.pp-pay-btn.is-loading .js-pp-pay-label { visibility: hidden; }
.pp-pay-btn.is-loading::after {
    content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.45); border-top-color: #fff; border-radius: 50%;
    animation: co-spin .7s linear infinite;
}
.pp-schemes { text-align: center; margin-top: 22px; }
.pp-schemes img { max-height: 45px; width: auto; }
@media (max-width: 619px) {
    .pp-grid { flex-direction: column; }
    .pp-side { flex-basis: auto; padding: 28px 26px; }
    .pp-side-secure { margin: 18px 0; }
    .pp-main { padding: 28px 24px; }
}
.co-cgv { margin: 22px 0 16px; font-size: 13px; color: #a3a3a3; }
.co-cgv a { color: #889FC1; text-decoration: underline; }
.co-submit {
    width: 100%; padding: 18px; border: 1px solid #889FC1; background: #889FC1; color: #fff;
    font-family: "Hero New Light"; font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase;
    cursor: pointer; transition: background-color .2s ease, color .2s ease;
}
.co-submit:hover { background: #fff; color: #889FC1; }
/* Loading state: button blocked + centred spinner (label hidden). */
.co-submit:disabled { cursor: not-allowed; }
.co-submit.is-loading { position: relative; background: #889FC1; color: #889FC1; pointer-events: none; }
.co-submit.is-loading .co-submit-label { visibility: hidden; }
.co-submit.is-loading::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 18px; height: 18px; margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.45); border-top-color: #fff;
    border-radius: 50%; animation: co-spin .7s linear infinite;
}
@keyframes co-spin { to { transform: rotate(360deg); } }
.co-submit-note { margin-top: 12px; text-align: center; font-size: 13px; color: #6fae8e; }
.co-submit-note.is-error { color: #a5281b; }
@media (max-width: 991px) {
    .checkout { padding: 6px 24px 30px; }
    .co-block { padding-left: 78px; }
    .co-num { font-size: 64px; top: 18px; }
}
@media (max-width: 575px) {
    .co-block { padding-left: 56px; }
    .co-num { font-size: 46px; left: 0; top: 24px; }
    .co-grid { grid-template-columns: 1fr; }
    .co-pays { flex-direction: column; }
    .co-actions { flex-direction: column; }
    .co-save, .co-cancel { width: 100%; }
}
/*
* panier-authentication
*/
.panier-authentication {
    border: 1px solid #e6e6e6;
    border-bottom: none;
    display: flex;
}
.panier-authentication input {
    border: 1px solid #e6e6e6;
    padding: 29px 33px 28px;
    font-size: 13px;
    line-height: 21px;
    font-weight: 300;
    letter-spacing: 3.25px;
    color: #818181;
    background-color: #FFFFFF;
    margin-bottom: 0px;
}
.panier-authentication .left-panier {
    width: 33.33%;
}
.panier-authentication .left-panier .left-panier-header {
    height: 93px;
    text-align: center;
    padding: 32px;
}
.panier-authentication .left-panier .left-panier-content {
    border-top: 1px solid #e6e6e6;
    padding: 36px 93px;
    display: flex;
    flex-direction: column;
}
#etapesForm {
    padding: 0 42px;
    display: flex;
    flex-direction: column;
    margin-bottom: 42px;
}
#etapesForm p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 0.27px;
    color: #818181;
    margin-bottom: 36px;
}
#etapesForm .subtext {
    font-size: 11px;
    line-height: 25px;
    font-weight: 300;
    letter-spacing: 1.1px;
    color: #818181;
    margin-bottom: 36px;
}
#etapesForm .start-etaps {
    padding: 23px 23px 22px 22px;
    background-color: #889FC1;
    font-size: 13px;
    line-height: 21px;
    font-weight: 300;
    letter-spacing: 1.91px;
    color: #FFFFFF;
    outline: none;
    border: none;
}
.panier-authentication .left-panier .left-panier-content .soc-connect {
    background-color: #FFFBF4;
    padding: 53px 24px 39px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-connect-title {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #000000;
    display: inline-block;
    margin-bottom: 43px;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-connect-text {
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 0.27px;
    color: #818181;
    display: inline-block;
    margin-bottom: 32px;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn {
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.27px;
    color: #FFFFFF;
    border-radius: 3px;
    width: 88%;
    text-align: left;
    display: flex;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-paypal img {
    display: inline-block;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn .soc-logo {
    display: inline-block;
    height: 100%;
    padding: 10px 20px;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn .soc-text {
    display: flex;
    margin: 0 auto;
    align-items: center;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-facebook .soc-logo {
    border-right: 2px solid #394e87;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-paypal .soc-logo {
    border-right: 2px solid #2f8bc7;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn.soc-facebook {
    background-color: #405a9a;
    margin-bottom: 22px;
}
.panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn.soc-paypal {
    background-color: #369de1;
}
.panier-authentication .mid-panier {
    width: 28.66%;
}
.panier .mid-panier .mid-panier-header {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    height: 93px;
    text-align: center;
    padding: 32px;
}
.panier-authentication .mid-panier .mid-panier-content {
    border: 1px solid #e6e6e6;
    padding: 36px 97px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.panier-authentication .mid-panier .mid-panier-content p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 0.27px;
    color: #818181;
    margin-bottom: 36px;
}
.panier-authentication .mid-panier .mid-panier-content #login-email {
    margin-bottom: 30px;
}
.panier-authentication .mid-panier .mid-panier-content input.login-password {
    margin-bottom: 46px;
}
.panier-authentication .mid-panier .mid-panier-content button {
    padding: 18px 36px 19px 37px;
    background-color: #889FC1;
    font-size: 13px;
    line-height: 21px;
    font-weight: 300;
    letter-spacing: 1.95px;
    color: #FFFFFF;
    outline: none;
    border: none;
    margin-bottom: 10px;
}
.panier-authentication .mid-panier .mid-panier-content .passw-oublie-link {
    font-size: 11px;
    line-height: 17px;
    font-weight: 300;
    letter-spacing: 1.65px;
    color: #818181;
    outline: none;
    border: none;
}
.panier-authentication .right-panier {
    width: 38%;
}
.panier .right-panier .right-panier-header {
    height: 93px;
    padding: 20px 59px;
}
.panier-authentication .right-panier .right-panier-content {
    border-top: 1px solid #e6e6e6;
    padding: 60px 135px 60px 59px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 31px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item .li-wrap {
    display: flex;
    align-items: center;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item .product-image {
    margin-right: 19px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item .product-info {
    display: flex;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item div {
    font-size: 14px;
    line-height: 23px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #818181;
    outline: none;
    border: none;
    margin-right: 5px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item .product-info div.price {
    margin-left: 50px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.livrasion-info {
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    margin-top: 57px;
    margin-bottom: 20px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.livrasion-info .livrasion-icon {
    margin-right: 24px;
    position: relative;
    bottom: 6px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.paiement-info {
    padding-bottom: 0;
    margin-bottom: 40px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.paiement-info .paiement-icon {
    margin-right: 24px;
    position: relative;
    bottom: 2px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.livrasion-info .livrasion-detail {
    display: flex;
    flex-direction: column;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.livrasion-info .livrasion-name {
    font-size: 14px;
    line-height: 23px;
    font-weight: 300;
    letter-spacing: 2.1px;
    color: #818181;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.livrasion-info .livrasion-date-text {
    font-size: 11px;
    line-height: 17px;
    font-weight: 300;
    letter-spacing: 0.55px;
    color: #818181;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.livrasion-info .price {
    font-size: 14px;
    line-height: 23px;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: #818181;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.livrasion-info .livr-mid {
    display: flex;
    align-items: center;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.total-info {
    padding: 25px 19px 21px 24px;
    background-color: #889FC1;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.total-info .total-info-text {
    font-size: 14px;
    line-height: 23px;
    font-weight: 600;
    letter-spacing: 0.7px;
    color: #FFFFFF;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.total-info .total-price {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FFFFFF;
}
/* Ventilation TVA (TOTAL HT / TVA) — juste au-dessus du total TTC. */
.panier-authentication .right-panier .right-panier-content .panier-product-item.tva-line {
    margin-bottom: 12px;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.tva-line .tva-line-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #9aa7bd;
    text-transform: uppercase;
}
.panier-authentication .right-panier .right-panier-content .panier-product-item.tva-line .price {
    font-size: 14px;
    color: #6b7385;
    margin-right: 0;
}
.panier-authentication .edit-mode {
    margin-top: 15px;
}
.panier-authentication .edit-mode input {
    padding: 20px 32px;
    width: 100%;
}
.livraison-edit-mode  .form-row:not(.radio-row) label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 23px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #818181;
    margin-bottom: 15px;
}
.livraison-edit-mode  .form-row:not(.radio-row) label input {
    padding: 20px 32px;
    width: 100%;
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
    letter-spacing: 3.25px;
    color: #818181;
    margin-top: 20px;
}
.livraison-edit-mode .radio-row {
    margin-bottom: 10px;
}
.livraison-edit-mode .radio-row label {
    margin-right: 48px;
}
.livraison-edit-mode .radio-row label input{
    margin-right: 13px;
}
.panier-finish .left-panier {
    width: 62%;
}
.panier-finish .left-panier .steps-passed {
    padding: 0;
}
.panier-finish .left-panier .steps-passed .step {
    padding: 33px 88px 29px 209px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.panier-finish .left-panier .steps-passed .step:not(.no-border) {
    border: 1px solid #e6e6e6;
}
.panier-finish .left-panier .steps-passed .step .step-number {
    font-size: 100px;
    line-height: 126px;
    font-weight: 300;
    color: #889FC1;
    letter-spacing: 0px;
    position: absolute;
    left: 111px;
    top: 0;
}
.panier-finish .left-panier .steps-passed .step .step-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .right {
    width: 10%;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .left {
    width: 90%;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .step-label {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #818181;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .step-content {
    font-size: 14px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 0.24px;
    color: #818181;
}
.panier-finish .left-panier .steps-passed .step .edit-btn {
    font-size: 14px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.24px;
    color: #818181;
    text-decoration: underline;
    cursor: pointer;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap {
    display: flex;
    flex-direction: column;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap span {
    font-size: 14px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 0.24px;
    color: #818181;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .info-line.subtext {
    padding-left: 95px;
    position: relative;
    bottom: 5px;
}
.livraison-edit-mode .next-step-btn-row {
    padding: 50px 0 65px;
}
.panier-finish .left-panier .steps-passed .step.livraison-mode-step .step-wrap .step-label {
    margin-bottom: 28px;
    display: inline-block;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .subtitle {
    letter-spacing: 1.4px;
    font-weight: 600;
    margin: 26px 0;
}
.facturation-wrap {
    display: flex;
}
.facturation-wrap .edit-btn {
    margin-top: 25px;
    display: inline-block;
}
#livraisonType {
    width: 20px;
    height: 20px;
    position: relative;
    top: 5px;
    margin-right: 20px;
}
.panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .info-line label img {
    width: 39px;
    height: 39px;
    margin-right: 7px;
}
.panier-finish .left-panier .steps-passed .step.action-next-step {

}
.next-step {
    padding: 23px 23px 22px 22px;
    background-color: #889FC1;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 21px;
    font-weight: 300;
    letter-spacing: 1.95px;
    border: none;
    cursor: pointer;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-label {
    margin-bottom: 28px;
    display: inline-block;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .info-wrap input {
    margin-right: 10px;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .info-wrap .p-bottom {
    font-size: 13px;
    line-height: 21px;
    font-weight: 300;
    letter-spacing: 1.95px;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .pay-methods-wrap {
    margin-bottom: 45px;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .info-wrap label {
    padding: 20px;
    text-align: center;
    cursor: pointer;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .submit-wrap {
    display: flex;
    flex-direction: column;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .submit-wrap .panier-finish-text {
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 0.27px;
    color: #818181;
    margin-bottom: 45px;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .submit-wrap .submit-btn-wrap {
    text-align: center;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .submit-wrap .panier-finish-text .cg-link{
    letter-spacing: 0.27px;
    font-weight: 600;
    text-decoration: underline;
    color: #818181;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .left {
    width: 91%;
}
.panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .submit-wrap .submit-order {
    padding: 21px 52px 21px 51px;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 3.75px;
}
.mobile-panier-prod-name {
    display: flex;
    flex-direction: row;
}
@media (max-width: 1823px) {
    .panier-authentication .left-panier .left-panier-content {
        padding: 36px 60px;
    }
    .panier-authentication .mid-panier .mid-panier-content {
        padding: 36px 60px;
    }
}
@media (max-width: 1660px) {
    .panier-finish .left-panier .steps-passed .step {
        padding: 33px 50px 29px 150px;
    }
    .panier-finish .left-panier .steps-passed .step .step-number {
        left: 70px;
    }
}
@media (max-width: 1625px) {
    #etapesForm .start-etaps {
        padding: 23px 10px 22px 10px;
        letter-spacing: 1.5px;
    }
    .panier-authentication .right-panier .right-panier-content {
        padding: 60px 80px 60px 59px;
    }
    .panier-authentication .mid-panier .mid-panier-content {
        padding: 36px 35px;
    }
}
@media (max-width: 1506px) {
    .panier-authentication .left-panier .left-panier-content {
        padding: 36px 30px;
    }
    .panier-authentication .right-panier .right-panier-content {
        padding: 60px 40px;
    }
    .panier-finish .left-panier .steps-passed .step {
        padding: 33px 30px 29px 100px;
    }
    .panier-finish .left-panier .steps-passed .step .step-number {
        left: 40px;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-label {
        font-size: 15px;
        letter-spacing: 3px;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .subtitle {
        letter-spacing: 1px;
    }
}
@media (max-width: 1400px) {
    .panier-authentication .email-edit-mode .edit-email-wrap {
        width: 60% !important;
    }
    .panier-authentication .email-edit-mode .edit-email-wrap input {
        padding: 20px 25px;
    }
}
@media (max-width: 1350px) {
    .panier-general .right-panier .panier-info {
        padding: 30px 40px;
    }

    .panier-authentication .mid-panier .mid-panier-content p {
        line-height: 27px;
    }
    #etapesForm p {
        line-height: 27px;
    }
    .panier .left-panier .left-panier-header .left-header-text, .panier .mid-panier .mid-panier-header .mid-header-text {
        font-size: 14px;
        letter-spacing: 3px;
    }
    .panier .right-panier .right-panier-header .right-header-text {
        font-size: 35px;
    }
    .panier-authentication .left-panier .left-panier-content .soc-connect .soc-connect-text {
        line-height: 23px;
        font-size: 13px;
    }
    .panier-authentication input {
        padding: 25px 33px 24px;
    }
    .panier-authentication .right-panier .right-panier-content .panier-product-item div {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .subtitle {
        letter-spacing: 0.5px;
        font-size: 13px;
    }
    .panier-finish .left-panier .steps-passed .step .step-number {
        left: 25px;
    }
    #etapesForm .start-etaps {
        font-size: 11px;
    }
}
@media (max-width: 1220px) {
    .panier .right-panier .right-panier-header .right-header-text {
        font-size: 30px;
    }
    .panier .left-panier .left-panier-header .left-header-text, .panier .mid-panier .mid-panier-header .mid-header-text {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .panier-finish .left-panier .steps-passed .step {
        padding: 33px 20px 29px 80px;
    }
}
@media (max-width: 1199px) {
    .panier-general .left-panier .panier-products .panier-product-item .product-info .prod-category {
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 1.5px;
        padding-bottom: 15px;
    }
    .panier-general .left-panier .panier-products .panier-product-item .product-info .prod-name {
        font-size: 16px;
        line-height: 25px;
        letter-spacing: 1.25px;
        padding-bottom: 45px;
    }
    .panier-general .left-panier .panier-products .panier-product-item .product-price .price {
        font-size: 25px;
        line-height: 35px;
    }
    .panier-general .left-panier .panier-products .panier-product-item .product-price .qty-info {
        font-size: 11px;
        line-height: 15px;
        letter-spacing: 0.5px;
    }
    .panier-general .right-panier .panier-info .submit .submit-btn {
        padding: 25px 35px;
        line-height: 21px;
        letter-spacing: 2.25px;
    }
    .panier-general .right-panier .panier-info .livraison-details .offert-text {
        font-size: 17px;
        line-height: 25px;
        letter-spacing: 2px;
    }
    .panier-general .right-panier .panier-info .livraison-details .livraison-btn {
        font-size: 10px;
        line-height: 16px;
        letter-spacing: 1.5px;
        margin-right: 25px;
    }
    .panier-general .right-panier .panier-info .livraison-details {
        justify-content: space-between;
    }
    .panier-general .right-panier .panier-info .code-promo .promo-code-input {
        padding: 20px 25px;
        font-size: 13px;
    }
    .panier-general .right-panier .panier-info .code-promo .code-promo-text {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 1.3px;
    }

    .panier-page .offer-section {
        padding-top: 210px;
        margin-bottom: 36px;
    }
    .panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn .soc-logo {
        padding: 6px 17px;
    }
    .panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn {
        font-size: 14px;
        letter-spacing: 0.15px;
    }
    .panier-authentication .right-panier .right-panier-content .panier-product-item.total-info .total-price {
        font-size: 18px;
    }
    #etapesForm {
        padding: 0 20px;
    }
    .panier-authentication .mid-panier .mid-panier-content p {
        line-height: 24px;
        font-size: 14px;
    }
    #etapesForm p {
        line-height: 24px;
        font-size: 14px;
    }
    .panier-authentication input {
        padding: 22px 33px 21px;
    }
    .panier-authentication input {
        padding: 22px 33px 21px;
        letter-spacing: 2.5px;
        font-size: 12px;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .subtitle {
        letter-spacing: 0.25px;
        font-size: 12px;
    }
    .panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .info-wrap label img {
        width: 85%;
        height: auto;
    }
}
@media (max-width: 1099px) {
    .panier-authentication input {
        padding: 23px 25px 22px;
        letter-spacing: 2px;
    }
    .panier-authentication .right-panier .right-panier-content .panier-product-item.total-info .total-info-text {
        font-size: 13px;
        letter-spacing: 0.47px;
    }
    .panier-authentication .right-panier .right-panier-content .panier-product-item.total-info .total-price {
        font-size: 18px;
    }
    .panier-authentication .left-panier .left-panier-content .soc-connect {
        background-color: #FFFBF4;
        padding: 30px 15px;
    }
    .panier-authentication .left-panier .left-panier-content .soc-connect .soc-connect-title {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }
    .panier-authentication .left-panier .left-panier-content .soc-connect .soc-connect-text {
        font-size: 13px;
    }
    .panier .right-panier .right-panier-header {
        padding: 20px 35px;
    }
    .panier-authentication .left-panier .left-panier-header {
        padding: 29px;
    }
    #etapesForm {
        padding: 0;
    }
    .panier-authentication .right-panier .right-panier-content {
        padding: 40px 25px;
    }
    .panier-authentication .mid-panier .mid-panier-content {
        padding: 36px 30px;
    }
    .panier-authentication .left-panier .left-panier-content .soc-connect .soc-btn {
        font-size: 13px;
        width: 100%;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-label {
        font-size: 14px;
        letter-spacing: 2.5px;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .subtitle {
        letter-spacing: 0.25px;
        font-size: 12px;
        line-height: 24px;
    }
    .panier-finish .left-panier .steps-passed .step.paiement-step .step-wrap .step-content .submit-wrap .panier-finish-text {
        font-size: 15px;
        line-height: 28px;
        letter-spacing: 0.27px;
    }
    .panier .left-panier .panier-products .panier-product-item { padding: 50px 25px 49px 25px; }
    .panier-general .left-panier .panier-products .panier-product-item .product-info .prod-name { font-size: 15px; line-height: 22px; letter-spacing: 0.75px; padding-bottom: 30px; }
    .panier-general .left-panier .panier-products .panier-product-item .product-info .prod-category { font-size: 11px; line-height: 15px; letter-spacing: 1.5px; }
    .panier-general .right-panier .panier-info .livraison-details .offert-text { font-size: 11px; }
    .panier-page .offer-section .title { font-size: 100px; }
}
@media (max-width: 991px) {
    .is-hidden-mobile {
        display: none;
    }
    .is-hidden-desktop {
        display: block;
    }

    .panier {
        flex-direction: column;
    }
    .panier-authentication .mid-panier {
        width: 100%;
    }
    .panier-authentication .left-panier {
        width: 100%;
    }
    .panier-authentication .right-panier {
        width: 100%;
    }
    .panier-general .left-panier {
        width: 100%;
    }
    .panier-general .right-panier {
        width: 100%;
    }
    .panier-authentication {
        flex-direction: column;
        border: none;
        align-items: center;
    }
    .panier-page .offer-section {
        margin-bottom: 0;
    }
    .panier-finish .left-panier {
        width: 100%;
    }
    .panier .mid-panier .mid-panier-header {
        border-left: none;
        border-right: none;
    }
    .panier-authentication .mid-panier .mid-panier-content {
        border: none;
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
    }
    .panier-authentication .left-panier .left-panier-content {
        border-top: none;
    }
    .panier-authentication .right-panier .right-panier-content {
        border-top: none;
    }
    .panier .right-panier .right-panier-header {
        text-align: center;
    }
    #etapesForm > p {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .panier .left-panier .panier-products .panier-product-item {
        flex-wrap: wrap;
    }
    .panier-general .left-panier .panier-products .panier-product-item .product-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .panier-general .left-panier .left-panier-header {
        padding: 30px 75px 34px;
        text-align: center;
    }
    .panier .left-panier .panier-products .panier-product-item {
         border-top: unset;
    }
    .panier .right-panier .right-panier-header {
        border-top: 1px solid #e6e6e6;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .left {
        width: 80%;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .right {
        width: 20%;
    }
    .panier-general .left-panier .left-panier-header {
        border-bottom: 1px solid #e6e6e6;
    }
    .panier .left-panier .panier-products .panier-product-item {
        padding: 27px 25px 58px 25px;
        border-top: unset;
    }
    .panier-general .right-panier .panier-info {
        padding: 30px 100px;
    }
}
@media (max-width: 575px) {
    .is-visible-min-576 {
        display: none;
    }
    .is-visible-max-575 {
        display: block;
    }

    .offer-wrap { padding: 50px 106px; }
    .panier-authentication .mid-panier { width: 100%; }
    .panier-authentication .left-panier { width: 100%; }
    .panier-authentication .right-panier { width: 100%; }
    .panier-page .offer-section .title { font-size: 45px; line-height: 56px; margin-bottom: 28px; }
    .panier-page .head-section .total-info .total-ttc-text { font-size: 17px; line-height: 28px; }
    .panier-page .head-section .total-info .total-price { font-size: 25px; line-height: 35px; }
    .panier-finish .left-panier .steps-passed .step .step-wrap .left { width: 100%; }
    .panier-finish .right-panier .right-panier-header { border-top: none; text-align: center; }
    .panier-authentication .right-panier .right-panier-content { border-top: none; }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap .subtitle { font-size: 14px; line-height: 20px; }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-content .info-wrap.mobile-down .subtitle { margin: 20px 0; }
    .submit-panier { padding: 0 19px; }
    .submit-panier .submit-wrap .panier-finish-text .cg-link { letter-spacing: 0.27px; font-weight: 600; text-decoration: underline; color: #818181; }
    .submit-wrap .panier-finish-text { font-size: 16px; line-height: 32px; font-weight: 300; letter-spacing: 0.27px; color: #818181; margin-bottom: 45px; }
    .submit-wrap .submit-btn-wrap { text-align: center; }
    .submit-panier .submit-wrap .submit-order { padding: 21px 52px 21px 51px; background-color: #000000; color: #FFFFFF; font-size: 15px; line-height: 21px; font-weight: 600; letter-spacing: 3.75px; margin-top: 40px; margin-bottom: 80px; }
    .mobile-panier-prod-name { display: flex; flex-direction: row; }
    .panier-authentication .right-panier .right-panier-content .panier-product-item .product-info { display: flex; flex-direction: column; }
    .panier-authentication .right-panier .right-panier-content .panier-product-item .product-info div.price { margin-left: 0; }
}
@media (max-width: 430px) {
    .panier-page .offer-section.head-section {
        padding-bottom: 0;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .right {
        display: none;
    }
    .offer-section.head-section { padding: 210px 0; }
    .offer-section.head-section .offer-wrap { padding: 50px; }
}
@media (max-width: 420px) {
    .offer-wrap {
        padding: 50px;
    }
    .panier-general .right-panier .panier-info .submit {
        text-align: center;
    }
    .panier-general .right-panier .panier-info {
        padding: 30px 15px;
    }
    .panier-authentication .right-panier .right-panier-content {
        padding: 40px 15px;
    }
    .panier-authentication .right-panier .right-panier-content .panier-product-item .product-image {
        margin-right: 15px;
    }
    .panier-authentication .right-panier .right-panier-content .panier-product-item div {
        font-size: 13px;
        letter-spacing: 1px;
         margin-right: 0;
    }
    .panier .right-panier .right-panier-header .right-header-text {
        font-size: 29px;
    }
    .submit-panier .submit-wrap .submit-order {
        font-size: 13px;
        letter-spacing: 1.75px;
    }
    .panier-finish .left-panier .steps-passed .step .step-wrap .step-label {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    .panier .left-panier .panier-products .panier-product-item {
        padding: 27px 15px 20px;
    }
    .panier-general .left-panier .panier-products .panier-product-item .product-info .actions .action-btn {
        font-size: 12px;
        line-height: 50px;
    }
    .panier-general .left-panier .panier-products .panier-product-item .product-info .actions .separator {
        font-size: 12px;
        line-height: 15px;
        margin: 0 6px;
    }
    .panier-general .left-panier .panier-products .panier-product-item .product-info .prod-name {
        font-size: 14px;
        padding-bottom: 10px;
    }
    .panier .right-panier .right-panier-header {
        padding: 20px;
    }
    .panier-general .left-panier .left-panier-header {
        padding: 30px 60px 34px;
    }
    .livraison-edit-mode .radio-row label {
        margin-right: 35px;
    }
    .livraison-edit-mode .radio-row label input {
        margin-right: 7px;
    }
    .next-step {
        padding: 23px 5px 22px 5px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}
#paymentModalToggle .modal-wrap .payment-form .CBForm .form-row .submit-order {
    padding: 25px 61px 24px;
    display: inline-block;
    margin: 0 auto;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 3.75px;
}

/* ===== Dynamic cart (DB-backed) — quantity stepper + empty state ========== */
.qty-stepper { display: inline-flex; align-items: center; gap: 10px; }
.qty-stepper .qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.qty-stepper .qty-btn:hover { border-color: #889FC1; color: #889FC1; }
.qty-stepper .qty { min-width: 18px; text-align: center; }

.panier-empty {
    display: flex;                 /* override .panier's flex-row so content centers */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 100px;
}
.panier-empty-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
}
.panier-empty-inner i, .panier-empty-inner svg { font-size: 48px!important; color: #c2cee0!important; margin-bottom: 22px!important; }
.panier-empty-inner p {
    font-family: "Hero New Light";
    font-size: 17px;
    letter-spacing: 0.5px;
    color: #818181;
    margin-bottom: 30px;
}
.panier-empty-inner .content-btn {
    padding: 18px 46px;
    font-size: 13px;
    letter-spacing: 2.5px;
    color: #ffffff;
    background: #889FC1;
    border: 1px solid #889FC1;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.panier-empty-inner .content-btn:hover { background: transparent; color: #889FC1; }
