
        body {
            background: #f5f5f5;
        }
        .order-container {
            background: white;
            border-radius: 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 40px;
            transition: transform 0.2s ease;
        }

        .order-container:hover {
            transform: translateY(-2px);
        }

        .form-title {
            background: linear-gradient(135deg, #136908 0%, #0d4d06 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
            font-size: 1.75rem;
            margin-bottom: 32px;
            letter-spacing: -0.3px;
        }

        /* HIDE RADIO INPUTS VISUALLY - sr-only pattern so :checked selector WORKS */
        input[type="radio"].switcher-input,
        .switcher-input[type="radio"],
        input.switcher-input,
        .switcher-input {
            position: absolute !important;
            left: -9999px !important;
            top: auto !important;
            width: 1px !important;
            height: 1px !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            overflow: hidden !important;
            clip: rect(1px, 1px, 1px, 1px) !important;
            clip-path: inset(50%) !important;
            white-space: nowrap !important;
            border: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
            appearance: none !important;
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
            -ms-appearance: none !important;
            background: transparent !important;
            color: transparent !important;
            text-shadow: none !important;
            box-shadow: none !important;
            outline: none !important;
            z-index: -9999 !important;
        }

        /* Make sure radio BEFORE ~ switcher-buttons remains DOM sibling for :checked */
        input[type="radio"].switcher-input + *,
        input[type="radio"].switcher-input {
            /* Force no space taken in the layout flow */
        }

        .switcher-buttons {
            background: #f1f3f5;
            border-radius: 60px;
            padding: 6px;
            display: inline-flex;
            gap: 6px;
            margin-bottom: 32px;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .switcher-label {
            padding: 10px 32px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.25s ease;
            font-weight: 600;
            font-size: 0.9rem;
            color: #6c757d;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .switcher-label i {
            font-size: 0.9rem;
        }

        #individual:checked ~ .switcher-buttons label[for="individual"],
        #professional:checked ~ .switcher-buttons label[for="professional"] {
            background: linear-gradient(135deg, #136908 0%, #0d4d06 100%);
            color: white;
            box-shadow: 0 2px 8px rgba(19, 105, 8, 0.25);
        }

        .offers-grid {
      
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 40px;
        }
        .offers-grid > div {
            display: flex;
        }

        .offer-card {
            background: white;
            border-radius: 20px;
            padding: 20px; 
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
            position: relative;
            cursor: pointer;
            margin: 0; 
            width: 100%;  
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .offer-card .text-center {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .offer-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            border-color: #136908;
        }

        input[name="selected_offer"]:checked + .offer-card {
            border-color: #136908;
            background: linear-gradient(135deg, rgba(19, 105, 8, 0.03) 0%, rgba(13, 77, 6, 0.01) 100%);
            box-shadow: 0 8px 20px rgba(19, 105, 8, 0.12);
        }

        .offer-radio {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #136908;
        }

        .offer-icon {
            font-size: 2.5rem;
            color: #136908;
            opacity: 0.7;
            margin-bottom: 16px;
            display: inline-block;
        }

        .offer-price {
            font-size: 28px;
            font-weight: 800;
            color: #136908;
            margin: 12px 0 10px 0;
        }

        .offer-quantity {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f1f3f5;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #136908;
        }

        .offer-description {
            color: #6c757d;
            font-size: 0.8rem;
            margin-top: 12px;
            line-height: 1.4;
        }

        /* Form Styling */
        .form-label {
            font-weight: 600;
            font-size: 0.8rem;
            color: #495057;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        .form-control-modern {
            border: 2px solid #e9ecef;
            border-radius: 14px;
            padding: 12px 16px;
            transition: all 0.25s ease;
            font-size: 0.95rem;
            width: 100%;
            background: white;
        }

        .form-control-modern:focus {
            border-color: #136908;
            box-shadow: 0 0 0 3px rgba(19, 105, 8, 0.1);
            outline: none;
        }

        .form-control-modern:hover {
            border-color: #136908;
        }

        /* Order Summary Card */
        .order-card {
            background: white;
            border-radius: 28px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            padding: 32px;
            position: sticky;
            top: 100px;
            transition: transform 0.2s ease;
        }

        .order-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
        }

        .product-image-container {
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 8px;
            text-align: center;
        }

        .product-image-container img {
            max-height: 180px;
            max-height: 160px;
            width: 95%;
            height: 95%;
            object-fit: contain;
            display: block;
            margin: auto;
            transition: transform 0.3s ease;
            border-radius: 15px;
        }

        .product-image-container:hover img {
            transform: scale(1.03);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(19, 105, 8, 0.5);
            border-radius: 50%;
            padding: 20px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #136908 0%, #0d4d06 100%);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 14px 32px;
            font-weight: 700;
            font-size: 0.95rem;
            width: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(19, 105, 8, 0.3);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f1f3f5;
        }

        .summary-total {
            border-top: 2px solid #136908;
            padding-top: 20px;
            margin-top: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .summary-total span:first-child {
            font-weight: 800;
            font-size: 1.1rem;
        }

        .summary-total span:last-child {
            font-size: 1.5rem;
            font-weight: 800;
            color: #136908;
        }

        .alert-modern {
            border-radius: 16px;
            border: none;
            padding: 16px 20px;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .alert-success {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
        }

        .alert-error {
            background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
            color: #721c24;
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #212529;
            margin: 32px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 3px solid #136908;
            display: inline-block;
        }

        .section-title i {
            color: #136908;
            margin-right: 10px;
        }

        .badge-modern {
            background: linear-gradient(135deg, #136908, #0d4d06);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .form-check-input {
            width: 1.1em;
            height: 1.1em;
            border-radius: 4px;
            border: 2px solid #dee2e6;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .form-check-input:checked {
            background-color: #136908;
            border-color: #136908;
        }

        /* Loading State for Button */
        .btn-submit:active {
            transform: scale(0.98);
        }
        .quote-card-wrapper {
            background: white;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .quote-card {
            background: linear-gradient(135deg, #fafaf9 0%, #e6e4e0 100%);
            border-radius: 20px;
            padding: 20px;
            border: 2px dashed #646462;
            position: relative;
            cursor: pointer;
            height: 100%;
            transition: all 0.3s ease;
        }

        .quote-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(255, 235, 175, 0.2);
            border-style: solid;
        }

        .quote-icon {
            font-size: 2.5rem;
            color: #a02803;
            margin-bottom: 16px;
            display: inline-block;
        }

        .quote-title {
            font-size: 1rem;
            font-weight: 700;
            color: #852204;
            margin: 8px 0;
        }





        .quote-btn {
            background: linear-gradient(135deg, #534442 0%, #5f544e 100%);
            color: #f3f1ec;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 700;
            font-size: 0.85rem;
            width: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 12px;
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .order-container {
                padding: 24px;
            }
            
            .order-card {
                position: static;
                margin-top: 32px;
            }
            
            .form-title {
                font-size: 1.5rem;
            }

            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
               
            }


        }

        @media (max-width: 768px) {
            .switcher-label {
                padding: 8px 20px;
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 1.1rem;
            }
            

            .offer-price {
                font-size: 24px;
            }
            .offers-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 6px;
                margin-bottom: 40px;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
            }
            .offers-grid > div {
                display: flex;
                flex: 0 0 190px; 
                scroll-snap-align: start;
                margin-right: 0; 
                padding: 0;
            }
            
            .offer-card {
                height: 100%;
                padding: 16px;  
            }
    
        }

        /* Animations douces */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .order-container, .order-card {
            animation: fadeIn 0.4s ease-out;
        }

        /* Tooltip style for hover */
        [data-tooltip] {
            position: relative;
            cursor: help;
        }

        [data-tooltip]:before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #136908;
            color: white;
            padding: 5px 10px;
            border-radius: 8px;
            font-size: 0.75rem;
            white-space: nowrap;
            display: none;
            z-index: 10;
        }

        [data-tooltip]:hover:before {
            display: block;
        }

        .form-control-modern:focus-visible,
        .btn-submit:focus-visible,
        .switcher-label:focus-visible {
            outline: 2px solid #136908;
            outline-offset: 2px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .btn-loading {
            pointer-events: none;
            opacity: 0.7;
        }

        .btn-loading i {
            animation: spin 0.8s linear infinite;
        }


        /* ============================
           PARTICULIER - STATIC PRICING
        ============================ */
        .static-offer-card {
            cursor: pointer;
        }

        .static-offer-card:active {
            transform: translateY(-2px) scale(0.98);
        }

        .offer-price.text-price {
            font-size: 20px;
            line-height: 1.35;
        }

        .pricing-unit {
            display: block;
            font-size: 0.7em;
            font-weight: 600;
            color: #6c757d;
            margin-top: 4px;
        }

        .quantity-section {
            margin-top: 8px;
        }

        .section-subtitle {
            font-size: 1rem;
            font-weight: 700;
            color: #212529;
            margin: 0 0 16px 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .section-subtitle i {
            color: #136908;
        }

        .quantity-controls {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: #f1f3f5;
            border-radius: 60px;
            padding: 6px;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .qty-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: white;
            color: #136908;
            font-size: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

        .qty-btn:hover {
            background: linear-gradient(135deg, #136908 0%, #0d4d06 100%);
            color: white;
            transform: translateY(-1px);
        }

        .qty-btn:active {
            transform: translateY(0) scale(0.96);
        }

        .qty-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        .qty-value {
            min-width: 56px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: #136908;
        }

        .qty-hint {
            margin-top: 10px;
            font-size: 0.85rem;
            color: #6c757d;
        }

        .price-breakdown {
            margin-top: 24px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 20px;
            padding: 20px 24px;
        }

        .breakdown-header {
            font-weight: 800;
            font-size: 1.1rem;
            color: #212529;
            margin-bottom: 12px;
        }

        .breakdown-lines {
            margin-bottom: 8px;
        }

        .breakdown-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            color: #495057;
            font-size: 0.95rem;
        }

        .breakdown-line span:last-child {
            font-weight: 600;
            color: #212529;
            white-space: nowrap;
        }

        .breakdown-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 2px solid #136908;
            padding-top: 14px;
            margin-top: 8px;
            font-weight: 800;
            font-size: 1.1rem;
        }

        .breakdown-total span:last-child {
            color: #136908;
            font-size: 1.3rem;
        }


    /* ============================
   MOBILE ORDER SUMMARY DRAWER
============================ */

.summary-toggle-btn,
.summary-overlay{
    display:none;
}
.summary-drawer {
    transition: transform .3s ease;
}
@media (max-width:991px){

    /* Toggle Button */
    .summary-toggle-btn{
        display:flex;
        position:fixed;
        bottom:20px;
        right:20px;
        width:56px;
        height:56px;
        border-radius:50%;
        background:#136908;
        color:white;
        border:none;
        align-items:center;
        justify-content:center;
        font-size:1.2rem;
        box-shadow:0 4px 15px rgba(19,105,8,0.4);
        z-index:999;
        cursor:pointer;
    }
    .summary-header-title{
        display: none;
    }

    #summaryColumn{

        position: fixed;

        top: 0;
        right: 0;

        width: 90%;
        max-width: 300px;

        height: 100vh;

        background: #fff;

        z-index: 1060;

        overflow-y: auto;

        transform: translateX(100%);
        transition: transform .35s ease;

        box-shadow: -10px 0 25px rgba(0,0,0,.2);

        padding:20px;
        border-radius: 23px;
    }

    #summaryColumn.show{
        transform: translateX(0);
    }

    .summary-overlay{

        position:fixed;
        inset:0;

        background:rgba(0,0,0,.4);

        opacity:0;
        visibility:hidden;

        transition:.3s;

        z-index:1055;
    }

    .summary-overlay.show{

        opacity:1;
        visibility:visible;

    }
    .summary-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:15px;
        border-bottom:1px solid #eee;
    }



    .summary-close-btn{

        border:none;
        background:#f2f2f2;

        width:35px;
        height:35px;

        border-radius:50%;

        cursor:pointer;

        display:flex;
        align-items:center;
        justify-content:center;
    }


/* disable sticky */

.order-card{
    position:sticky;
    top: 100px;;
}
.summary-close-btn:hover{
    background:#136908;
    color:#fff;
}


 #summaryColumn{

        position:fixed;

        top:0;
        right:0;

        width:90%;
        max-width:420px;

        height:100vh;

        margin:0;

        padding:20px;

        background:#fff;

        z-index:1055;

        overflow-y:auto;

        transform:translateX(100%);

        transition:.35s ease;

        box-shadow:-10px 0 25px rgba(0,0,0,.15);

    }

    #summaryColumn.show{
        transform:translateX(0);
    }

    #summaryOverlay{

        position:fixed;
        inset:0;

        background:rgba(0,0,0,.45);

        opacity:0;
        visibility:hidden;

        transition:.3s;

        z-index:1050;
    }

    #summaryOverlay.show{

        opacity:1;
        visibility:visible;

    }
}
@media (min-width: 992px) {

    #summaryColumn{
        display:block;
    }

    #summaryDrawer{
        position:sticky;
        top:100px;
    }

}        

