/* Mobile Hotel Listing Styles - Modern & Clean Design */

/* Mobile Search Summary Card - Redesigned */
.mobile-search-summary {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-search-summary-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.mobile-search-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.search-info {
    flex: 1;
    min-width: 0;
}

.search-location {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.search-dates {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.date-range {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkin-date {
    color: #059669;
    font-weight: 600;
    font-size: 14px;
}

.checkout-date {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
}

.night-count {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
}

.guest-details {
    background: #f8fafc;
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
}

.change-search-btn {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    min-width: 100px;
    justify-content: center;
    flex-shrink: 0;
}

.change-search-btn span {
    font-size: 13px;
    font-weight: 600;
}

.change-search-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.change-search-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.change-search-btn:hover i {
    transform: translateY(-1px);
}

/* Mobile Search Modal - Enhanced */
.mobile-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-search-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-search-modal-content {
    background: white;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
}

.mobile-search-modal.active .mobile-search-modal-content {
    transform: translateY(0);
}

.mobile-search-modal-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 24px 24px 0 0;
}

.mobile-search-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.mobile-search-modal-close {
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-search-modal-close:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.mobile-search-modal-close i {
    font-size: 16px;
    color: #6b7280;
}

.mobile-search-modal-body {
    padding: 24px;
}

.mobile-search-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-search-modal-field {
    position: relative;
}

.mobile-search-modal-field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 18px;
    z-index: 2;
}

.mobile-search-modal-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-search-modal-input.guests-dropdown {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    cursor: pointer !important;
    background: #fff !important;
}

.mobile-search-modal-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.mobile-search-modal-submit {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    margin-top: 8px;
}

.mobile-search-modal-submit:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Guests Selection Modal - Enhanced */
.guests-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Hide modal on desktop screens - only show on mobile */
@media (min-width: 768px) {
    .guests-selection-modal {
        display: none !important;
    }
}

.guests-selection-modal.active {
    opacity: 1;
    visibility: visible;
}

.guests-selection-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.guests-selection-modal-content {
    background: white;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
}

.guests-selection-modal.active .guests-selection-modal-content {
    transform: translateY(0);
}

.guests-selection-modal-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 24px 24px 0 0;
}

.guests-selection-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.guests-selection-modal-close {
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guests-selection-modal-close:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.guests-selection-modal-close i {
    font-size: 16px;
    color: #6b7280;
}

.guests-selection-modal-body {
    padding: 24px;
}

.guest-selection-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
}

.guest-selection-row:last-child {
    border-bottom: none;
}

.guest-selection-info {
    flex: 1;
}

.guest-selection-label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.guest-selection-age {
    font-size: 14px;
    color: #6b7280;
}

.guest-selection-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guest-selection-btn {
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}

.guest-selection-btn:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.guest-selection-btn:active {
    transform: scale(0.95);
}

.guest-selection-count {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 24px;
    text-align: center;
}

.guest-selection-footer {
    padding: 20px 24px 24px 24px;
    border-top: 1px solid #f3f4f6;
    background: #f8fafc;
}

.guest-selection-confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.guest-selection-confirm-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}


/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-search-summary {
        padding: 12px;
    }
    
    .mobile-search-summary-card {
        padding: 16px;
        border-radius: 16px;
    }
    
    .search-location {
        font-size: 20px;
    }
    
    .search-dates {
        font-size: 14px;
    }
    
    .change-search-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 80px;
    }
}

/* Animation for smooth transitions */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Enhanced focus states */
.mobile-search-modal-input:focus,
.guest-selection-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    z-index: 1000;
    min-width: 120px;
    justify-content: center;
}

.mobile-filter-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.mobile-filter-btn i {
    font-size: 18px;
}

