        .navbar-nav {
            margin: 0 auto;
        }
        .navbar-nav li {
            display: inline-block;
            position: relative;
        }
        .cart-icon {
            position: relative;
            display: inline-block;
        }
        .cart-icon .badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: orange;
            color: white;
            border-radius: 50%;
            padding: 5px 10px;
            font-size: 12px;
        }
        .hidden {
            display: none;
        }
        .product-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #e7f5ff;
            border: 1px solid #0056D2;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 20px;
        }
        .product-options {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        .product-card {
            background-color: #f7f8fc;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .product-card.selected {
            border: 2px solid #0056D2;
            background-color: #e7f5ff;
        }

        .locate-card {
            background-color: #f7f8fc;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .locate-card.selected {
            border: 2px solid #0056D2;
            background-color: #e7f5ff;
        }

        .product-card:hover {
            border-color: #0056D2;
            background-color: #e7f5ff;
        }
        .price-details {
            text-align: right;
            flex: 1;
            margin-left: 15px;
        }
        .price-details .price {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        .price-details .renewal-price {
            font-size: 12px;
            color: #888;
        }
        .recap-card {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        .recap-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        .recap-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .recap-discount {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #0056D2;
            margin-bottom: 10px;
        }
        .recap-discount .recap-original-price {
            text-decoration: line-through;
            color: #aaa;
            margin-right: 10px;
        }
        .recap-total {
            font-size: 18px;
            font-weight: bold;
            color: #0056D2;
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .recap-benefits {
            list-style: none;
            padding: 0;
            margin: 15px 0;
            font-size: 12px;
            color: #333;
        }
        .recap-benefits li {
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-success {
            background-color: #0056D2;
            border-color: #0056D2;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .btn-success:hover {
            background-color: #0056D2;
            border-color: #0056D2;
        }

        .close-button {
            background-color: #0056D2;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 4px 12px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .close-button:hover {
            background-color: #0044aa;
        }

        .radio-button {
            display: flex;
            align-items: center;
            gap: 15px; /* Augmentez cette valeur pour un espace plus grand */
        }

        .commitment-label {
            margin-right: 6px; /* Espace supplémentaire, si nécessaire */
        }

        .discount-badge {
            font-size: 12px;
            padding: 3px 8px;
        }

        .btn-animated {
            background-color: #0066ff;
            color: #ffffff !important;
            border: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .btn-animated:hover {
            background-color: #0052cc;
            transform: scale(1.05); /* Zoom léger au survol */
        }

        .btn-animated:active {
            background-color: #003d99;
            transform: scale(0.98); /* Effet de pression */
        }