 /* Styles spécifiques pour la page de menu */
        :root {
            --touch-target-size: 44px; /* Taille minimale recommandée pour les zones tactiles */
        }
        
        .menu-page {
            padding-top: 120px;
            padding-bottom: 60px;
            background-color: var(--gray);
        }
        
        .menu-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .menu-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text);
        }
        
        .menu-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 20px;
        }

        /* Restaurant Selector - AMÉLIORÉ */
        .restaurant-selector {
            margin: 20px auto;
            max-width: 400px;
            text-align: center;
        }
        
        .restaurant-selector label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            font-size: 16px;
        }
        
        .restaurant-select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            background-color: white;
            font-size: 16px;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            cursor: pointer;
            min-height: var(--touch-target-size);
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .restaurant-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 93, 70, 0.2);
        }

        /* Restaurant Status */
        .restaurant-status {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            margin: 15px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        
        .restaurant-status.open {
            background-color: var(--success-light, #E8F5E9);
            color: var(--success, #4CAF50);
        }
        
        .restaurant-status.closed {
            background-color: var(--danger-light, #FFEBEE);
            color: var(--danger, #F44336);
        }
        
        .restaurant-status i {
            margin-right: 8px;
        }
        
        /* Restaurant Info - NOUVEAU */
        .restaurant-info {
            background-color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 20px auto;
            max-width: 500px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .restaurant-info-header {
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .restaurant-name {
            font-size: 18px;
            font-weight: 700;
        }
        
        .restaurant-hours {
            font-size: 14px;
            color: var(--text-light);
        }
        
        .restaurant-address {
            margin-top: 10px;
            font-size: 14px;
        }
        
        .restaurant-contact {
            margin-top: 10px;
            display: flex;
            justify-content: space-between;
        }
        
        .restaurant-phone {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .restaurant-phone a {
            color: inherit;
            text-decoration: none;
        }
        
        .restaurant-map-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            min-height: var(--touch-target-size);
            transition: all 0.3s ease;
        }
        
        .restaurant-map-btn:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Category navigation */
        .menu-categories {
            margin-bottom: 30px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 10px;
        }
        
        .category-tabs {
            display: flex;
            justify-content: flex-start;
            flex-wrap: nowrap;
            gap: 10px;
            margin-bottom: 20px;
            min-width: max-content;
        }
        
        .category-tab {
            padding: 12px 20px;
            background-color: white;
            border-radius: 30px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            min-height: var(--touch-target-size);
            min-width: max-content;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        
        .category-tab:hover {
            background-color: rgba(37, 93, 70, 0.1);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .category-tab.active {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 10px rgba(37, 93, 70, 0.3);
        }
        
        .category-tab i {
            font-size: 16px;
        }
        
        /* Menu search */
        .menu-search {
            max-width: 600px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .menu-search input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            min-height: var(--touch-target-size);
        }
        
        .menu-search input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 93, 70, 0.2), 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .menu-search i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 18px;
        }
        
        /* Filter controls */
        .menu-filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-button {
            padding: 12px 20px;
            background-color: white;
            border: 1px solid #eee;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            min-height: var(--touch-target-size);
            font-weight: 600;
        }
        
        .filter-button:hover, .filter-button.active {
            background-color: rgba(37, 93, 70, 0.1);
            border-color: rgba(37, 93, 70, 0.1);
            color: var(--primary-dark);
        }
        
        .filter-button i {
            font-size: 14px;
        }
        
        .sort-options {
            position: relative;
        }
        
        .sort-dropdown {
            padding: 12px 20px;
            background-color: white;
            border: 1px solid #eee;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            min-width: 180px;
            min-height: var(--touch-target-size);
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 14px;
        }
        
        .sort-dropdown:focus {
            outline: none;
            border-color: rgba(37, 93, 70, 0.1);
            box-shadow: 0 0 0 3px rgba(37, 93, 70, 0.1);
        }
        
        /* Menu section */
        .menu-section {
            margin-bottom: 40px;
            scroll-margin-top: 140px; /* Pour le défilement au clic sur une catégorie */
        }
        
        .section-title {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        /* Product card */
        .product-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover, .product-card:active {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            z-index: 1;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .product-badge.bestseller {
            background-color: rgba(37, 93, 70, 0.1);
            color: var(--primary-dark);
        }
        
        .product-badge.vegetarian {
            background-color: var(--success-light, #E8F5E9);
            color: var(--success, #4CAF50);
        }
        
        .product-badge.spicy {
            background-color: var(--danger-light, #FFEBEE);
            color: var(--danger, #F44336);
        }
        
        .product-favorite {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 36px; /* Taille augmentée pour faciliter le toucher */
            height: 36px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .product-favorite:hover, .product-favorite:active {
            transform: scale(1.1);
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        
        .product-favorite i {
            color: #ddd;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        
        .product-favorite.active i {
            color: #F44336;
        }
        
        .product-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .product-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }
        
        .product-description {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
            max-height: 60px;
            overflow: hidden;
            flex-grow: 1;
        }
        
        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        .product-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .product-actions {
            display: flex;
            gap: 10px;
        }
        
        .add-to-cart-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 10px 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            min-height: var(--touch-target-size);
            min-width: 120px;
            justify-content: center;
            box-shadow: 0 3px 6px rgba(37, 93, 70, 0.3);
        }
        
        .add-to-cart-btn:hover, .add-to-cart-btn:active {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(37, 93, 70, 0.4);
        }
        
        .add-to-cart-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        /* Modal for product options */
        .product-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .product-modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: white;
            border-radius: var(--border-radius);
            width: 90%;
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(20px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .product-modal.show .modal-content {
            transform: translateY(0);
        }
        
        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background-color: white;
            z-index: 2;
        }
        
        .modal-title {
            font-size: 22px;
            font-weight: 700;
        }
        
        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-light);
            width: var(--touch-target-size);
            height: var(--touch-target-size);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }
        
        .modal-close:hover, .modal-close:active {
            background-color: #f5f5f5;
            color: var(--primary);
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .product-detail {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .product-detail-image {
            width: 150px;
            height: 150px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .product-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-detail-info {
            flex: 1;
        }
        
        .product-detail-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .product-detail-description {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .product-detail-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .product-options {
            margin-top: 25px;
        }
        
        .option-group {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .option-group:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .option-group-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .option-selection-type {
            font-size: 14px;
            color: var(--text-light);
            background-color: #f5f5f5;
            padding: 5px 10px;
            border-radius: 15px;
        }
        
        .option-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }
        
        .option-item {
            position: relative;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            min-height: var(--touch-target-size);
        }
        
        .option-item:hover, .option-item:active {
            border-color: rgba(37, 93, 70, 0.1);
            background-color: rgba(37, 93, 70, 0.1);
        }
        
        .option-item.selected {
            border-color: var(--primary);
            background-color: rgba(37, 93, 70, 0.1);
            box-shadow: 0 0 0 1px var(--primary);
        }
        
        .option-item-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .option-item-name {
            font-weight: 600;
            font-size: 16px;
        }
        
        .option-item-price {
            font-size: 15px;
            color: var(--primary);
            font-weight: 600;
        }
        
        .option-item input[type="checkbox"],
        .option-item input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 25px;
            background-color: #f8f8f8;
            padding: 15px;
            border-radius: 10px;
        }
        
        .quantity-label {
            font-weight: 600;
            font-size: 16px;
        }
        
        .quantity-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .quantity-btn:hover, .quantity-btn:active {
            background-color: rgba(37, 93, 70, 0.1);
            border-color: rgba(37, 93, 70, 0.1);
            color: var(--primary-dark);
            transform: scale(1.05);
        }
        
        .quantity-value {
            font-weight: 600;
            font-size: 20px;
            min-width: 40px;
            text-align: center;
        }
        
        .special-requests {
            margin-top: 25px;
        }
        
        .special-requests label {
            display: block;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 16px;
        }
        
        .special-requests textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 10px;
            resize: vertical;
            min-height: 100px;
            font-size: 16px;
            font-family: inherit;
        }
        
        .special-requests textarea:focus {
            outline: none;
            border-color: rgba(37, 93, 70, 0.1);
            box-shadow: 0 0 0 3px rgba(37, 93, 70, 0.1);
        }
        
        .modal-footer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            bottom: 0;
            background-color: white;
            z-index: 2;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        }
        
        .item-total {
            font-size: 20px;
            font-weight: 700;
        }
        
        .item-total-label {
            color: var(--text-light);
            margin-right: 10px;
        }
        
        .item-total-amount {
            color: var(--primary);
        }
        
        .add-to-cart-modal-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 15px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            min-height: var(--touch-target-size);
            min-width: 180px;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(37, 93, 70, 0.3);
        }
        
        .add-to-cart-modal-btn:hover, .add-to-cart-modal-btn:active {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 93, 70, 0.4);
        }
        
        .add-to-cart-modal-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 60px 30px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 30px 0;
        }
        
        .empty-state i {
            font-size: 70px;
            color: var(--text-light);
            opacity: 0.5;
            margin-bottom: 20px;
        }
        
        .empty-state h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .empty-state p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Toast notification */
        .toast-notification {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: white;
            border-radius: 10px;
            padding: 15px 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            z-index: 2100;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            min-width: 280px;
        }
        
        .toast-notification.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        .toast-notification i {
            color: #4CAF50;
            font-size: 24px;
            margin-right: 15px;
        }
        
        .toast-notification span {
            font-weight: 600;
            font-size: 16px;
        }
        
        /* Allergens and nutrition info */
        .product-allergens, .product-nutrition {
            margin-top: 15px;
            font-size: 14px;
            color: var(--text-light);
            background-color: #f9f9f9;
            padding: 10px;
            border-radius: 8px;
        }
        
        .allergen-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }
        
        .allergen-tag {
            background-color: var(--gray);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 13px;
        }
        
        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover, .scroll-to-top:active {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
        }
        
        /* Optimisations tactiles */
        @media (pointer: coarse) {
            /* Augmenter les zones de clic pour écrans tactiles */
            .category-tab, 
            .filter-button, 
            .add-to-cart-btn, 
            .option-item,
            .quantity-btn,
            .add-to-cart-modal-btn {
                cursor: default; /* Supprime le pointeur sur tactile */
                touch-action: manipulation;
            }
            
            /* Effet au toucher */
            .category-tab:active, 
            .filter-button:active, 
            .add-to-cart-btn:active, 
            .option-item:active,
            .quantity-btn:active,
            .add-to-cart-modal-btn:active {
                transform: scale(0.97);
            }
            
            /* Taille minimale pour les éléments interactifs */
            button, a, input, select, .category-tab, .filter-button, .option-item, .product-favorite {
                min-height: var(--touch-target-size);
                min-width: var(--touch-target-size);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .product-detail {
                flex-direction: column;
            }
            
            .product-detail-image {
                width: 100%;
                height: 200px;
            }
            
            .option-items {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .modal-footer {
                flex-wrap: wrap;
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-title {
                font-size: 28px;
            }
            
            .category-tab {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
            
            .modal-content {
                width: 95%;
                max-height: 85vh;
            }
            
            .restaurant-info {
                padding: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .menu-title {
                font-size: 24px;
            }
            
            .menu-subtitle {
                font-size: 16px;
            }
            
            .menu-filters {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .filter-options {
                width: 100%;
                justify-content: space-between;
            }
            
            .sort-options {
                width: 100%;
            }
            
            .sort-dropdown {
                width: 100%;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-card {
                max-width: 100%;
            }
            
            .option-items {
                grid-template-columns: 1fr;
            }
            
            .modal-footer {
                flex-direction: column;
                gap: 15px;
            }
            
            .add-to-cart-modal-btn {
                width: 100%;
            }
            
            .restaurant-selector {
                padding: 0 15px;
            }
        }
        
        /* Prévenir le zoom sur double-tap sur iOS */
        @media (pointer: coarse) {
            * {
                touch-action: manipulation;
            }
        }
		.option-item {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 8px;
}

.option-item:hover {
    background-color: rgba(37, 93, 70, 0.1);
    border-color: rgba(37, 93, 70, 0.1);
}

.option-item.selected {
    background-color: rgba(37, 93, 70, 0.1);
    border-color: var(--primary);
}

.option-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Styles pour les réductions et récompenses dans le panier */

/* Zone de code de réduction */
.cart-discount {
    margin: 15px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.cart-discount h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* Formulaire pour entrer un code */
.discount-form {
    display: flex;
    margin-bottom: 10px;
}

.discount-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    transition: border-color 0.3s, background-color 0.3s;
}

.discount-input:disabled {
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.discount-form button {
    border-radius: 0 4px 4px 0;
    padding: 8px 15px;
    margin-left: -1px;
    transition: background-color 0.3s, opacity 0.3s;
}

.discount-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Messages d'information */
.discount-message {
    margin-top: 8px;
    font-size: 13px;
    transition: color 0.3s;
}

.discount-message.success {
    color: #28a745;
}

.discount-message.error {
    color: #dc3545;
}

/* Affichage de la réduction appliquée */
.applied-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 10px 12px;
    background-color: #e8f5e9;
    border-radius: 4px;
    border-left: 3px solid #28a745;
    transition: all 0.3s;
}

.applied-discount-code {
    font-weight: 600;
    margin-right: 10px;
    color: #333;
}

.applied-discount-value {
    color: #28a745;
}

.btn-remove-discount {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-remove-discount:hover {
    transform: scale(1.2);
}

/* Styles pour les produits gratuits dans le panier */
.cart-item.free-reward {
    background-color: #e8f5e9;
    border-left: 3px solid #28a745;
}

.cart-item.free-reward .cart-item-name {
    color: #28a745;
    font-weight: 700;
}

.cart-item.free-reward .cart-item-notes {
    font-style: italic;
    color: #555;
    margin-top: 5px;
    font-size: 0.85em;
}

.cart-item.free-reward .cart-item-price {
    color: #28a745;
    font-weight: 700;
}

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

.applied-discount {
    animation: fadeIn 0.3s ease-out;
}

/* Responsive */
@media (max-width: 576px) {
    .discount-form {
        flex-direction: column;
    }
    
    .discount-input {
        border-radius: 4px;
        margin-bottom: 8px;
    }
    
    .discount-form button {
        border-radius: 4px;
        margin-left: 0;
    }
}
/* Styles pour les réductions et récompenses dans le panier */

/* Zone de code de réduction */
.cart-discount {
    margin: 15px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.cart-discount h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* Formulaire pour entrer un code */
.discount-form {
    display: flex;
    margin-bottom: 10px;
}

.discount-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    transition: border-color 0.3s, background-color 0.3s;
}

.discount-input:disabled {
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.discount-form button {
    border-radius: 0 4px 4px 0;
    padding: 8px 15px;
    margin-left: -1px;
    transition: background-color 0.3s, opacity 0.3s;
}

.discount-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Messages d'information */
.discount-message {
    margin-top: 8px;
    font-size: 13px;
    transition: color 0.3s;
}

.discount-message.success {
    color: #28a745;
}

.discount-message.error {
    color: #dc3545;
}

/* Affichage de la réduction appliquée */
.applied-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 10px 12px;
    background-color: #e8f5e9;
    border-radius: 4px;
    border-left: 3px solid #28a745;
    transition: all 0.3s;
}

.applied-discount-code {
    font-weight: 600;
    margin-right: 10px;
    color: #333;
}

.applied-discount-value {
    color: #28a745;
}

.btn-remove-discount {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-remove-discount:hover {
    transform: scale(1.2);
}

/* Styles pour les produits gratuits dans le panier */
.cart-item.free-reward {
    background-color: #e8f5e9;
    border-left: 3px solid #28a745;
    position: relative;
}

.cart-item.free-reward::before {
    content: "Gratuit";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.cart-item.free-reward .cart-item-name {
    color: #28a745;
    font-weight: 700;
}

.cart-item.free-reward .cart-item-notes {
    font-style: italic;
    color: #555;
    margin-top: 5px;
    font-size: 0.85em;
}

.cart-item.free-reward .cart-item-price {
    color: #28a745;
    font-weight: 700;
}

/* Style pour quantité fixe des produits gratuits */
.cart-item-quantity-fixed {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e8f5e9;
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px dashed #28a745;
}

.cart-item-quantity-fixed .cart-quantity-value {
    font-weight: bold;
    color: #28a745;
}

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

.applied-discount {
    animation: fadeIn 0.3s ease-out;
}

/* Badge "produit gratuit" pour les petits écrans */
@media (max-width: 576px) {
    .cart-item.free-reward::before {
        top: 5px;
        right: 5px;
        font-size: 10px;
        padding: 1px 6px;
    }
    
    .discount-form {
        flex-direction: column;
    }
    
    .discount-input {
        border-radius: 4px;
        margin-bottom: 8px;
    }
    
    .discount-form button {
        border-radius: 4px;
        margin-left: 0;
    }
}
/* Styles simplifiés pour les réductions et produits gratuits */

/* Zone de code de réduction */
.cart-discount {
    margin: 15px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.cart-discount h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* Formulaire pour entrer un code */
.discount-form {
    display: flex;
    margin-bottom: 10px;
}

.discount-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.discount-form button {
    border-radius: 0 4px 4px 0;
    padding: 8px 15px;
    margin-left: -1px;
}

/* Messages d'information */
.discount-message {
    margin-top: 8px;
    font-size: 13px;
}

.discount-message.success {
    color: #28a745;
}

.discount-message.error {
    color: #dc3545;
}

/* Affichage amélioré de la réduction active */
.active-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e8f5e9;
    border-radius: 6px;
    padding: 12px 15px;
    border-left: 4px solid #28a745;
}

.active-discount-info {
    display: flex;
    flex-direction: column;
}

.discount-label {
    font-size: 14px;
    margin-bottom: 2px;
    color: #555;
}

.discount-code {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
}

.discount-value {
    font-weight: 600;
    color: #28a745;
}

.discount-remove-btn {
    background-color: transparent;
    border: none;
    color: #dc3545;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.discount-remove-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Styles pour les produits gratuits */
.cart-item.free-reward {
    background-color: #e8f5e9;
    border-left: 3px solid #28a745;
    position: relative;
}

.cart-item.free-reward::before {
    content: "Gratuit";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.cart-item.free-reward .cart-item-name {
    color: #28a745;
    font-weight: 700;
}

.cart-item.free-reward .cart-item-notes {
    font-style: italic;
    color: #555;
    margin-top: 5px;
    font-size: 0.85em;
}

.cart-item.free-reward .cart-item-price {
    color: #28a745;
    font-weight: 700;
}

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

.active-discount {
    animation: fadeIn 0.3s ease-out;
}

/* Responsive */
@media (max-width: 576px) {
    .active-discount {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .discount-remove-btn {
        align-self: flex-end;
        margin-top: 10px;
    }
    
    .cart-item.free-reward::before {
        top: 5px;
        right: 5px;
        font-size: 10px;
        padding: 1px 6px;
    }
    
    .discount-form {
        flex-direction: column;
    }
    
    .discount-input {
        border-radius: 4px;
        margin-bottom: 8px;
    }
    
    .discount-form button {
        border-radius: 4px;
        margin-left: 0;
    }
}
/* Styles améliorés pour la section de réduction dans le panier */

/* Conteneur principal */
.cart-discount {
    margin: 10px 0 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cart-discount h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #255d46;
    display: flex;
    align-items: center;
}

.cart-discount h3::before {
    content: '\f02b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: #dba79b;
}

/* Formulaire d'entrée de code */
.discount-form {
    display: flex;
    margin-bottom: 10px;
}

.discount-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    transition: border-color 0.2s;
    background-color: #fff;
}

.discount-input:focus {
    outline: none;
    border-color: #255d46;
    box-shadow: 0 0 0 2px rgba(37, 93, 70, 0.1);
}

.discount-input::placeholder {
    color: #aaa;
    font-style: italic;
}

.discount-input:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.discount-form button {
    border-radius: 0 4px 4px 0;
    padding: 10px 15px;
    margin-left: -1px;
    background-color: #255d46;
    color: white;
    border: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.discount-form button:hover {
    background-color: #1a4433;
}

.discount-form button:disabled {
    background-color: #a0b8ae;
    cursor: not-allowed;
}

/* Message de statut de réduction */
.discount-message {
    margin-top: 8px;
    padding: 0;
    font-size: 13px;
    transition: all 0.3s ease;
    min-height: 18px;
}

.discount-message.success {
    color: #28a745;
    padding: 4px 8px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 4px;
    border-left: 3px solid #28a745;
}

.discount-message.error {
    color: #dc3545;
    padding: 4px 8px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
    border-left: 3px solid #dc3545;
}

/* Réduction appliquée */
.applied-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 10px 12px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #255d46;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    animation: highlight-discount 1s ease;
}

@keyframes highlight-discount {
    0% { background-color: #dba79b40; }
    100% { background-color: #e8f5e9; }
}

.applied-discount-info {
    display: flex;
    flex-direction: column;
}

.applied-discount-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.applied-discount-code {
    font-weight: 700;
    font-size: 15px;
    color: #255d46;
    margin-right: 10px;
    letter-spacing: 0.5px;
}

.applied-discount-value {
    font-weight: 600;
    color: #28a745;
    font-size: 14px;
}

/* Bouton de suppression */
.btn-remove-discount {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-remove-discount:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Style alternatif pour les réductions actives */
.active-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #e8f5e9;
    border-radius: 6px;
    border-left: 4px solid #255d46;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.active-discount-info {
    display: flex;
    flex-direction: column;
}

.discount-label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 3px;
}

.discount-code {
    font-weight: 700;
    font-size: 15px;
    color: #255d46;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.discount-value {
    font-weight: 600;
    color: #28a745;
}

.discount-remove-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.2s;
}

.discount-remove-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Animations pour améliorer l'UX */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-discount {
    animation: fadeIn 0.3s ease;
}

/* Style spécial pour les produits gratuits (récompenses) dans le panier */
.cart-item.free-reward {
    border-left: 3px solid #dba79b;
    background-color: rgba(219, 167, 155, 0.05);
}

.cart-item.free-reward .cart-item-name::after {
    content: '🎁';
    margin-left: 5px;
}
/* Styles spécifiques pour les produits gratuits dans le panier */

/* Style pour le message de produit offert */
.active-discount-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.active-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 12px 15px;
    background-color: #ffeff0;
    border-radius: 6px;
    border-left: 4px solid #dba79b;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Style pour le libellé "Produit offert" */
.discount-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.discount-label:before {
    content: '🎁';
    margin-right: 5px;
    font-size: 14px;
}

/* Style pour le code */
.discount-code {
    font-weight: 700;
    font-size: 15px;
    color: #255d46;
    letter-spacing: 0.5px;
    background-color: rgba(37, 93, 70, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
}

/* Style pour le nom du produit gratuit */
.discount-value {
    font-weight: 500;
    color: #e05d44;
    font-size: 14px;
    font-style: italic;
    word-break: break-word;
    line-height: 1.3;
}

/* Animation subtile lors de l'affichage */
.active-discount {
    animation: fadeInDiscount 0.3s ease;
}

@keyframes fadeInDiscount {
    from { 
        opacity: 0;
        transform: translateY(-5px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bouton de suppression */
.discount-remove-btn {
    background: none;
    border: none;
    padding: 5px;
    margin-left: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.discount-remove-btn:hover {
    background-color: rgba(224, 93, 68, 0.1);
    color: #e05d44;
}

.discount-remove-btn i {
    font-size: 16px;
}

/* Adapter l'affichage pour les écrans plus petits */
@media (max-width: 480px) {
    .active-discount {
        padding: 10px 12px;
    }
    
    .discount-label {
        font-size: 12px;
    }
    
    .discount-code {
        font-size: 14px;
    }
    
    .discount-value {
        font-size: 12px;
    }
}
/* Styles pour les articles gratuits dans le panier */

.cart-item.free-reward {
    position: relative;
    border-left: 3px solid #dba79b;
    background-color: rgba(219, 167, 155, 0.05);
    padding-right: 10px;
}

/* Badge "Gratuit" */
.cart-item.free-reward::after {
    content: 'GRATUIT';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dba79b;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: rotate(5deg);
}

/* Mise en évidence du nom des produits gratuits */
.cart-item.free-reward .cart-item-name {
    color: #255d46;
    font-weight: 700;
    display: flex;
    align-items: center;
    line-height: 1.3;
    padding-right: 60px; /* Espace pour le badge */
}

/* Icône cadeau devant le nom */
.cart-item.free-reward .cart-item-name::before {
    content: '🎁';
    margin-right: 5px;
    font-size: 14px;
}

/* Modification du prix et de la quantité */
.cart-item.free-reward .cart-item-price {
    text-decoration: line-through;
    color: #888;
    font-size: 13px;
    position: relative;
}

.cart-item.free-reward .cart-item-price::after {
    content: '0,00 €';
    position: absolute;
    left: 0;
    bottom: -16px;
    color: #e05d44;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

/* Animation subtile au chargement */
.cart-item.free-reward {
    animation: highlightFreeItem 1s ease;
}

@keyframes highlightFreeItem {
    0% { background-color: rgba(219, 167, 155, 0.2); }
    100% { background-color: rgba(219, 167, 155, 0.05); }
}

/* Style du bouton de suppression */
.cart-item.free-reward .cart-item-remove {
    background-color: rgba(224, 93, 68, 0.1);
    color: #e05d44;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-item.free-reward .cart-item-remove:hover {
    background-color: rgba(224, 93, 68, 0.2);
}

/* Styles pour la note du produit gratuit */
.cart-item.free-reward .cart-item-notes {
    margin-top: 5px;
    font-size: 12px;
    color: #555;
    font-style: italic;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
}

.cart-item.free-reward .cart-item-notes i {
    color: #dba79b;
}
/* Styles pour les récompenses et produits gratuits */

/* Produit gratuit dans le panier */
.cart-item.free-reward {
    background-color: rgba(76, 175, 80, 0.05);
    border-left: 3px solid #4caf50;
    position: relative;
}

.cart-item.free-reward::after {
    content: "Gratuit";
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #4caf50;
    color: white;
    font-size: 11px;
    padding: 2px.6px;
    border-radius: 3px;
    font-weight: 600;
}

/* Section des récompenses améliorée */
.cart-rewards-section {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 10px;
}

/* Badges de récompenses */
.reward-badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.reward-badge.product::before {
    content: "\f06b"; /* Gift icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 4px;
}

.reward-badge.discount::before {
    content: "\f02b"; /* Tag icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 4px;
}

.reward-badge.shipping::before {
    content: "\f0d1"; /* Truck icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 4px;
}

/* Notification d'expiration */
.reward-expiry.warning {
    margin-top: 6px;
    color: #ff5722;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.reward-expiry.warning::before {
    content: "\f071"; /* Warning icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

/* Amélioration du résumé du panier */
.cart-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.cart-summary-row.cart-total {
    font-weight: 700;
    font-size: 18px;
    color: #255d46;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #e0e0e0;
}

.discount-row .cart-summary-label::before {
    content: "\f02b"; /* Tag icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

/* Bouton de commande */
.cart-checkout {
    margin-top: 15px;
}

.cart-checkout .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

/* Améliorations pour mobile */
@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
    }
    
    .reward-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-apply-reward {
        margin-top: 10px;
        width: 100%;
    }
    
    .cart-item-actions {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .cart-item-remove {
        margin-top: 8px;
    }
}