      .container {
            max-width: 800px;
            width: 100%;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            overflow: hidden;
            margin: 0 auto;
        }
        
        .header {
            background: var(--primary);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .progress-bar {
            display: flex;
            justify-content: space-between;
            padding: 30px;
            background: var(--light);
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: white;
            border: 2px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .step.active .step-number {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .step-label {
            font-size: 14px;
            color: #666;
        }
        
        .form-container {
            padding: 40px;
        }
        
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .form-step.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        h2 {
            color: var(--dark);
            margin-bottom: 30px;
            font-size: 24px;
        }
        
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .card {
            background: white;
            border: 2px solid #eee;
            border-radius: 15px;
            padding: 25px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .card.selected {
            border-color: var(--primary);
            background: rgba(217, 159, 70, 0.05);
        }
        
        .card-icon {
            font-size: 40px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .card-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .card-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        input, select, textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .btn {
            padding: 16px 40px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(217, 159, 70, 0.3);
        }
        
        .btn-secondary {
            background: var(--secondary);
            color: white;
        }
        
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }
        
        .confirmation {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .confirmation-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .success-message {
            text-align: center;
            padding: 40px;
            display: none;
        }
        
        .success-icon {
            font-size: 80px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .error-message {
            color: var(--red);
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        /* Carte Maps */
        #map {
            height: 250px;
            width: 100%;
            border-radius: 10px;
            margin-top: 10px;
            border: 2px solid #eee;
        }
        
        #map.leaflet-container {
            z-index: 1;
        }
        
        .map-controls {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .map-controls button {
            padding: 8px 16px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .coordinates {
            font-size: 12px;
            color: #666;
            margin-top: 5px;
            padding: 5px;
            background: #f5f5f5;
            border-radius: 5px;
        }
        
        .search-box {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .search-box input {
            flex: 1;
        }
        
        .maps-link {
            margin-top: 10px;
            display: none;
        }
        
        .maps-link a {
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
        }
        
        .maps-link a:hover {
            text-decoration: underline;
        }

        .cgu-link {
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
        }
        
        .cgu-link:hover {
            text-decoration: underline;
        }
        
        /* Correction pour le chargement de la carte */
        .leaflet-container {
            background: #f8f9fa !important;
        }
        
        .map-placeholder {
            height: 250px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            border: 2px dashed #ddd;
        }

        #orderWrapper {
            display: flex;
            justify-content: center;
            align-items: flex-start; /* pour éviter que tout soit centré verticalement */
            min-height: 100vh;
        }

        /* Message de fermeture harmonisé */
        .closed-message {
            max-width: 800px;
            width: 100%;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            overflow: hidden;
            display: none;
            margin: 0 auto;
        }

        /* Même header que la container */
        .closed-message-header {
            background: var(--primary);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .closed-message-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .closed-message-content {
            padding: 40px;
            text-align: center;
        }

        .closed-message-content img {
            width: 60%;
            height: auto;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .closed-message-content h2 {
            font-size: 26px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .closed-message-content p {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
        }

        .countdown-box {
            text-align: center;
            padding: 20px;
            background: var(--light);
            border-left: 5px solid var(--primary);;
            margin: 20px;
            border-radius: 12px;
            font-size: 18px;
        }

        #countdownTimer {
            font-size: 24px;
            font-weight: bold;
            margin-top: 10px;
        }

