/* ============================================
   THELINKS KENYA - UNIFIED COLOR SCHEME
   Primary: #E13939 | Dark: #b71c1c | Light: #fff5f5
   ============================================ */

:root {
    --primary: #E13939;
    --primary-dark: #b71c1c;
    --primary-light: #fff5f5;
    --primary-gradient: linear-gradient(135deg, #E13939 0%, #b71c1c 100%);
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-muted: #999999;
    --white: #ffffff;
    --bg-light: #F7F7F7;
    --border: #DDDDDD;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.15);
    --success: #2E7D32;
    --warning: #F57C00;
    --error: #D32F2F;
    --accent: #FF6B6B;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --footer-bg: #1a1a1a;
    --footer-text: #999999;
    --footer-border: #333333;
    --icon-gray: #6B7280;
    --icon-hover: #E13939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    background: var(--white);
}

/* ===== FULL WIDTH NAVIGATION ===== */
.nav-container {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.navbar {
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Only text, no icon, full primary color */
.logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    font-weight: 400;
    color: var(--primary);
    opacity: 0.7;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.host-btn {
    background: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.host-btn:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.login-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* User Profile Styles */
.user-profile {
    display: none;
    position: relative;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.user-profile.visible {
    display: flex;
}

.user-profile:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.user-avatar-initial {
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.user-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.user-profile .fa-chevron-down {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

/* User Dropdown - Gray Icons */
.user-dropdown {
    display: none;
    position: fixed;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    z-index: 1001;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease;
}

.user-dropdown.active {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-info {
    flex: 1;
}

.dropdown-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.dropdown-email {
    font-size: 0.7rem;
    color: var(--text-muted);
    word-break: break-all;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.3rem 0;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.user-dropdown a:hover {
    background: var(--bg-light);
}

/* Gray icons in user dropdown */
.user-dropdown a i {
    width: 20px;
    color: var(--icon-gray);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.user-dropdown a:hover i {
    color: var(--icon-hover);
}

/* Mobile Menu - Gray Hamburger */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--icon-gray);
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--icon-hover);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-muted);
}

.mobile-menu-links {
    padding: 1rem 0;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background: var(--primary-light);
}

/* Gray icons in mobile menu */
.mobile-link i {
    width: 24px;
    color: var(--icon-gray);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-link:hover i {
    color: var(--icon-hover);
}

.mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.host-link-mobile {
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    margin: 0.5rem 1rem;
    width: auto;
    justify-content: center;
}

.host-link-mobile i {
    color: var(--white) !important;
}

.host-link-mobile:hover i {
    color: var(--white) !important;
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.6s ease;
}

.hero p {
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SEARCH BAR ===== */
.search-container {
    max-width: 1100px;
    margin: -2rem auto 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.search-form {
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0.5rem;
    border: 1px solid var(--border);
}

.search-group {
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.search-group:hover {
    background: var(--bg-light);
}

.search-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.search-label i {
    color: var(--icon-gray);
    font-size: 0.7rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
    background: transparent;
    padding-right: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.3s ease;
}

.search-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

/* When input has a value */
.search-input.has-value {
    color: var(--text-secondary);
    font-weight: 500;
}

.dropdown-arrow {
    position: absolute;
    right: 0;
    color: var(--icon-gray);
    font-size: 0.8rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.search-group:hover .dropdown-arrow {
    color: var(--icon-hover);
    transform: translateY(2px);
}

/* Mobile Date Display - below DATES label */
.mobile-date-display {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
    font-weight: 500;
    display: none;
}

.mobile-date-display.visible {
    display: none !important; /* Hidden on desktop by default */
}

.search-button {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 0 1.8rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-button:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.search-button i {
    color: var(--white);
}

/* ===== MODAL STYLES (Desktop) ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-container {
    background: var(--white);
    border-radius: 32px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInScale 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-header h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    background: var(--white);
}

/* ===== MOBILE BOTTOM SHEET STYLES (Only on mobile) ===== */
@media (max-width: 768px) {
    .modal {
        align-items: flex-end;
    }
    
    .modal-container {
        max-width: 100%;
        width: 100%;
        border-radius: 24px 24px 0 0;
        max-height: 90vh;
        height: 90vh;
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
        position: relative;
    }
    
    .modal-header::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: var(--border);
        border-radius: 2px;
    }
    
    .modal-content {
        padding: 1rem;
    }
}

/* ===== LOCATION PICKER STYLES ===== */
.location-search-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.location-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.location-search-input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
}

.location-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 40px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.location-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 57, 57, 0.1);
}

.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    margin-top: 0.5rem;
}

.location-suggestion-item {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.location-suggestion-item:last-child {
    border-bottom: none;
}

.location-suggestion-item:hover {
    background: var(--bg-light);
}

.location-suggestion-item div {
    flex: 1;
}

.location-suggestion-item strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.location-suggestion-item .hierarchy {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.no-suggestions {
    padding: 1rem;
    text-align: center;
    color: var(--text-muted);
}

.popular-locations-section,
.counties-section {
    margin-bottom: 1.5rem;
}

.popular-locations-section h4,
.counties-section h4 {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Popular Locations as Pills */
.popular-locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.popular-location-pill {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.popular-location-pill:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   COUNTIES - PLAIN TEXT WITH UNIFORM FONT
   ============================================ */

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.county-item {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: left;
    border: none;
    background: transparent;
    border-radius: 0;
}

.county-item:hover {
    color: var(--primary);
    background: transparent;
    transform: none;
    box-shadow: none;
}

.county-item span {
    font-size: 0.85rem;
    font-weight: 400;
}

.county-item i {
    display: none;
}

/* ===== ROOM TYPE PICKER STYLES ===== */
.room-types-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.room-type-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.room-type-item:hover {
    background: var(--bg-light);
    border-color: var(--border);
}

.room-type-item.selected {
    background: var(--primary-light);
    border-color: var(--primary);
}

.room-type-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.room-type-item.selected .room-type-label {
    color: var(--primary);
}

.room-type-item .check-icon {
    color: var(--primary);
    font-size: 18px;
}

/* ===== DATE PICKER STYLES ===== */
.date-picker-calendars {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.calendar-month {
    flex: 1;
    min-width: 260px;
}

.calendar-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-view-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.calendar-arrows {
    display: flex;
    gap: 0.5rem;
}

.calendar-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-arrow-btn:hover {
    background: var(--bg-light);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--bg-light);
}

.calendar-day.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.selected-start {
    background: var(--primary);
    color: white;
}

.calendar-day.selected-end {
    background: var(--primary);
    color: white;
}

.calendar-day.in-range {
    background: var(--primary-light);
    border-radius: 0;
}

.calendar-day.today {
    border: 2px solid var(--primary);
    font-weight: 700;
}

.selected-dates-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 40px;
    margin-top: 1.5rem;
}

.selected-dates-info .checkin-date,
.selected-dates-info .checkout-date {
    font-weight: 600;
    font-size: 0.85rem;
}

.selected-dates-info .checkin-date.has-date,
.selected-dates-info .checkout-date.has-date {
    color: var(--primary);
}

.selected-dates-info .date-arrow {
    color: var(--text-muted);
}

/* ===== BUTTON STYLES ===== */
.clear-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.clear-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.apply-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    flex: 1;
}

.apply-btn:hover {
    background: var(--primary-dark);
}

.nights-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 40px;
}

.footer-buttons {
    display: flex;
    gap: 0.75rem;
    flex: 2;
}

/* ============================================
   PROPERTY IMAGE WITH BLUR-UP EFFECT
   ============================================ */

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.property-card {
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: #f0f0f0;
}

.property-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
}

.property-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
    transition: opacity 0.3s ease;
    opacity: 1;
    will-change: transform, opacity;
}

.property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 0.3s ease;
    opacity: 0;
    will-change: opacity, transform;
}

.property-image.loaded {
    opacity: 1;
}

.property-image.loaded + .property-image-shimmer,
.property-image.loaded ~ .property-image-placeholder {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.property-image-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-image:not(.loaded) + .property-image-shimmer {
    opacity: 1;
}

.property-image.error + .property-image-shimmer {
    opacity: 0;
}

.property-image.error {
    opacity: 1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-image.error::after {
    content: '🏠';
    font-size: 3rem;
    opacity: 0.3;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.property-card:hover .property-image {
    transform: scale(1.03);
}

/* ============================================
   PROPERTY INFO - AIRBNB STYLE
   ============================================ */

.property-info {
    padding: 0.75rem 0.5rem 0.5rem;
}

.property-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    text-transform: capitalize;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-top: 0.1rem;
}

.property-price span {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.property-card:hover .property-title {
    color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .property-info {
        padding: 0.6rem 0.4rem 0.4rem;
    }
    
    .property-title {
        font-size: 0.85rem;
    }
    
    .property-location {
        font-size: 0.7rem;
    }
    
    .property-price {
        font-size: 0.8rem;
    }
    
    .property-price span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .property-info {
        padding: 0.5rem 0.3rem 0.3rem;
    }
    
    .property-title {
        font-size: 0.8rem;
    }
    
    .property-location {
        font-size: 0.65rem;
    }
    
    .property-price {
        font-size: 0.75rem;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 0.6rem 0.5rem 0.8rem;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    height: 64px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 0.5rem;
    min-width: 50px;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    color: var(--icon-gray);
    transition: color 0.3s ease;
}

.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item.active i {
    color: var(--primary);
}

.mobile-nav-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-nav-item:hover i {
    color: var(--primary);
}

.mobile-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-nav-item .mobile-avatar {
    margin-bottom: 0;
}

/* ============================================
   ACCOUNT BOTTOM SHEET
   ============================================ */

#accountSheet {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: flex-end;
    justify-content: center;
}

#accountSheet.active {
    display: flex;
}

#accountSheet .bottomsheet-container {
    background: var(--white);
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
    padding-bottom: env(safe-area-inset-bottom, 20px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#accountSheet .bottomsheet-handle {
    width: 40px;
    height: 4px;
    background: var(--border-dark);
    border-radius: 4px;
    margin: 8px auto 0;
}

.account-sheet-header {
    padding: 20px 24px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.account-avatar-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.account-user-info {
    flex: 1;
}

.account-user-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.account-user-email {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
    word-break: break-all;
}

.account-sheet-divider {
    height: 1px;
    background: var(--border);
    margin: 0 16px;
}

.account-sheet-menu {
    padding: 8px 0;
}

.account-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
    border-radius: 12px;
    margin: 0 8px;
}

.account-menu-item:hover {
    background: var(--bg-light);
}

.account-menu-item i {
    width: 20px;
    color: var(--icon-gray);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.account-menu-item:hover i {
    color: var(--icon-hover);
}

.account-menu-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.account-menu-item.account-signout {
    color: var(--error);
}

.account-menu-item.account-signout i {
    color: var(--error);
}

.account-menu-item.account-signout:hover {
    background: #FFEBEE;
}

.account-menu-item.account-signout:hover i {
    color: var(--error);
}

/* Hide account sheet on desktop */
@media (min-width: 769px) {
    #accountSheet {
        display: none !important;
    }
    
    #accountSheet.active {
        display: none !important;
    }
}

/* Mobile specific */
@media (max-width: 768px) {
    #accountSheet .bottomsheet-container {
        padding-bottom: env(safe-area-inset-bottom, 30px);
    }
    
    .account-sheet-header {
        padding: 16px 20px 12px;
    }
    
    .account-avatar-large {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .account-user-name {
        font-size: 0.9rem;
    }
    
    .account-user-email {
        font-size: 0.7rem;
    }
    
    .account-menu-item {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    #accountSheet .bottomsheet-container {
        max-height: 90vh;
    }
    
    .account-avatar-large {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .account-user-name {
        font-size: 0.8rem;
    }
    
    .account-user-email {
        font-size: 0.65rem;
    }
    
    .account-menu-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .account-menu-item i {
        font-size: 0.8rem;
        width: 16px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-links,
    .user-menu .host-btn,
    .user-menu .login-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-bottom-nav {
        display: flex !important;
    }
    
    body {
        padding-bottom: 75px;
    }
    
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .search-container {
        margin: -1.5rem auto 1.5rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    
    .search-group {
        padding: 0.6rem 1rem;
    }
    
    .search-button {
        padding: 0.8rem;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .user-profile .user-name,
    .user-profile .fa-chevron-down {
        display: none;
    }
    
    .user-profile {
        padding: 0.2rem;
    }
    
    .user-avatar-initial {
        width: 38px;
        height: 38px;
    }
    
    .user-dropdown {
        min-width: 260px;
        right: 10px;
        left: auto !important;
    }
    
    .date-picker-calendars {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .calendar-month {
        min-width: 100%;
    }
    
    .popular-locations-grid {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .popular-location-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .counties-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.3rem;
        padding: 0.15rem 0;
        max-height: none;
        overflow-y: auto;
    }
    
    .county-item {
        padding: 0.3rem 0.2rem;
        font-size: 0.7rem;
    }
    
    .county-item span {
        font-size: 0.7rem;
    }
    
    .mobile-date-display {
        font-size: 0.65rem;
        display: none;
    }
    
    .modal-footer {
        flex-direction: row !important;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .modal-footer .footer-buttons {
        display: flex;
        flex-direction: row !important;
        gap: 0.75rem;
        flex: 1;
    }
    
    .modal-footer .clear-btn,
    .modal-footer .apply-btn {
        flex: 1;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .modal-footer .nights-info {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        flex-shrink: 0;
    }
    
    .account-sheet-header {
        padding: 16px 20px 12px;
    }
    
    .account-avatar-large {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .account-user-name {
        font-size: 0.9rem;
    }
    
    .account-user-email {
        font-size: 0.7rem;
    }
    
    .account-menu-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .account-menu-item i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-bottom-nav {
        padding: 0.4rem 0.25rem 0.6rem;
        height: 58px;
    }
    
    .mobile-nav-item {
        font-size: 0.55rem;
        min-width: 40px;
        padding: 0 0.25rem;
    }
    
    .mobile-nav-item i {
        font-size: 1rem;
    }
    
    .mobile-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
    
    .popular-location-pill {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .counties-grid {
        gap: 0.2rem;
    }
    
    .county-item {
        padding: 0.2rem 0.15rem;
        font-size: 0.6rem;
    }
    
    .county-item span {
        font-size: 0.6rem;
    }
    
    .mobile-date-display {
        font-size: 0.6rem;
    }
    
    .account-avatar-large {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .account-user-name {
        font-size: 0.8rem;
    }
    
    .account-user-email {
        font-size: 0.65rem;
    }
    
    .account-menu-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .account-menu-item i {
        font-size: 0.8rem;
        width: 16px;
    }
}

@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .user-dropdown {
        min-width: 300px;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: var(--primary-light);
    color: var(--primary);
}

/* Touch-friendly tap highlights for mobile */
@media (max-width: 768px) {
    .search-group,
    .county-item,
    .popular-location-pill,
    .room-type-item,
    .clear-btn,
    .apply-btn,
    .property-card,
    .mobile-nav-item,
    .account-menu-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(225, 57, 57, 0.1);
    }
    
    .search-group:active {
        background: var(--primary-light);
    }
}

/* Adjust padding for properties section */
.properties-section {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .properties-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .properties-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Hide user profile on mobile - only show on desktop */
@media (max-width: 768px) {
    .user-profile {
        display: none !important;
    }
    
    .login-btn {
        display: none !important;
    }
}

/* ============================================
   FOOTER - DESKTOP & MOBILE
   ============================================ */

.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 2rem 2rem;
    margin-top: 3rem;
    width: 100%;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section h4 span {
    font-weight: 400;
    color: var(--text-muted);
}

.footer-section p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--footer-text);
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: var(--footer-text);
    text-decoration: none;
    margin: 0.4rem 0;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--footer-text);
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--footer-border);
    font-size: 0.75rem;
    color: var(--footer-text);
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */

@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
        margin: 0.3rem 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        font-size: 0.7rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h4 {
        font-size: 0.8rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.7rem;
    }
    
    .social-links a {
        font-size: 1rem;
    }
    
    .copyright {
        font-size: 0.6rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .footer-section h4 {
        font-size: 0.7rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.65rem;
    }
}

/* ============================================
   MOBILE MENU - SIMPLIFIED
   ============================================ */

.mobile-menu-simple {
    padding: 1rem 0;
}

.mobile-menu-simple .mobile-link {
    padding: 0.8rem 1.2rem;
}

.mobile-user-section {
    padding: 0.5rem 0;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 0.5rem 1rem;
}

.mobile-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.mobile-user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.mobile-user-email {
    font-size: 0.7rem;
    color: var(--text-muted);
    word-break: break-all;
}

.mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 1rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    margin: 0;
}

.mobile-link:hover {
    background: var(--primary-light);
}

.mobile-link i {
    width: 24px;
    color: var(--icon-gray);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-link:hover i {
    color: var(--icon-hover);
}

.host-link-mobile {
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    margin: 0.5rem 1rem;
    width: auto;
    justify-content: center;
    padding: 0.8rem 1.2rem;
}

.host-link-mobile i {
    color: var(--white) !important;
}

.host-link-mobile:hover {
    background: var(--primary-dark);
}

.host-link-mobile:hover i {
    color: var(--white) !important;
}

/* ============================================
   LOGOUT CONFIRMATION MODAL
   ============================================ */

.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.logout-modal.active {
    display: flex;
}

.logout-modal-container {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 36px 28px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: logoutFadeIn 0.3s ease;
}

@keyframes logoutFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logout-modal .bottomsheet-handle {
    display: none;
    width: 40px;
    height: 4px;
    background: var(--border-dark);
    border-radius: 4px;
    margin: 0 auto 12px;
}

.logout-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.logout-modal-icon i {
    font-size: 28px;
    color: var(--primary);
}

.logout-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.logout-modal-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.logout-modal-buttons {
    display: flex;
    gap: 12px;
}

.logout-btn-cancel,
.logout-btn-confirm {
    flex: 1;
    padding: 12px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.logout-btn-cancel {
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.logout-btn-cancel:hover {
    background: var(--border);
    border-color: var(--text-muted);
}

.logout-btn-confirm {
    background: var(--primary);
    color: white;
}

.logout-btn-confirm:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 57, 57, 0.3);
}

.logout-btn-cancel:active,
.logout-btn-confirm:active {
    transform: scale(0.97);
}

/* ============================================
   LOGOUT AS BOTTOM SHEET ON MOBILE
   ============================================ */

@media (max-width: 768px) {
    .logout-modal {
        align-items: flex-end;
    }
    
    .logout-modal-container {
        max-width: 100%;
        width: 100%;
        border-radius: 24px 24px 0 0;
        padding: 16px 24px 24px;
        animation: logoutSlideUp 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .logout-modal .bottomsheet-handle {
        display: block;
    }
    
    @keyframes logoutSlideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .logout-modal-icon {
        width: 56px;
        height: 56px;
        margin: 8px auto 12px;
    }
    
    .logout-modal-icon i {
        font-size: 24px;
    }
    
    .logout-modal-title {
        font-size: 1.1rem;
    }
    
    .logout-modal-message {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .logout-modal-buttons {
        flex-direction: row !important;
        gap: 10px;
    }
    
    .logout-btn-cancel,
    .logout-btn-confirm {
        flex: 1;
        padding: 12px 16px;
        font-size: 0.85rem;
        min-width: 0;
    }
    
    .logout-btn-cancel {
        order: 1;
    }
    
    .logout-btn-confirm {
        order: 2;
    }
}

@media (max-width: 480px) {
    .logout-modal-container {
        padding: 12px 16px 20px;
    }
    
    .logout-modal-icon {
        width: 48px;
        height: 48px;
    }
    
    .logout-modal-icon i {
        font-size: 20px;
    }
    
    .logout-modal-title {
        font-size: 1rem;
    }
    
    .logout-modal-message {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .logout-modal-buttons {
        gap: 8px;
    }
    
    .logout-btn-cancel,
    .logout-btn-confirm {
        padding: 10px 12px;
        font-size: 0.8rem;
        border-radius: 30px;
    }
}

@media (max-width: 360px) {
    .logout-modal-buttons {
        gap: 6px;
    }
    
    .logout-btn-cancel,
    .logout-btn-confirm {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .logout-modal-container {
        background: #1a1a1a;
    }
    
    .logout-modal-title {
        color: #ffffff;
    }
    
    .logout-modal-message {
        color: #aaaaaa;
    }
    
    .logout-btn-cancel {
        background: #2a2a2a;
        color: #aaaaaa;
        border-color: #333333;
    }
    
    .logout-btn-cancel:hover {
        background: #333333;
    }
}
/* ============================================
   LOAD MORE & VIEW ALL BUTTONS
   ============================================ */

.load-more-container {
    text-align: center;
    padding: 2rem 0 3rem;
}

.load-more-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(225, 57, 57, 0.3);
}

.load-more-btn:active {
    transform: scale(0.97);
}

.load-more-btn i {
    margin-right: 0.5rem;
}

.view-all-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(225, 57, 57, 0.2);
}

.view-all-btn:active {
    transform: scale(0.97);
}

.view-all-btn i {
    margin-right: 0.5rem;
}

/* ============================================
   LOADING SPINNER FOR LOAD MORE
   ============================================ */

.load-more-container .loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================
   RESPONSIVE - LOAD MORE BUTTONS
   ============================================ */

@media (max-width: 768px) {
    .load-more-btn,
    .view-all-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 320px;
    }
    
    .load-more-container {
        padding: 1.5rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .load-more-btn,
    .view-all-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        max-width: 280px;
    }
}