
        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;
        }

        .switcher-input {
            display: none;
        }

        .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;
        }


    /* ============================
   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;
    }

}        
