/* --- ESTILOS GENERALES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #333;
            animation: fadeIn 1s;
            padding-bottom: 80px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* --- HEADER --- */
        header {
            background: linear-gradient(90deg, #1a5632, #2e7d32);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: -1px;
            justify-content: center;
            align-items: center;
            gap: 5rem;
        }

        @keyframes splash {
            0% {
                transform: rotate(-90deg) scale(6);
                filter: drop-shadow(white 0 0 5px);
            }
            100% {
                transform: rotate(-15deg) scale(1);
                filter: drop-shadow(rgba(255, 255, 255, 0.2) 0 0 1px);
            }
        }
        
        .logo span {
            color: #ffd700;
            position: absolute;
            translate: -55px;
            font-style: italic;
            transform: rotate(-15deg) scale(1);
            transition: ease-in-out 0.2s;
            animation: splash;
            animation-duration: 1s;
        }

        .logo span:hover {
            transform: scale(1.4);
            filter: drop-shadow(white 0 0 3px);
        }
        
        /* --- LOGO IMAGE --- */
        .logo-image-container {
            text-align: center;
            margin-top: 10px;
            animation: fadeIn 1s ease 0.5s both;
            position: absolute;
            transform: translate(-50%, 0);
            top: 3rem;
            left: 50%;
        }
        
        .logo-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #ffd700;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .logo-image:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        
        /* Ajustar el header para acomodar el logo */
        .header-container > div:first-child {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        
        /* Opcional: ajustar margen del logo principal si es necesario */
        .logo {
            margin-bottom: 0;
        }
        
        /* Responsive para el logo */
        @media (max-width: 768px) {
            .logo-image {
                width: 80px;
                height: 80px;
                border-width: 2px;
            }
            
            .logo-image-container {
                margin-top: 8px;
            }
        }
        
        
        /* --- CONTENEDOR PRINCIPAL --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        /* --- SECCIONES DEL MENÚ --- */
        .section-title {
            text-align: center;
            margin: 40px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #1a5632;
            color: #2d3436;
            font-size: 2rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #ffd700;
        }
        
        /* --- GRID DE PRODUCTOS --- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eee;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        /* --- IMAGEN DEL PRODUCTO --- */
        .product-image-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #1a5632;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* --- CONTENIDO DEL PRODUCTO --- */
        .product-content {
            padding: 20px;
        }
        
        .product-title {
            font-size: 1.4rem;
            color: #2d3436;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-ingredients {
            color: #636e72;
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .product-ingredients ul {
            padding-left: 20px;
            margin-top: 8px;
        }
        
        .product-ingredients li {
            margin-bottom: 4px;
        }
        
        /* --- CONTROLES DEL PRODUCTO --- */
        .product-controls {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a5632;
        }
        
        .price span {
            font-size: 0.9rem;
            color: #636e72;
            font-weight: normal;
        }
        
        /* --- COMBO OPTION --- */
        .combo-option {
            margin: 15px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 2px solid #e9ecef;
            transition: all 0.3s;
        }
        
        .combo-option:hover {
            border-color: #1a5632;
            background: #f1f8e9;
        }
        
        .combo-option label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: #2d3436;
        }
        
        .combo-option input[type="checkbox"] {
            margin-right: 10px;
            width: 20px;
            height: 20px;
            accent-color: #1a5632;
        }
        
        .combo-price {
            color: #1a5632;
            font-weight: bold;
            margin-left: auto;
        }
        
        /* --- COMENTARIOS --- */
        .comments-section {
            margin-top: 15px;
        }
        
        .comments-section label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2d3436;
        }
        
        .comments-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.9rem;
            resize: vertical;
            min-height: 60px;
            transition: border-color 0.3s;
        }
        
        .comments-input:focus {
            outline: none;
            border-color: #1a5632;
            box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
        }
        
        .comment-examples {
            font-size: 0.8rem;
            color: #636e72;
            margin-top: 5px;
        }
        
        /* --- SECCIÓN DE EXTRAS --- */
        .extras-section {
            margin: 20px 0;
        }
        
        .extra-category {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        
        .extra-category:hover {
            border-color: #d1e7dd;
        }
        
        .extra-category-header {
            background: #f8f9fa;
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .extra-category-header:hover {
            background: #e9ecef;
        }
        
        .extra-category-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: #2d3436;
        }
        
        .extra-icon {
            font-size: 1.2rem;
        }
        
        .extra-price {
            color: #1a5632;
            font-weight: 700;
            margin-left: auto;
            margin-right: 15px;
        }
        
        .extra-caret {
            color: #636e72;
        }
        
        .extra-category-content {
            padding: 20px;
            background: white;
        }
        
        .extra-category-image {
            text-align: center;
            margin-bottom: 15px;
        }
        
        .extra-image {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #e9ecef;
        }
        
        /* --- CONTROLES DE EXTRAS SIMPLES --- */
        .extra-simple-control {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }
        
        .extra-simple-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        /* --- CONTROLES DE SELECCIÓN ÚNICA --- */
        .extra-single-control {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .extra-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .extra-option {
            display: flex;
            align-items: center;
            padding: 8px 0;
        }
        
        .extra-option label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            flex: 1;
        }
        
        .option-price {
            color: #1a5632;
            font-weight: 600;
            margin-left: auto;
        }
        
        .extra-quantity-control {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        /* --- CONTROLES DE SELECCIÓN MÚLTIPLE --- */
        .extra-multiple-control {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .extra-options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .extra-option-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px;
            border: 1px solid #e9ecef;
            border-radius: 5px;
            transition: border-color 0.3s;
        }
        
        .extra-option-item:hover {
            border-color: #d1e7dd;
        }
        
        .extra-option-checkbox {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .extra-option-quantity {
            display: flex;
            align-items: center;
            gap: 5px;
            margin: 0 10px;
        }
        
        .extra-option-price {
            color: #1a5632;
            font-weight: 600;
            min-width: 60px;
            text-align: right;
        }
        
        /* --- CANTIDAD Y TOTALES --- */
        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .quantity-btn {
            width: 30px;
            height: 30px;
            border: none;
            background: #f8f9fa;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            color: #333;
            transition: all 0.3s;
        }
        
        .quantity-btn:hover {
            background: #e9ecef;
        }
        
        .quantity-btn.small {
            width: 25px;
            height: 25px;
            font-size: 0.8rem;
        }
        
        .quantity-input {
            width: 50px;
            text-align: center;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        
        .quantity-input.small {
            width: 40px;
            font-size: 0.8rem;
        }
        
        .extra-total {
            color: #1a5632;
            font-weight: 700;
            font-size: 1.1rem;
            min-width: 80px;
            text-align: right;
        }
        
        .extra-category-summary {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .summary-text {
            font-size: 0.9rem;
            color: #636e72;
            font-style: italic;
        }
        
        /* --- BOTÓN AGREGAR --- */
        .add-to-cart-btn {
            width: 100%;
            background: linear-gradient(90deg, #1a5632, #2e7d32);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .add-to-cart-btn:hover {
            background: linear-gradient(90deg, #2e7d32, #1a5632);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 86, 50, 0.3);
        }
        
        .add-to-cart-btn i {
            margin-right: 10px;
        }
        
        /* --- CARRITO FLOTANTE --- */
        .cart {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #1a5632, #2e7d32);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            animation: bounce 3s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .cart:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }
        
        .cart i {
            font-size: 1.8rem;
        }
        
        .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ffd700;
            color: #2d3436;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        /* --- MODAL DEL CARRITO --- */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            animation: modalFadeIn 0.3s;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
        }
        
        .modal-header h2 {
            color: #2d3436;
            font-size: 1.8rem;
        }
        
        .close {
            font-size: 2rem;
            cursor: pointer;
            color: #636e72;
            transition: color 0.3s;
            line-height: 1;
        }
        
        .close:hover {
            color: #1a5632;
        }
        
        /* --- ITEMS DEL CARRITO --- */
        .cart-items {
            margin-bottom: 25px;
        }
        
        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 20px;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s;
        }
        
        .cart-item:hover {
            background-color: #f8f9fa;
        }
        
        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 20px;
        }
        
        .cart-item-info {
            flex-grow: 1;
        }
        
        .cart-item-title {
            font-weight: 700;
            color: #2d3436;
            margin-bottom: 5px;
        }
        
        .cart-item-details {
            color: #636e72;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .cart-item-comments {
            color: #1a5632;
            font-size: 0.85rem;
            font-style: italic;
            margin-top: 5px;
        }
        
        .cart-item-price {
            font-weight: 700;
            color: #1a5632;
            font-size: 1.2rem;
            min-width: 100px;
            text-align: right;
        }
        
        .cart-item-remove {
            background: none;
            border: none;
            color: #ff6b6b;
            cursor: pointer;
            font-size: 1.2rem;
            margin-left: 15px;
            transition: color 0.3s;
        }
        
        .cart-item-remove:hover {
            color: #ff5252;
        }
        
        .empty-cart {
            text-align: center;
            padding: 40px;
            color: #636e72;
            font-size: 1.1rem;
        }
        
        /* --- TOTALES Y ACCIONES --- */
        .cart-totals {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 15px;
            margin-top: 20px;
        }
        
        .total-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .total-row.final {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3436;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid #eee;
        }
        
        .shipping-info {
            background: #e8f5e9;
            padding: 10px 15px;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 0.9rem;
            color: #1a5632;
            border-left: 4px solid #1a5632;
        }
        
        .shipping-info i {
            margin-right: 8px;
        }
        
        .cart-actions {
            margin-top: 25px;
            display: flex;
            justify-content: space-between;
            gap: 15px;
        }
        
        .cart-btn {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cart-btn.continue {
            background: #e9ecef;
            color: #2d3436;
        }
        
        .cart-btn.continue:hover {
            background: #dee2e6;
        }
        
        .cart-btn.checkout {
            background: linear-gradient(90deg, #1a5632, #2e7d32);
            color: white;
        }
        
        .cart-btn.checkout:hover {
            background: linear-gradient(90deg, #2e7d32, #1a5632);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 86, 50, 0.3);
        }
        
        /* --- FOOTER --- */
        footer {
            background: #2d3436;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
            text-align: center;
        }
        
        .contact-info {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
            color: #ffd700;
            font-size: 1.5rem;
        }
        
        .social-links {
            margin: 25px 0;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 15px;
            transition: color 0.3s;
            display: inline-block;
        }
        
        .social-links a:hover {
            color: #ffd700;
            transform: translateY(-3px);
        }
        
        .phone-number {
            font-size: 1.3rem;
            margin: 20px 0;
            color: #ffd700;
            font-weight: 700;
        }
        
        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .cart {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
            }
            
            .modal-content {
                padding: 20px;
                width: 95%;
            }
            
            .cart-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cart-item-image {
                width: 100%;
                height: 150px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cart-item-price {
                text-align: left;
                margin-top: 10px;
            }
            
            .cart-actions {
                flex-direction: column;
            }
            
            .extra-simple-control,
            .extra-quantity-control {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            
            .extra-options-grid {
                grid-template-columns: 1fr;
            }
            
            .extra-option-item {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            
            .extra-option-quantity {
                justify-content: center;
            }
            
            .quantity-controls {
                justify-content: center;
            }
            /* --- ESTILOS PARA SELECTORES DE COMBO --- */
            .combo-selectors {
                background: #f8f9fa;
                padding: 15px;
                border-radius: 10px;
                border: 2px solid #e9ecef;
                transition: all 0.3s;
            }
            
            .combo-selectors:hover {
                border-color: #d1e7dd;
            }
            
            .combo-selector-group {
                margin-bottom: 15px;
            }
            
            .combo-selector-group:last-child {
                margin-bottom: 0;
            }
            
            .combo-selector-group select {
                width: 100%;
                padding: 12px;
                border: 2px solid #e9ecef;
                border-radius: 8px;
                font-family: inherit;
                font-size: 0.95rem;
                background: white;
                cursor: pointer;
                transition: border-color 0.3s;
            }
            
            .combo-selector-group select:focus {
                outline: none;
                border-color: #1a5632;
                box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
            }
            
            .combo-selector-group optgroup {
                font-weight: 600;
                color: #2d3436;
                background: #f8f9fa;
            }
            
            .combo-selector-group option {
                padding: 8px;
                color: #636e72;
            }
            
            .combo-selector-group option:hover {
                background: #e9ecef;
            }
            
            /* --- ESTILOS PARA DETALLES DE COMBO EN CARRITO --- */
            .cart-item-details i {
                margin-right: 8px;
                color: #1a5632;
            }
            /* --- ESTILOS PARA FORMULARIO DE ENTREGA Y PAGO --- */
            .delivery-payment-form {
                background: #f8f9fa;
                padding: 25px;
                border-radius: 15px;
                border: 2px solid #e9ecef;
            }
            
            .form-section {
                margin-bottom: 25px;
                padding-bottom: 20px;
                border-bottom: 1px solid #eee;
            }
            
            .form-section:last-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }
            
            .delivery-option:hover, .payment-option:hover {
                border-color: #1a5632 !important;
                background-color: #f8f9fa !important;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            }
            
            .delivery-option input[type="radio"]:checked ~ div strong,
            .payment-option input[type="radio"]:checked ~ strong {
                color: #1a5632 !important;
            }
            
            .delivery-option input[type="radio"]:checked {
                border-color: #1a5632;
            }
            
            .location-btn:hover {
                background: #1a5632 !important;
                color: white !important;
                transform: translateY(-2px);
                box-shadow: 0 4px 10px rgba(26, 86, 50, 0.2);
            }
            
            /* --- ESTILOS PARA SELECTORES DE COMBO --- */
            .combo-selectors {
                background: #f8f9fa;
                padding: 15px;
                border-radius: 10px;
                border: 2px solid #e9ecef;
                transition: all 0.3s;
            }
            
            .combo-selectors:hover {
                border-color: #d1e7dd;
            }
            
            .combo-selector-group {
                margin-bottom: 15px;
            }
            
            .combo-selector-group:last-child {
                margin-bottom: 0;
            }
            
            .combo-selector-group select {
                width: 100%;
                padding: 12px;
                border: 2px solid #e9ecef;
                border-radius: 8px;
                font-family: inherit;
                font-size: 0.95rem;
                background: white;
                cursor: pointer;
                transition: border-color 0.3s;
            }
            
            .combo-selector-group select:focus {
                outline: none;
                border-color: #1a5632;
                box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
            }
            
            .combo-selector-group optgroup {
                font-weight: 600;
                color: #2d3436;
                background: #f8f9fa;
            }
            
            .combo-selector-group option {
                padding: 8px;
                color: #636e72;
            }
            
            .combo-selector-group option:hover {
                background: #e9ecef;
            }
            
            /* --- ESTILOS PARA DETALLES DE COMBO EN CARRITO --- */
            .cart-item-details i {
                margin-right: 8px;
                color: #1a5632;
            }
            
            /* --- RESPONSIVE PARA FORMULARIO --- */
            @media (max-width: 768px) {
                .delivery-payment-form {
                    padding: 15px;
                }
                
                .payment-options {
                    grid-template-columns: 1fr !important;
                }
                
                .delivery-options {
                    flex-direction: column !important;
                }
                
                .location-btn {
                    width: 100%;
                    justify-content: center;
                }
            }
        }