/* =========================================
   FORM CONTROLS
   ========================================= */

.order-container .form-control,
.order-container .form-select,
.order-container input.form-control,
.order-container select.form-select,
.order-container textarea.form-control,
.order-container .form-control-modern,
.order-container input.form-control-modern,
.order-container select.form-control-modern,
.order-container textarea.form-control-modern,
.order-card .form-control-modern,
.order-card input.form-control-modern {
    width: 100% !important;
    min-height: 50px !important;

    padding: 12px 16px !important;

    background-color: #ffffff !important;

    border: 2px solid #e9ecef !important;
    border-radius: 14px !important;

    font-size: 0.95rem !important;
    color: #212529 !important;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease !important;

    outline: none !important;
    box-sizing: border-box !important;
}

/* Placeholder */
.order-container .form-control::placeholder,
.order-container textarea.form-control::placeholder,
.order-container .form-control-modern::placeholder,
.order-card .form-control-modern::placeholder {
    color: #adb5bd !important;
    opacity: 1 !important;
}

/* Hover */
.order-container .form-control:hover,
.order-container .form-select:hover,
.order-container input.form-control:hover,
.order-container select.form-select:hover,
.order-container .form-control-modern:hover,
.order-container select.form-control-modern:hover,
.order-card .form-control-modern:hover {
    border-color: #136908 !important;
}