/* Mobile Filter Modal - Sağdan Kayarak Açılan */
.mobile-filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-filter-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-filter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-filter-modal-content {
    background: white;
    border-radius: 24px 0 0 24px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.mobile-filter-modal.active .mobile-filter-modal-content {
    transform: translateX(0);
}

.mobile-filter-modal-header {
    padding: 16px 20px 12px 20px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 24px 0 0 0;
    flex-shrink: 0;
}

.mobile-filter-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.mobile-filter-modal-close {
    background: #f3f4f6;
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-filter-modal-close:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.mobile-filter-modal-close i {
    font-size: 16px;
    color: #6b7280;
}

.mobile-filter-modal-body {
    padding: 16px 20px;
    flex: 1;
    overflow-y: auto;
}

.mobile-filter-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.mobile-filter-section {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
}

.mobile-filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-filter-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-filter-search {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.mobile-filter-search:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mobile-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 6px;
}

.mobile-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    position: relative;
}

.mobile-filter-option:hover {
    background: #f8fafc;
    transform: translateX(2px);
}

.mobile-filter-option:has(input:checked) {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 2px 0;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.mobile-filter-option:has(input:checked) .mobile-filter-label {
    color: #1e40af;
    font-weight: 600;
}

.mobile-filter-option:has(input:checked)::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.6;
}

.mobile-filter-option input[type="checkbox"],
.mobile-filter-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    transition: all 0.2s ease;
}

.mobile-filter-option input[type="checkbox"]:checked,
.mobile-filter-option input[type="radio"]:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.mobile-filter-option input[type="radio"] {
    border-radius: 50%;
}

.mobile-filter-option input[type="radio"]:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.mobile-filter-label {
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}

.mobile-filter-label i {
    font-size: 12px;
}

.mobile-filter-actions {
    display: flex;
    gap: 10px;
    padding: 16px 0 0 0;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
    flex-shrink: 0;
}

