/* 
 * QloHotelOtherCities - Estilos adicionales
 * Booking.com inspired design
 */

/* ========== GENERAL STYLES ========== */
.other-cities-module {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ========== SMOOTH TRANSITIONS ========== */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== BUTTONS ========== */
.btn-booking {
    background: linear-gradient(135deg, #0071c2 0%, #005fa3 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 113, 194, 0.25);
    transition: all 0.3s ease;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 113, 194, 0.35);
    color: white;
}

.btn-booking:active {
    transform: translateY(0);
}

/* ========== BADGES ========== */
.badge-location {
    background: rgba(0, 53, 128, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

/* ========== LOADING STATES ========== */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========== HOVER EFFECTS ========== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========== RESPONSIVE UTILITIES ========== */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .desktop-hidden {
        display: none !important;
    }
}

/* ========== CUSTOM SCROLLBAR ========== */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #0071c2;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #005fa3;
}

/* ========== ACCESSIBILITY ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== FOCUS STATES ========== */
*:focus {
    outline: 2px solid #0071c2;
    outline-offset: 2px;
}

button:focus {
    outline: 2px solid #0071c2;
    outline-offset: 2px;
}