/* Focus */
.order-container .form-control:focus,
.order-container .form-select:focus,
.order-container input.form-control:focus,
.order-container select.form-select:focus,
.order-container .form-control-modern:focus,
.order-container select.form-control-modern:focus,
.order-card .form-control-modern:focus {
    border-color: #136908 !important;

    box-shadow:
        0 0 0 3px rgba(19, 105, 8, 0.10) !important;

    outline: none !important;
}

/* Champs readonly */
.order-container .form-control[readonly],
.order-container .form-control-modern[readonly] {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    cursor: default !important;

    border-color: #e9ecef !important;
}

/* Hover sur readonly : ne pas mettre le vert */
.order-container .form-control[readonly]:hover,
.order-container .form-control-modern[readonly]:hover {
    border-color: #e9ecef !important;
}

/* Focus sur readonly */
.order-container .form-control[readonly]:focus,
.order-container .form-control-modern[readonly]:focus {
    border-color: #e9ecef !important;
    box-shadow: none !important;
}

/* Select */
.order-container .form-select,
.order-container select.form-control-modern {
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 991px) {

    .order-container .form-control,
    .order-container .form-select,
    .order-container .form-control-modern,
    .order-card .form-control-modern {
        min-height: 48px !important;
        padding: 11px 14px !important;
        font-size: 0.9rem !important;
    }
}