.mobile-filter-clear-btn {
    flex: 1;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filter-clear-btn:hover {
    background: #e5e7eb;
    color: #374151;
    transform: translateY(-1px);
}

.mobile-filter-apply-btn {
    flex: 2;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.mobile-filter-apply-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-filter-apply-btn:active {
    transform: translateY(0);
}

/* Custom scrollbar for filter options */
.mobile-filter-options::-webkit-scrollbar {
    width: 4px;
}

.mobile-filter-options::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.mobile-filter-options::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.mobile-filter-options::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive adjustments for mobile filter */
@media (max-width: 480px) {
    .mobile-filter-modal-content {
        max-width: 100%;
        border-radius: 24px 0 0 0;
    }
    
    .mobile-filter-modal-header {
        padding: 14px 16px 10px 16px;
    }
    
    .mobile-filter-modal-body {
        padding: 14px 16px;
    }
    
    .mobile-filter-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 14px;
        min-width: 90px;
    }
    
    .mobile-filter-actions {
        flex-direction: column;
        gap: 10px;
        padding: 12px 0 0 0;
    }
    
    .mobile-filter-clear-btn,
    .mobile-filter-apply-btn {
        flex: 1;
        width: 100%;
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .mobile-filter-section-title {
        font-size: 15px;
        margin: 0 0 8px 0;
    }
    
    .mobile-filter-options {
        gap: 6px;
        max-height: 160px;
    }
    
    .mobile-filter-option {
        padding: 4px 0;
        gap: 8px;
    }
    
    .mobile-filter-option:has(input:checked) {
        padding: 6px 10px;
        margin: 1px 0;
    }
    
    .mobile-filter-label {
        font-size: 12px;
    }
}

/* Animation for smooth slide-in from right */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Enhanced focus states for mobile filter */
.mobile-filter-option:focus-within {
    background: #f0f9ff;
    border-radius: 8px;
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Smooth transition for checked state */
.mobile-filter-option {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-filter-option:has(input:checked) {
    animation: selectPulse 0.3s ease-out;
}

@keyframes selectPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Hotel Cards - Modern & Creative Design */
.mobile-hotel-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mobile-hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mobile-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mobile-hotel-card:hover .mobile-hotel-image img {
    transform: scale(1.05);
}

.mobile-hotel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
}

.mobile-hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #ffa654;
    font-size: 12px;
}

.rating-score {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.mobile-hotel-fav {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-hotel-fav:hover {
    background: rgba(231, 76, 60, 0.1);
    transform: scale(1.1);
}

.mobile-hotel-fav i {
    color: #e74c3c;
    font-size: 16px;
}

.mobile-hotel-content {
    padding: 20px;
}

.mobile-hotel-header {
    margin-bottom: 12px;
}

.mobile-hotel-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-hotel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-hotel-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.mobile-hotel-location i {
    font-size: 12px;
    color: #3b82f6;
}

.mobile-hotel-description {
    margin-bottom: 16px;
}

.mobile-hotel-description p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-hotel-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-hotel-nights,
.mobile-hotel-guests {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.mobile-hotel-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-currency {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.mobile-hotel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    width: 100%;
}

.mobile-hotel-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: white;
    text-decoration: none;
}

.mobile-hotel-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-hotel-btn:hover i {
    transform: translateX(2px);
}

/* Mobile Hotel Cards Responsive */
@media (max-width: 480px) {
    .mobile-hotel-card {
        margin-bottom: 16px;
        border-radius: 16px;
    }
    
    .mobile-hotel-image {
        height: 180px;
    }
    
    .mobile-hotel-content {
        padding: 16px;
    }
    
    .mobile-hotel-name {
        font-size: 16px;
    }
    
    .mobile-hotel-description p {
        font-size: 13px;
    }
    
    .price-amount {
        font-size: 18px;
    }
    
    .mobile-hotel-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .mobile-hotel-overlay {
        padding: 12px;
    }
    
    .mobile-hotel-rating {
        padding: 6px 10px;
    }
    
    .mobile-hotel-fav {
        width: 36px;
        height: 36px;
    }
}

/* Enhanced animations for mobile hotel cards */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-hotel-card {
    animation: cardSlideIn 0.6s ease-out;
}

.mobile-hotel-card:nth-child(1) { animation-delay: 0.1s; }
.mobile-hotel-card:nth-child(2) { animation-delay: 0.2s; }
.mobile-hotel-card:nth-child(3) { animation-delay: 0.3s; }
.mobile-hotel-card:nth-child(4) { animation-delay: 0.4s; }
.mobile-hotel-card:nth-child(5) { animation-delay: 0.5s; }

/* Lazy Loading Styles */
.hotels-lazy-container {
    min-height: 200px;
}

.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 16px;
    margin: 20px 0;
    min-height: 100px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

.end-results {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    margin: 20px 0;
    border: 1px solid #3b82f6;
}

.end-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.end-message i {
    font-size: 24px;
    color: #3b82f6;
}

.end-message p {
    font-size: 14px;
    color: #1e40af;
    font-weight: 600;
    margin: 0;
}

/* Lazy loaded animation */
.lazy-loaded {
    animation: slideInUp 0.6s ease-out;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive for lazy loading */
@media (max-width: 480px) {
    .loading-indicator {
        padding: 30px 16px;
        margin: 16px 0;
    }
    
    .spinner {
        width: 32px;
        height: 32px;
        border-width: 3px;
    }
    
    .loading-spinner p {
        font-size: 13px;
    }
    
    .end-results {
        padding: 30px 16px;
        margin: 16px 0;
    }
    
    .end-message i {
        font-size: 20px;
    }
    
    .end-message p {
        font-size: 13px;
    }
}

/* Improved accessibility */
@media (prefers-reduced-motion: reduce) {
    .mobile-search-summary-card,
    .change-search-btn,
    .mobile-search-modal-content,
    .guests-selection-modal-content,
    .mobile-filter-modal-content,
    .mobile-filter-btn,
    .mobile-hotel-card,
    .spinner,
    .lazy-loaded {
        transition: none;
        animation: none;
    }
}