/* ================================================
   PREMIUM HOUSE RENTALS STYLES
   Matching Hotel Page Design System
   ================================================ */

/* CSS Variables for Rentals Page - Map to main styles.css */
:root {
    /* Surface Colors */
    --color-surface: var(--light-bg, #ffffff);
    --color-surface-elevated: var(--light-bg, #ffffff);
    --color-surface-secondary: var(--light-bg-secondary, #f8f9fa);
    
    /* Text Colors */
    --color-text: var(--light-text, #1a1a1a);
    --color-text-secondary: var(--light-text-secondary, #5c5c5c);
    --color-text-muted: var(--light-text-muted, #8c8c8c);
    
    /* Primary/Accent Colors */
    --color-primary: var(--accent-gold, #c9a227);
    --color-primary-dark: #b8960c;
    --color-primary-light: var(--accent-gold-light, #dbb83a);
    
    /* Border Colors */
    --color-border: var(--light-border, #e5e7eb);
    --color-border-light: rgba(0, 0, 0, 0.06);
    
    /* Shadow Colors */
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-lg: rgba(0, 0, 0, 0.15);
    
    /* Status Colors */
    --color-success: var(--accent-success, #00a650);
    --color-error: #ef4444;
    --color-warning: #f59e0b;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --color-surface: var(--dark-bg, #0a0a0a);
    --color-surface-elevated: var(--dark-bg-elevated, #141414);
    --color-surface-secondary: var(--dark-bg-card, #1a1a1a);
    --color-text: var(--dark-text, #ffffff);
    --color-text-secondary: var(--dark-text-secondary, rgba(255, 255, 255, 0.6));
    --color-text-muted: var(--dark-text-muted, rgba(255, 255, 255, 0.35));
    --color-border: var(--dark-border, rgba(255, 255, 255, 0.08));
    --color-shadow: rgba(0, 0, 0, 0.3);
    --color-shadow-lg: rgba(0, 0, 0, 0.5);
}

/* ================================================
   RENTALS HERO SECTION
   ================================================ */
.rentals-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.rentals-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.rentals-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.rentals-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.rentals-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ================================================
   SEARCH BAR
   ================================================ */
.rentals-search-container {
    max-width: 900px;
    margin: 0 auto;
}

.rentals-search-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 0.5rem;
    gap: 0.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border-radius: 12px;
    flex: 1;
    min-width: 180px;
    transition: background 0.2s;
}

.search-field:hover {
    background: rgba(0, 0, 0, 0.04);
}

.search-field svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold, #c9a227);
    flex-shrink: 0;
}

.search-field input,
.search-field select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #1a1a1a;
    width: 100%;
    outline: none;
    font-family: inherit;
}

.search-field input::placeholder {
    color: #888;
}

.search-field select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.btn-search-rentals {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-gold, #c9a227);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search-rentals:hover {
    background: var(--accent-gold-light, #dbb83a);
    transform: translateY(-2px);
}

.btn-search-rentals svg {
    width: 20px;
    height: 20px;
}

.btn-advanced-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-advanced-filters:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-advanced-filters svg {
    width: 18px;
    height: 18px;
}

/* ================================================
   CATEGORY PILLS
   ================================================ */
.category-pills {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.category-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.category-pill.active {
    background: var(--accent-gold, #c9a227);
    border-color: var(--accent-gold, #c9a227);
    color: #0a0a0a;
}

.category-pill svg {
    width: 18px;
    height: 18px;
}

/* ================================================
   ADVANCED FILTERS PANEL
   ================================================ */
.advanced-filters-panel {
    display: none;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}

.advanced-filters-panel.active {
    display: block;
}

.filters-panel-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================================
   RESULTS SECTION
   ================================================ */
.rentals-results {
    background: var(--color-surface-secondary, #f8f9fa);
    padding: 3rem 0;
    min-height: 60vh;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.results-count {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.results-sort label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.results-sort select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 0.9rem;
    cursor: pointer;
}

/* Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Map Container */
.results-map {
    position: sticky;
    top: 100px;
    height: calc(100vh - 150px);
    border-radius: 16px;
    overflow: hidden;
    background: #e5e5e5;
}

#rentalsMap {
    width: 100%;
    height: 100%;
}

/* ================================================
   RENTALS NAV OVERRIDES
   ================================================ */
.rentals-nav {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.rentals-nav .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rentals-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.rentals-nav .nav-link:hover,
.rentals-nav .nav-link.active {
    color: #ffffff;
}

.rentals-nav .nav-logo-text {
    color: #ffffff;
    font-family: var(--font-display, serif);
    font-size: 1.5rem;
}

.rentals-nav .nav-logo-icon svg {
    fill: var(--accent-gold, #c9a227);
}

.btn-add-property {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--accent-gold, #c9a227);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-property:hover {
    background: var(--accent-gold-light, #dbb83a);
}

.btn-add-property svg {
    width: 18px;
    height: 18px;
}

/* List Property CTA Button */
.list-property-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-list-property {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-list-property:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-list-property svg {
    transition: transform 0.3s ease;
}

.btn-list-property:hover svg {
    transform: rotate(90deg);
}

/* Property Cards - Matching Hotel Card Design */
.listing-card {
    background: var(--color-surface-elevated);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--color-shadow);
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--color-shadow-lg);
    border-color: var(--color-primary);
}

.listing-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.listing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.listing-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-header {
    margin-bottom: 1rem;
}

.listing-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.listing-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.listing-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

.spec-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.listing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.btn-view {
    padding: 0.6rem 1.25rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-secondary);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-secondary);
}

.no-results svg {
    opacity: 0.3;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

/* Authentication Modal */
.auth-modal {
    max-width: 480px;
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.auth-icon svg {
    color: white;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.auth-subtitle {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    background: var(--color-surface);
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.phone-prefix {
    font-weight: 600;
    color: var(--color-text-secondary);
    padding-right: 0.5rem;
    border-right: 2px solid var(--color-border);
}

.phone-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: var(--color-text);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.link-primary {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.link-primary:hover {
    text-decoration: underline;
}

/* List Property Modal */
.list-modal {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.list-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.list-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.list-subtitle {
    color: var(--color-text-secondary);
}

.list-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
}

.checkbox-label:hover {
    border-color: var(--color-primary);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: var(--color-primary);
    background: rgba(37, 99, 235, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--color-primary);
    font-weight: 600;
}

/* Phone Input Styling */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--color-primary);
    background: var(--color-surface-elevated);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-prefix {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
    flex-shrink: 0;
}

.phone-input-wrapper input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 1rem;
    flex: 1;
}

.phone-input-wrapper input:focus {
    outline: none;
}

/* Property Detail Modal */
.property-detail-modal {
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.property-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.property-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.property-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.property-detail-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.property-detail-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.property-detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.spec-card {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.spec-card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    color: var(--color-primary);
}

.spec-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.spec-card-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.property-detail-section {
    margin: 2rem 0;
}

.property-detail-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.property-description {
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--color-surface);
    border-radius: 12px;
}

.amenity-icon {
    width: 20px;
    height: 20px;
    color: var(--color-success);
}

.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
}

.btn-contact {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    color: var(--color-primary);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-auth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-auth.authenticated {
    background: var(--color-success);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rentals-hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .search-tabs {
        flex-direction: column;
    }

    .search-grid {
        grid-template-columns: 1fr;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .property-detail-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-hero-image {
        height: 250px;
    }

    .property-detail-title {
        font-size: 1.8rem;
    }

    .property-detail-price {
        font-size: 2rem;
    }

    .header-actions {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 100;
    }

    .btn-auth span {
        display: none;
    }

    .btn-auth {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: var(--color-success);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Message */
.error-message {
    background: var(--color-error);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.3s ease;
}