/* Responsive mobile */
@media (max-width: 576px) {

    .quantity-counter {
        margin-top: 22px;
        padding: 5px;
        border-radius: 14px;
    }

    .quantity-counter button {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 22px;
    }

    #quantity-value {
        min-width: 55px;
        font-size: 18px;
    }
}

/* ==========================================
   QUANTITÉ PERSONNALISÉE
   ========================================== */

.custom-quantity-section {
    width: 100%;
    display: block !important;
    scroll-snap-align: none;
    margin-top: 30px;
}

/* ==========================================
   TITRE
   ========================================== */

.custom-quantity-title {
    margin: 0 0 38px;
    text-align: center;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;

    color: #063b3c;
}

/* ==========================================
   COMPTEUR
   ========================================== */

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 52px;

    margin-bottom: 38px;
}

/* Boutons + / - */

.quantity-btn {
    width: 56px;
    height: 56px;

    border-radius: 50%;

    border: 1px solid #c9d2cf;

    background: #ffffff;

    color: #063b3c;

    font-size: 28px;
    font-weight: 400;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.quantity-btn:hover {
    background: #f3f7f5;

    border-color: #136908;

    box-shadow: 0 4px 12px rgba(19, 105, 8, 0.10);
}

.quantity-btn:active {
    transform: scale(0.94);
}

/* ==========================================
   CHIFFRE
   ========================================== */

.quantity-number {
    min-width: 45px;

    text-align: center;

    font-size: 46px;
    font-weight: 700;

    line-height: 1;

    color: #071f25;
}

/* ==========================================
   BLOC TOTAL
   ========================================== */

.quantity-summary {
    width: 100%;

    min-height: 103px;

    padding: 22px 25px;

    border-radius: 15px;

    background: #f0f4fa;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}

/* ==========================================
   TOTAL
   ========================================== */

.estimated-price {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.estimated-label {
    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.5px;

    color: #26343b;
}

.estimated-total {
    font-size: 31px;
    font-weight: 700;

    line-height: 1.1;

    color: #063b3c;
}

/* ==========================================
   INFORMATIONS PROMOTION
   ========================================== */

.promotion-info {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 7px;
}

.payment-info {
    font-size: 13px;
    font-weight: 500;

    color: #26343b;
}

.promotion-active {
    font-size: 14px;
    font-weight: 700;

    color: #ff1717;
}

/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

    .custom-quantity-section {
        margin-top: 30px;
    }

    .custom-quantity-title {
        font-size: 24px;

        margin-bottom: 30px;
    }

    .quantity-selector {
        gap: 35px;

        margin-bottom: 30px;
    }

    .quantity-btn {
        width: 50px;
        height: 50px;

        font-size: 25px;
    }

    .quantity-number {
        font-size: 40px;
    }

    .quantity-summary {
        padding: 18px 20px;

        min-height: 95px;
    }

    .estimated-total {
        font-size: 26px;
    }
}

/* ==========================================
   PETIT MOBILE
   ========================================== */

@media (max-width: 480px) {

    .custom-quantity-title {
        font-size: 21px;
    }

    .quantity-selector {
        gap: 28px;
    }

    .quantity-btn {
        width: 46px;
        height: 46px;

        font-size: 23px;
    }

    .quantity-number {
        font-size: 36px;
    }

    .quantity-summary {
        padding: 16px;

        border-radius: 13px;
    }

    .estimated-label {
        font-size: 11px;
    }

    .estimated-total {
        font-size: 23px;
    }

    .payment-info {
        font-size: 11px;
    }

    .promotion-active {
        font-size: 12px;
    }
}