.disabled{
    opacity: 0.5;
    pointer-events: none;
}
.plan-selection-card {
    background: #607D94;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: white;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.plan-title {
    font-family: 'GatterSans';
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.plan-status {
    font-family: 'GatterSans';
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
}


.plan-details {
    display: flex;
    flex-direction: column;
}

.plan-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-date svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.date-text {
    font-family: 'GatterSans';
    font-size: 14px;
    color: white;
}

.plan-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    width: 100%;
}

.price-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.price-text {
    font-family: 'GatterSans';
    font-size: 14px;
    font-weight: 400;
    color: white;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-top: 15px;
}

.quantity-btn {
    background: white;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 7px;
}
.quantity-btn:hover, .quantity-btn:focus {
    background-color: revert !important;
}


.quantity-btn svg {
    width: 20px;
    height: 20px;
    fill: #607D94;
}

.quantity {
    font-family: 'GatterSans';
    font-size: 20px;
    color: white;
    min-width: 30px;
    text-align: center;
    font-weight: 800;
}

/* Estilos para carrito en móvil */
@media screen and (max-width: 800px) {
    .boton-reserva-movil{
        display: block !important;
    }
    .cart-fullscreen-header{
        display: block !important;
    }
    /* Ocultar carrito por defecto */
    .contenedor-carrito:not(.cart-fullscreen) {
        display: none !important;
    }
    
    /* Estilos cuando el carrito está a pantalla completa */
    .cart-fullscreen {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        z-index: 10000 !important;
        background-color: #fff !important;
        overflow-y: auto !important;
        transform: none !important;
        transition: all 0.3s ease !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    /* Cabecera del carrito a pantalla completa */
    .cart-fullscreen-header {
        position: sticky;
        top: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        z-index: 10001;
        margin-bottom: 10px;
    }
    .cart-fullscreen .contenedor-boton-reservar {
        position: fixed;
        bottom: 50px;
        left: 5%;
        width: 90%;
    }
    
    /* Botón de cerrar en el carrito */
    .cart-close-button {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 5px 10px;
        color: #333;
    }
    
    /* Título del carrito */
    .cart-header-title {
        font-family: 'GatterSans', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin: 0;
    }
    
    /* Contenido del carrito */
    .cart-fullscreen .resumen-compra {
        padding: 15px !important;
    }
    
    /* Botón flotante para abrir el carrito */
    .floating-cart-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        background-color: #1FBF35; /* Color verde del botón reservar */
        color: white;
        border: none;
        border-radius: 5px;
        padding: 15px 30px;
        font-family: 'GatterSans', sans-serif;
        font-weight: 600;
        font-size: 16px;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ajustes para los elementos dentro del carrito a pantalla completa */
    .cart-fullscreen .gb-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 10px !important;
    }
    
    /* Ajustes para los botones dentro del carrito */
    .cart-fullscreen .btn-reservar {
        width: 100% !important;
        margin-bottom: 15px !important;
    }
}

/* Esconder botón flotante en escritorio */
@media screen and (min-width: 801px) {
    .floating-cart-button {
        display: none !important;
    }
} 