:root {
    --primary: #000000;
    --primary-dark: #333333;
    --primary-light: #666666;
    --surface: #ffffff;
    --background: #f7f7f7;
    --text: #222222;
    --text-light: #717171;
    --border: #dddddd;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.15);
}

/* COMPLETE FIX FOR HORIZONTAL SCROLL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.4;
    position: relative;
}

/* Force remove any horizontal overflow */
body {
    overflow-x: hidden !important;
    width: 100vw !important;
}

/* App Header - BLACK BACKGROUND */
.app-header {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom: none;
    width: 100%;
    max-width: 100%;
}

.header-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.875rem 1.25rem;
    min-width: 0;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-bar i {
    color: var(--primary);
    font-size: 1rem;
}

/* Search Section - Container below app bar */
.search-section {
    padding: 1.5rem 1rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.search-container {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border);
    margin: 0 auto;
}

.search-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
    width: 100%;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.form-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--surface);
    color: var(--text);
    width: 100%;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Guests Counter Styles - DIRECT IN FORM (NO DROPDOWN) */
.guests-counter-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.guest-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.guest-counter-info {
    flex: 1;
    min-width: 0;
}

.guest-counter-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.guest-counter-description {
    color: var(--text-light);
    font-size: 0.8rem;
}

.guest-counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    color: var(--text);
    flex-shrink: 0;
}

.counter-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: #F5F5F5;
}

.counter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--background);
}

.counter-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    font-size: 1rem;
    color: var(--text);
}

.search-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    box-sizing: border-box;
}

.search-btn:hover {
    background: var(--primary-dark);
}

/* NEW: Room Card Styles */
.room-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.room-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-card-image img {
    transform: scale(1.05);
}

.room-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    color: white;
}

.room-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.room-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.room-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.room-guests {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.view-room-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-room-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Room Detail Styles */
.room-detail-content {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.room-photos-section {
    margin-bottom: 2rem;
}

.main-photo-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-photos {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail-photo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.thumbnail-photo:hover {
    transform: scale(1.05);
}

.thumbnail-photo.active {
    border-color: var(--primary);
}

.thumbnail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.room-detail-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.room-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.room-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: var(--primary);
    width: 20px;
}

.meta-item span {
    color: var(--text);
    font-size: 0.9rem;
}

.room-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.amenity-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.amenity-item span {
    color: var(--text);
    font-size: 0.9rem;
}

/* Calendar Section in Room Detail */
.calendar-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.calendar-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.calendar-container {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    background: #f0fdf4;
    border-color: #10b981;
    color: #065f46;
}

.calendar-day.past {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #9ca3af;
    opacity: 0.6;
}

.calendar-day.booked {
    background: #fef2f2 !important;
    border-color: #ef4444 !important;
    color: #991b1b !important;
}

.calendar-day.maintenance {
    background: #fffbeb !important;
    border-color: #f59e0b !important;
    color: #92400e !important;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    font-size: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid;
}

.legend-color.available {
    background: #f0fdf4;
    border-color: #10b981;
}

.legend-color.booked {
    background: #fef2f2;
    border-color: #ef4444;
}

.legend-color.maintenance {
    background: #fffbeb;
    border-color: #f59e0b;
}

/* Book Room Button */
.book-room-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.book-room-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.book-room-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Rest of your existing CSS remains the same... */

/* Username Search Header Styles */
.search-container-header {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-bar-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.875rem 1.25rem;
    min-width: 0;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-input-header {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.search-input-header::placeholder {
    color: var(--text-light);
}

.search-bar-header i {
    color: var(--primary);
    font-size: 1rem;
}

/* Username Search Content */
.username-search-content {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.search-results-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

/* Username Search Grid Layout */
.users-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.user-grid-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 140px;
}

.user-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.user-grid-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.user-grid-avatar:hover {
    transform: scale(1.05);
}

.user-grid-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-grid-username {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
}

.user-grid-propertyname {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Recent Searches Grid */
.recent-searches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.recent-search-grid-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 140px;
}

.recent-search-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.recent-search-grid-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.recent-search-grid-avatar:hover {
    transform: scale(1.05);
}

.recent-search-grid-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-search-grid-username {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
}

.recent-search-grid-time {
    color: var(--text-light);
    font-size: 0.75rem;
}

.no-results, .no-recent-searches {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.no-results i, .no-recent-searches i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Compact Profile Header */
.profile-header-compact {
    background: white;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border);
    width: 100%;
    max-width: 100%;
}

.header-container-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
}

.back-btn-compact {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.back-btn-compact:hover {
    background: var(--background);
}

.header-center-compact {
    flex: 1;
    text-align: center;
    min-width: 0;
    padding: 0 0.5rem;
}

.profile-username-compact {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    margin: 0 auto;
}

/* Profile Content with Banner and Profile Picture */
.profile-content-container {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Rounded Banner Container */
.banner-container-rounded {
    width: 100%;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.banner-rounded {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--background);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.banner-rounded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-placeholder-rounded {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.banner-placeholder-rounded i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.banner-placeholder-rounded p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Profile Picture Container */
.profile-pic-container {
    display: flex;
    justify-content: center;
    margin: -50px 0 1rem 0;
    position: relative;
    z-index: 2;
}

.profile-pic-rounded {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow);
}

.profile-pic-rounded:hover {
    transform: scale(1.05);
}

.profile-pic-rounded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-pic-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Property Name Display */
.property-name-display {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.property-name-display h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.bio-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Profile Tabs Navigation - SEPARATED STYLES */
.profile-tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    width: 100%;
}

.profile-tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.profile-tab-button:hover {
    color: var(--text);
    background: var(--background);
}

.profile-tab-button.active {
    color: var(--primary);
    font-weight: 600;
}

.profile-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Profile Tab Content */
.profile-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
    width: 100%;
}

.profile-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Tab Styles - COMPLETELY REMOVED ALL CONTAINERS */
.about-tab-content {
    margin: 0 1rem 1rem 1rem;
    width: calc(100% - 2rem);
}

.about-section {
    /* REMOVED ALL CONTAINER STYLING - NO BACKGROUND, NO BORDER, NO SHADOW */
    margin-bottom: 2rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-section p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.property-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.property-detail-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.property-detail-value {
    color: var(--text-light);
    font-size: 0.95rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.amenity-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.amenity-item span {
    color: var(--text);
    font-size: 0.9rem;
}

/* Gallery Styles */
.gallery-section {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: var(--background);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    background: var(--background);
    border: 2px dashed var(--border);
}

.gallery-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.gallery-placeholder p {
    font-size: 0.8rem;
    text-align: center;
}

/* Rooms Tab Styles */
.rooms-tab-content {
    padding: 0 1rem 1rem 1rem;
    width: calc(100% - 2rem);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.rooms-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    padding: 3rem;
    text-align: center;
}

.rooms-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.rooms-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.rooms-placeholder p {
    font-size: 1rem;
    max-width: 400px;
    line-height: 1.5;
}

/* Profile Content Padding */
.user-profile-content {
    padding: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Results Header */
.search-summary {
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
    min-width: 0;
}

.search-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
}

.search-dates {
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
}

.search-location {
    color: var(--text-light);
    font-size: 0.75rem;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.filter-btn, .sort-btn {
    background: none;
    border: none;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.filter-btn:hover, .sort-btn:hover {
    background: var(--background);
}

/* Results Section */
.results-content {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.results-stats {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0 0.5rem;
    width: 100%;
}

.properties-grid {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.property-banner {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.property-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.property-info {
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.property-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.property-location {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.property-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Property Detail Styles */
.property-detail {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.property-banner-detail {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.property-banner-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info-header {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    width: 100%;
}

.property-name-detail {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.property-location-detail {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.property-price-detail {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Modern Modal Backdrop */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modern Modal Content */
.modal-content {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modern Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.modal-close {
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-light);
    font-size: 1.1rem;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
    color: var(--text);
}

/* Modern Modal Body */
.modal-body {
    padding: 2rem;
    background: white;
}

/* Modern Filter Sections */
.filter-section {
    margin-bottom: 2.5rem;
    padding: 0;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.filter-section h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 2px;
}

/* Modern Price Range */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.price-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

.price-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.price-inputs span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Modern Checkbox Grid */
.amenities-filter {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

/* ===== FIXED FILTER CHECKBOXES ===== */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.filter-checkbox:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.filter-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-checkbox span {
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s ease;
    flex: 1;
}

.filter-checkbox input[type="checkbox"]:checked ~ span {
    color: var(--primary);
    font-weight: 600;
}

.filter-checkbox:has(input[type="checkbox"]:checked) {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--primary);
}

/* ===== FIXED SORT OPTIONS ===== */
/* Sort Options as Checkboxes */
.sort-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.sort-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sort-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.sort-option input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.sort-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sort-option span {
    font-weight: 500;
    color: var(--text);
    flex: 1;
    transition: color 0.3s ease;
}

.sort-option input[type="checkbox"]:checked ~ span {
    color: var(--primary);
    font-weight: 600;
}

.sort-option:has(input[type="checkbox"]:checked) {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--primary);
}

/* Modern Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    padding: 1.75rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8fafc;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    transition: left 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Modern Filter & Sort Buttons in Results */
.filter-btn, .sort-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.filter-btn:hover, .sort-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.filter-btn i, .sort-btn i {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .modal-content {
        max-width: 95%;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-actions {
        padding: 1.5rem;
    }
    
    .amenities-filter {
        grid-template-columns: 1fr;
    }
    
    .price-inputs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .price-input {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .amenities-filter {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    box-sizing: border-box;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--background);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

/* Back Button */
.back-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header Center */
.header-center {
    flex: 1;
    text-align: center;
    min-width: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .search-section {
        padding: 1rem 0.75rem;
    }
    
    .search-container {
        padding: 1.5rem;
    }
    
    .search-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .form-row {
        gap: 0.75rem;
    }
    
    .form-input {
        padding: 0.65rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .search-bar {
        padding: 0.75rem 1rem;
    }
    
    .search-input {
        font-size: 0.95rem;
    }
    
    .app-header {
        padding: 0.5rem 1rem;
    }
    
    .users-grid,
    .recent-searches-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .user-grid-item,
    .recent-search-grid-item {
        padding: 1.25rem 1rem;
        min-height: 130px;
    }
    
    .user-grid-avatar,
    .recent-search-grid-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .profile-pic-rounded {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .property-name-display h2 {
        font-size: 1.3rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-details-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-tabs-navigation {
        gap: 1.5rem;
    }
    
    .profile-tab-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .about-tab-content {
        margin: 0 0.5rem 1rem 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .rooms-tab-content {
        padding: 0 0.5rem 1rem 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .room-card {
        aspect-ratio: 3/2;
    }
    
    .room-name {
        font-size: 1rem;
    }
    
    .room-price {
        font-size: 1.1rem;
    }
    
    .room-guests, .view-room-btn {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .main-photo-container {
        height: 250px;
    }
    
    .thumbnail-photo {
        width: 60px;
        height: 60px;
    }
    
    .room-detail-meta {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .results-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .username-search-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .user-profile-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .users-grid,
    .recent-searches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .users-grid,
    .recent-searches-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* NUCLEAR FIX - Remove any remaining horizontal scroll */
html {
    overflow-x: hidden !important;
    width: 100% !important;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}

#mainView, #searchResultsView, #propertyDetailView, #usernameSearchView, #userProfileView, #roomDetailView {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}
/* ADDED: Extra fields styles */
.extra-fields-section {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.extra-fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.extra-field {
    padding: 0.75rem;
    background: var(--background);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.extra-field strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.extra-field:not(:has(strong)) {
    color: var(--text-light);
    font-size: 0.9rem;
}
/* Enhanced Calendar Styles */
.calendar-month {
    margin-bottom: 2rem;
}

.calendar-month:last-child {
    margin-bottom: 1rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-navigation {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.calendar-nav-btn:hover:not(:disabled) {
    background: var(--background);
    border-color: var(--primary);
}

.calendar-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--surface);
    color: var(--text);
    position: relative;
    padding: 0.25rem;
}

.calendar-day.available {
    background: #f0fdf4;
    border-color: #10b981;
    color: #065f46;
}

.calendar-day.past {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #9ca3af;
    opacity: 0.6;
}

.calendar-day.booked {
    background: #fef2f2 !important;
    border-color: #ef4444 !important;
    color: #991b1b !important;
}

.calendar-day.maintenance {
    background: #fffbeb !important;
    border-color: #f59e0b !important;
    color: #92400e !important;
}

.calendar-day.empty {
    background: transparent;
    border-color: transparent;
}

.calendar-day i {
    font-size: 0.6rem;
    margin-top: 2px;
}

.calendar-note {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.calendar-note p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive calendar */
@media (max-width: 480px) {
    .calendar-day {
        font-size: 0.7rem;
        padding: 0.1rem;
    }
    
    .calendar-day i {
        font-size: 0.5rem;
    }
    
    .calendar-month {
        margin-bottom: 1.5rem;
    }
}
/* Ensure compact header is properly styled for room detail */
.profile-header-compact {
    background: white;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border);
    width: 100%;
    max-width: 100%;
}

.header-container-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
}

.back-btn-compact {
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.back-btn-compact:hover {
    background: var(--background);
}

.header-center-compact {
    flex: 1;
    text-align: center;
    min-width: 0;
    padding: 0 0.5rem;
}

.profile-username-compact {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    margin: 0 auto;
}
/* Room Detail Content - NO CONTAINER STYLING */
.room-info-content {
    padding: 1.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
}

.room-detail-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.room-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.room-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.meta-item span {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
}

.room-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

.amenities-section {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.amenities-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

/* Photos section styling */
.room-photos-section {
    margin-bottom: 0;
}

.main-photo-container {
    width: 100%;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: none;
}

.thumbnail-photos {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
}

/* Remove the old container styles if they exist */
.room-info-section {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
/* Booking View Styles */
.booking-content {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    background: var(--background);
}

.booking-room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    position: relative;
}

.booking-room-image {
    width: 100%;
    height: 200px;
    position: relative;
}

.booking-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
}

.booking-room-price {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.booking-room-guests {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.booking-details-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.booking-details-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.booking-form-row .form-group {
    flex: 1;
    min-width: 0;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.booking-form .form-input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--surface);
    color: var(--text);
    width: 100%;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.booking-form .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.booking-form textarea.form-input {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

/* Price Breakdown Section */
.price-breakdown-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.price-breakdown-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.price-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.price-breakdown-item:last-child {
    border-bottom: none;
}

.price-breakdown-label {
    color: var(--text);
    font-size: 0.95rem;
}

.price-breakdown-value {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
}

.price-breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid var(--border);
    margin-top: 0.5rem;
}

.price-breakdown-total .price-breakdown-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.price-breakdown-total .price-breakdown-value {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
}

/* Book Now Button */
.book-now-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.book-now-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.book-now-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.book-now-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

/* Guests Counter for Booking */
.booking-guests-counter {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.booking-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.booking-counter-info {
    flex: 1;
    min-width: 0;
}

.booking-counter-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.booking-counter-description {
    color: var(--text-light);
    font-size: 0.8rem;
}

.booking-counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking-counter-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    color: var(--text);
    flex-shrink: 0;
}

.booking-counter-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: #F5F5F5;
}

.booking-counter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--background);
}

.booking-counter-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    font-size: 1rem;
    color: var(--text);
}

/* Responsive Booking */
@media (max-width: 480px) {
    .booking-content {
        padding: 0.75rem;
    }
    
    .booking-details-section,
    .price-breakdown-section,
    .book-now-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .booking-form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-room-image {
        height: 160px;
    }
    
    .booking-room-price,
    .booking-room-guests {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Loading State */
.booking-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-light);
}

.booking-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
/* Search Results View Styles */
.search-results-content {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    background: var(--background);
}

.search-results-header-info {
    text-align: center;
}

.search-results-location {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.search-results-dates {
    color: var(--text-light);
    font-size: 0.8rem;
}

.search-results-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.results-stats {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.results-actions {
    display: flex;
    gap: 0.75rem;
}

.filter-btn, .sort-btn {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover, .sort-btn:hover {
    background: var(--background);
    border-color: var(--primary);
}

/* Properties Search Grid */
.properties-search-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.property-search-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.property-search-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.property-search-banner {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.property-search-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.property-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
}

.property-search-username {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.property-search-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-search-price {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* No Results State */
.no-properties-found {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
    grid-column: 1 / -1;
}

.no-properties-found i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-properties-found h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.no-properties-found p {
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

/* Loading State */
.properties-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-light);
}

.properties-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 480px) {
    .search-results-content {
        padding: 0.75rem;
    }
    
    .search-results-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .results-actions {
        justify-content: center;
    }
    
    .property-search-banner {
        height: 160px;
    }
    
    .property-search-username,
    .property-search-price {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .view-profile-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 768px) {
    .properties-search-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .properties-search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Updated Property Search Cards - No White Backgrounds */
/* Updated Property Search Cards - No clickable card, only button */
.property-search-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: none; /* Remove transform transition */
    cursor: default; /* Change to default cursor */
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: 1px solid var(--border);
}

/* Remove hover effects from the entire card */
.property-search-card:hover {
    transform: none; /* Remove translateY effect */
    box-shadow: none; /* Remove shadow on hover */
}

/* Keep hover effect only for the View Profile button */
.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Ensure the banner image is not clickable */
.property-search-banner {
    cursor: default; /* Change from pointer to default */
}

.property-search-banner img {
    cursor: default; /* Ensure images are not clickable */
}

.property-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
}

/* Remove white background from username */
.property-search-username {
    color: white; /* Changed to white text */
    padding: 0.5rem 0; /* Remove horizontal padding */
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
    /* Remove all background styles */
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
}

.property-search-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove white background from price */
.property-search-price {
    color: white; /* Changed to white text */
    padding: 0.5rem 0; /* Remove horizontal padding */
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
    /* Remove all background styles */
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
}

.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Remove backdrop-filter */
    backdrop-filter: none;
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .property-search-banner {
        height: 200px;
    }
    
    .property-search-username,
    .property-search-price {
        font-size: 0.8rem;
    }
    
    .view-profile-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 768px) {
    .property-search-banner {
        height: 260px;
    }
}

@media (min-width: 1024px) {
    .property-search-banner {
        height: 280px;
    }
}
/* Alternative: Bolder text with stronger shadow */
.property-search-username {
    color: white;
    padding: 0.3rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); /* Stronger shadow */
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
}

.property-search-price {
    color: white;
    padding: 0.5rem 0;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); /* Stronger shadow */
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
}

/* Simple scroll fix */
.modal-body {
    overflow-y: auto;
    max-height: 400px; /* Adjust based on your needs */
}

/* Custom scrollbar */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}
/* Nights Display */
.nights-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.nights-label {
    font-weight: 600;
    color: var(--text);
}

.nights-value {
    font-weight: 700;
    color: var(--primary);
}

/* Booking Success Styles */
.booking-success-container {
    text-align: center;
    padding: 2rem;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-animation i {
    font-size: 4rem;
    color: #10b981;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.success-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.booking-summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    text-align: left;
}

.booking-summary-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: var(--text-light);
}

.summary-value {
    font-weight: 600;
    color: var(--text);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .btn-primary,
.success-actions .btn-secondary {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}
/* Booking Success Screen Styles */
.booking-success-container {
    padding: 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-animation {
    margin-bottom: 2rem;
}

.success-animation i {
    font-size: 4rem;
    color: #10b981;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.success-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-notice {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.info-notice i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.info-notice p {
    color: #1e40af;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.booking-summary-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.booking-summary-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: #64748b;
    font-size: 0.9rem;
    min-width: 120px;
}

.summary-value {
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
    flex: 1;
    word-break: break-word;
}

.summary-value.status-confirmed {
    color: #10b981;
    font-weight: 600;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff385c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: #e31c5f;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #ff385c;
    color: #ff385c;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-success-container {
        padding: 1rem;
    }
    
    .success-content h2 {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
    
    .booking-summary-card {
        padding: 1.5rem;
    }
    
    .summary-row {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }
    
    .summary-value {
        text-align: left;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .booking-summary-card {
        padding: 1rem;
    }
    
    .summary-label {
        min-width: 100px;
        font-size: 0.85rem;
    }
    
    .summary-value {
        font-size: 0.85rem;
    }
}
/* FORCE ALL TICKS TO BE PERFECTLY CENTERED INSIDE THE STAR BADGE */
.verified-badge i.fa-check,
.verified-badge-large i.fa-check,
.verified-badge-header i.fa-check,
.verified-badge-card i.fa-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0.5px !important;
    font-size: 6.7px !important;
    width: 100% !important;
    height: 100% !important;
}
/* Username Search Grid - SIMPLE CENTERED LAYOUT */
.users-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.user-grid-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 140px;
}

.user-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.user-grid-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.user-grid-avatar:hover {
    transform: scale(1.05);
}

.user-grid-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-grid-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.user-grid-username {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.user-grid-propertyname {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Recent Searches Grid - SIMPLE CENTERED LAYOUT */
.recent-searches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.recent-search-grid-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 140px;
}

.recent-search-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.recent-search-grid-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.recent-search-grid-avatar:hover {
    transform: scale(1.05);
}

.recent-search-grid-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-search-grid-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.recent-search-grid-username {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.recent-search-grid-time {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* TICK CENTERING FIX - ADJUST THESE VALUES */
.verified-badge i.fa-check,
.verified-badge-large i.fa-check,
.verified-badge-header i.fa-check,
.verified-badge-card i.fa-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0.3px !important;  /* ADJUST THIS VALUE */
    left: 0.1px !important;  /* ADJUST THIS VALUE */
    font-size: 6.7px !important;
    width: 100% !important;
    height: 100% !important;
}

/* Header tick specific adjustments */
.header-center-compact .verified-badge-header i.fa-check,
.profile-header-compact .verified-badge-header i.fa-check {
    top: 0.4px !important;  /* ADJUST THIS FOR HEADER */
    left: 0.1px !important;  /* ADJUST THIS FOR HEADER */
    font-size: 6.5px !important;  /* ADJUST SIZE FOR HEADER */
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .users-grid,
    .recent-searches-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .user-grid-item,
    .recent-search-grid-item {
        padding: 1.25rem 1rem;
        min-height: 130px;
    }
    
    .user-grid-avatar,
    .recent-search-grid-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .users-grid,
    .recent-searches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .users-grid,
    .recent-searches-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* FORCE ALL TICKS TO BE PERFECTLY CENTERED INSIDE THE STAR BADGE */
.verified-badge i.fa-check,
.verified-badge-large i.fa-check,
.verified-badge-header i.fa-check,
.verified-badge-card i.fa-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0.5px !important;
    font-size: 6.7px !important;
    width: 100% !important;
    height: 100% !important;
}

/* KEEP YOUR EXACT STAR SHAPE BUT FIX TICK CENTERING */
.verified-badge,
.verified-badge-large,
.verified-badge-header,
.verified-badge-card {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0095f6 !important;
    color: white !important;
    width: 16px !important;
    height: 16px !important;
    position: relative;
    border-radius: 50%;
    font-size: 6.7px !important;
    margin-left: 1px !important;
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 6%, 77% 20%, 91% 20%, 88% 34%,
        100% 43%, 89% 50%, 100% 57%, 88% 66%, 91% 80%, 77% 80%,
        74% 94%, 61% 89%, 50% 100%, 39% 89%, 26% 94%, 23% 80%,
        9% 80%, 12% 66%, 0% 57%, 11% 50%, 0% 43%, 12% 34%,
        9% 20%, 23% 20%, 26% 6%, 39% 11%
    );
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    line-height: 1;
}

/* KEEP YOUR EXACT SPACING */
.verified-username,
.property-search-username.verified,
.property-search-overlay .property-search-username.verified,
.user-grid-username.verified,
.recent-search-grid-username.verified,
.profile-header-compact .verified-username,
.header-center-compact .verified-username {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5px !important;
}

.property-search-overlay .property-search-username.verified {
    justify-content: flex-start;
    margin-left: 8px;
    margin-top: 8px;
}

/* KEEP HIDING THE ONES THAT SHOULDN'T SHOW */
.verified-profile-badge {
    display: none !important;
}

.property-name-display .verified-badge {
    display: none !important;
}

.property-detail-value[style*="color: #0095f6"] .verified-badge {
    display: none !important;
}

/* FIX USERNAME CENTERING IN HEADER */
.header-center-compact .verified-username {
    justify-content: center !important;
    text-align: center !important;
}

.profile-header-compact .verified-username {
    justify-content: center !important;
    text-align: center !important;
}

/* PERFECTLY CENTERED TICK IN HEADER BADGE */
.header-center-compact .verified-badge-header,
.profile-header-compact .verified-badge-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0095f6 !important;
    width: 16px !important;
    height: 16px !important;
    position: relative;
    border-radius: 50%;
    font-size: 6.7px !important;
    margin-left: 1px !important;
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 6%, 77% 20%, 91% 20%, 88% 34%,
        100% 43%, 89% 50%, 100% 57%, 88% 66%, 91% 80%, 77% 80%,
        74% 94%, 61% 89%, 50% 100%, 39% 89%, 26% 94%, 23% 80%,
        9% 80%, 12% 66%, 0% 57%, 11% 50%, 0% 43%, 12% 34%,
        9% 20%, 23% 20%, 26% 6%, 39% 11%
    );
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    line-height: 1;
}

.header-center-compact .verified-badge-header i.fa-check,
.profile-header-compact .verified-badge-header i.fa-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 5.9px !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    top: 0.6px !important;
    left: 0 !important;
    transform: none !important;
}
/* Verified Properties Section - NO CONTAINER */
.verified-properties-section {
    margin-top: 2rem;
    padding-top: 0; /* Remove padding */
    border-top: none; /* Remove border */
}

/* Title is already hidden */
.verified-section-title {
    display: none;
}

.verified-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    width: 100%;
}

.verified-property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    border: 2px solid transparent;
    position: relative;
}

.verified-property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #0095f6;
}

.verified-property-banner {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.verified-property-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.verified-property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
}

.verified-property-username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-property-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-property-price {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.view-verified-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-verified-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.verified-badge-main {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0095f6 !important;
    color: white !important;
    width: 16px !important;
    height: 16px !important;
    position: relative;
    border-radius: 50%;
    font-size: 6.7px !important;
    margin-left: 1px !important;
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 6%, 77% 20%, 91% 20%, 88% 34%,
        100% 43%, 89% 50%, 100% 57%, 88% 66%, 91% 80%, 77% 80%,
        74% 94%, 61% 89%, 50% 100%, 39% 89%, 26% 94%, 23% 80%,
        9% 80%, 12% 66%, 0% 57%, 11% 50%, 0% 43%, 12% 34%,
        9% 20%, 23% 20%, 26% 6%, 39% 11%
    );
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    line-height: 1;
}

.verified-badge-main i.fa-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0.5px !important;
    font-size: 6.7px !important;
    width: 100% !important;
    height: 100% !important;
}

.real-time-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .verified-properties-grid {
        grid-template-columns: 1fr;
    }
    
    .verified-property-banner {
        height: 180px;
    }
    
    .verified-property-username,
    .verified-property-price {
        font-size: 0.8rem;
    }
    
    .view-verified-profile-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 768px) {
    .verified-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .verified-properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Updated Search Section Layout */
.search-section {
    padding: 1.5rem 1rem;
    min-height: auto; /* Changed from 100vh */
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    gap: 2rem; /* Space between search container and verified properties */
}

/* Search Container - Only contains the search form */
.search-container {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border);
    margin: 0 auto;
}

/* Verified Properties Section - Outside the white container */
.verified-properties-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
}

.verified-section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
}

.verified-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .search-section {
        padding: 1rem 0.75rem;
        gap: 1.5rem;
    }
    
    .search-container {
        padding: 1.5rem;
    }
    
    .verified-properties-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .verified-properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .verified-properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Updated Search Results Cards - Username Top Left */
.property-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.property-search-username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    margin-top: 0;
    margin-left: 0;
}

.property-search-username.verified {
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-search-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-search-price {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Remove any existing positioning that might conflict */
.property-search-overlay .property-search-username {
    position: static;
    margin: 0;
    padding: 0;
}

/* Ensure the overlay content is properly aligned */
.property-search-overlay {
    align-items: flex-start;
}

/* Verified badge positioning */
.property-search-username .verified-badge {
    margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .property-search-username {
        font-size: 0.8rem;
    }
    
    .property-search-price {
        font-size: 0.9rem;
    }
    
    .view-profile-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}
/* FIXED: Consistent username positioning with star-shaped verified badge */
.property-search-username,
.property-search-username.verified {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    pointer-events: auto;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Star-shaped verified badge - SAME STYLE AS BEFORE */
.verified-badge-card {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0095f6 !important;
    color: white !important;
    width: 16px !important;
    height: 16px !important;
    position: relative;
    border-radius: 50%;
    font-size: 6.7px !important;
    margin-left: 1px !important;
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 6%, 77% 20%, 91% 20%, 88% 34%,
        100% 43%, 89% 50%, 100% 57%, 88% 66%, 91% 80%, 77% 80%,
        74% 94%, 61% 89%, 50% 100%, 39% 89%, 26% 94%, 23% 80%,
        9% 80%, 12% 66%, 0% 57%, 11% 50%, 0% 43%, 12% 34%,
        9% 20%, 23% 20%, 26% 6%, 39% 11%
    );
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    line-height: 1;
    flex-shrink: 0;
}

.verified-badge-card i.fa-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0.5px !important;
    font-size: 6.7px !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure proper spacing */
.property-search-username.verified span {
    margin-right: 2px;
}

/* Bottom section remains the same */
.property-search-bottom {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
}

.property-search-price {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .property-search-username,
    .property-search-username.verified {
        font-size: 0.8rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .verified-badge-card {
        width: 14px !important;
        height: 14px !important;
        font-size: 6px !important;
    }
    
    .verified-badge-card i.fa-check {
        font-size: 6px !important;
    }
}
/* EXACT SAME STYLE AS YOUR ORIGINAL VERIFIED BADGES */
.verified-badge-card {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0095f6 !important;
    color: white !important;
    width: 16px !important;
    height: 16px !important;
    position: relative;
    border-radius: 50%;
    font-size: 6.7px !important;
    margin-left: 1px !important;
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 6%, 77% 20%, 91% 20%, 88% 34%,
        100% 43%, 89% 50%, 100% 57%, 88% 66%, 91% 80%, 77% 80%,
        74% 94%, 61% 89%, 50% 100%, 39% 89%, 26% 94%, 23% 80%,
        9% 80%, 12% 66%, 0% 57%, 11% 50%, 0% 43%, 12% 34%,
        9% 20%, 23% 20%, 26% 6%, 39% 11%
    );
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    line-height: 1;
}

.verified-badge-card i.fa-check {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0.5px !important;
    font-size: 6.7px !important;
    width: 100% !important;
    height: 100% !important;
}
/* Push price and button further down */
.property-search-bottom {
    position: absolute;
    bottom: 0.5rem; /* Reduced from 1rem to push it down */
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
}

/* If you want even more space, reduce the bottom value more: */
.property-search-bottom {
    position: absolute;
    bottom: 0.25rem; /* Even further down */
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
}

/* Or if you want to push it all the way to the very bottom: */
.property-search-bottom {
    position: absolute;
    bottom: 0; /* All the way at the bottom */
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
    padding-bottom: 0.75rem; /* Add some padding so it's not touching the very edge */
}

/* Keep the rest of your styles the same */
.property-search-price {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .property-search-bottom {
        bottom: 0.25rem; /* Adjust mobile spacing too */
        left: 0.75rem;
        right: 0.75rem;
        padding-bottom: 0.5rem;
    }
}
/* Increase height of verified properties cards */
.verified-property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    border: 2px solid transparent;
    position: relative;
    height: 280px; /* Increased height */
}

.verified-property-banner {
    width: 100%;
    height: 100%; /* Take full height of card */
    position: relative;
    overflow: hidden;
}

.verified-property-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.verified-property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.verified-property-username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-property-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-property-price {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.view-verified-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-verified-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .verified-property-card {
        height: 240px; /* Slightly smaller on mobile */
    }
    
    .verified-property-username {
        font-size: 0.8rem;
    }
    
    .verified-property-price {
        font-size: 0.9rem;
    }
    
    .view-verified-profile-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 768px) {
    .verified-property-card {
        height: 300px; /* Taller on tablets */
    }
}

@media (min-width: 1024px) {
    .verified-property-card {
        height: 320px; /* Tallest on desktop */
    }
}
/* Make search results cards same height as verified properties cards */
.property-search-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: none;
    cursor: default;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border: 1px solid var(--border);
    position: relative;
    height: 280px; /* Same height as verified properties cards */
}

.property-search-banner {
    width: 100%;
    height: 100%; /* Take full height of card */
    position: relative;
    overflow: hidden;
}

.property-search-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.property-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    padding: 1rem;
    pointer-events: none;
}

.property-search-username,
.property-search-username.verified {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    pointer-events: auto;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.property-search-bottom {
    position: absolute;
    bottom: 0.25rem; /* Keep the pushed down position */
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
}

.property-search-price {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.view-profile-btn:hover i {
    transform: translateX(3px);
}

.view-profile-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Responsive adjustments - same as verified properties */
@media (max-width: 480px) {
    .property-search-card {
        height: 240px; /* Same as verified properties on mobile */
    }
    
    .property-search-username,
    .property-search-username.verified {
        font-size: 0.8rem;
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .property-search-bottom {
        bottom: 0.15rem;
        left: 0.75rem;
        right: 0.75rem;
    }
    
    .property-search-price {
        font-size: 0.9rem;
    }
    
    .view-profile-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        gap: 0.3rem;
    }
    
    .view-profile-btn i {
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) {
    .property-search-card {
        height: 300px; /* Same as verified properties on tablets */
    }
}

@media (min-width: 1024px) {
    .property-search-card {
        height: 320px; /* Same as verified properties on desktop */
    }
}
/* Remove Property Details title and Status label from About tab */
.about-section h3 {
    display: none; /* Hide all section titles in About tab */
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0; /* Remove top margin since title is gone */
}

.property-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.property-detail-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.property-detail-value {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Hide the Status label specifically */
.property-detail-item:has(.property-detail-label:contains("Status")) .property-detail-label,
.property-detail-item:has(.property-detail-value:contains("Verified Property")) .property-detail-label {
    display: none;
}

/* Style the verified property value to stand out without the label */
.property-detail-item:has(.property-detail-value:contains("Verified Property")) {
    background: rgba(0, 149, 246, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    border-left: 3px solid #0095f6;
}

.property-detail-item:has(.property-detail-value:contains("Verified Property")) .property-detail-value {
    color: #0095f6;
    font-weight: 600;
    font-size: 0.95rem;
}
/* Enhanced Gallery Modal Styles - NO BLUE CHECK */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.gallery-modal-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10001;
    width: 100%;
    box-sizing: border-box;
}

.gallery-back-btn {
    background: none;
    border: none;
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    margin-right: auto;
    margin-left: 0;
}

.gallery-back-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.gallery-username {
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    flex: 1;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Removed flex display and gap since no badge */
}

/* REMOVED VERIFIED BADGE STYLES */

.gallery-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
}

.gallery-main-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.gallery-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    overflow-x: auto;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 120px;
    align-items: center;
}

.gallery-thumbnail {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumbnail:hover {
    transform: scale(1.08);
}

.gallery-thumbnail.active {
    border-color: #0095f6;
    transform: scale(1.05);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide scrollbar for thumbnails */
.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.gallery-thumbnails {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-thumbnail {
        width: 80px;
        height: 80px;
    }
    
    .gallery-thumbnails {
        gap: 0.6rem;
        padding: 1rem;
        min-height: 110px;
    }
}

@media (max-width: 480px) {
    .gallery-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .gallery-thumbnails {
        gap: 0.5rem;
        padding: 0.9rem;
        min-height: 100px;
    }
    
    .gallery-modal-header {
        padding: 0.75rem;
    }
    
    .gallery-back-btn {
        padding: 0.4rem;
        font-size: 1.1rem;
    }
    
    .gallery-username {
        font-size: 0.95rem;
    }
}
/* Amenities Grid - 2 PER ROW */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 0.75rem; /* Space between items */
    width: 100%;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.amenity-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.amenity-item i {
    color: #0095f6;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.amenity-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Responsive adjustments for amenities */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr; /* Still 2 per row on tablet */
        gap: 0.6rem;
    }
    
    .amenity-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .amenity-item i {
        font-size: 0.9rem;
    }
    
    .amenity-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr; /* 1 per row on very small screens */
        gap: 0.5rem;
    }
    
    .amenity-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}
/* Amenities Grid - 2 COLUMN LAYOUT ON ALL SCREENS */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns on ALL screens */
    gap: 0.5rem; /* Smaller gap for mobile */
    width: 100%;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Smaller gap for mobile */
    padding: 0.6rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    min-height: 44px; /* Better touch targets on mobile */
}

.amenity-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.amenity-item i {
    color: #0095f6;
    font-size: 0.9rem; /* Slightly smaller icons on mobile */
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.amenity-item span {
    font-size: 0.8rem; /* Smaller text for mobile */
    color: #333;
    font-weight: 500;
    line-height: 1.2;
}

/* Remove the mobile breakpoint that switches to 1 column */
/* @media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
} */

/* Optional: Adjust for very small screens if needed */
@media (max-width: 360px) {
    .amenities-grid {
        gap: 0.4rem;
    }
    
    .amenity-item {
        padding: 0.5rem;
        gap: 0.4rem;
    }
    
    .amenity-item i {
        font-size: 0.85rem;
    }
    
    .amenity-item span {
        font-size: 0.75rem;
    }
}
/* Property Search Cards - FIXED LAYOUT */
.property-search-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.property-search-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.property-search-banner {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.property-search-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-search-card:hover .property-search-banner img {
    transform: scale(1.05);
}

.property-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.property-search-username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-search-username.verified {
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-search-price {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.property-search-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    display: flex;
    justify-content: space-between; /* PRICE LEFT, BUTTON RIGHT */
    align-items: flex-end;
}

.view-profile-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.view-profile-btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Verified Properties Cards - FIXED LAYOUT */
.verified-property-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.verified-property-banner {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.verified-property-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.verified-property-card:hover .verified-property-banner img {
    transform: scale(1.05);
}

.verified-property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}

.verified-property-username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-property-username.verified {
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-property-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    display: flex;
    justify-content: space-between; /* PRICE LEFT, BUTTON RIGHT */
    align-items: flex-end;
}

.verified-property-price {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.view-verified-profile-btn {
    background: rgba(255, 255, 255, 0.9);
    
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.view-verified-profile-btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Real-time indicator */
.real-time-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .property-search-bottom,
    .verified-property-bottom {
        padding: 0.75rem;
    }
    
    .property-search-price,
    .verified-property-price {
        font-size: 1rem;
    }
    
    .view-profile-btn,
    .view-verified-profile-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .property-search-bottom,
    .verified-property-bottom {
        padding: 0.6rem;
    }
    
    .property-search-price,
    .verified-property-price {
        font-size: 0.9rem;
    }
    
    .view-profile-btn,
    .view-verified-profile-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }
}
/* Remove Live indicator from verified properties */
.real-time-indicator {
    display: none !important;
}

/* Fix blue check badge tick positioning */
.verified-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0095f6 !important;
    color: white !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    font-size: 8px !important;
    line-height: 1 !important;
}

.verified-badge i.fa-check {
    position: relative !important;
    top: 0.3px !important;
    left: 0.1px !important;
    font-size: 7px !important;
}

/* Keep your existing verified badge shape */
.verified-badge {
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 6%, 77% 20%, 91% 20%, 88% 34%,
        100% 43%, 89% 50%, 100% 57%, 88% 66%, 91% 80%, 77% 80%,
        74% 94%, 61% 89%, 50% 100%, 39% 89%, 26% 94%, 23% 80%,
        9% 80%, 12% 66%, 0% 57%, 11% 50%, 0% 43%, 12% 34%,
        9% 20%, 23% 20%, 26% 6%, 39% 11%
    );
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.view-profile-btn { margin-left: auto; }
.property-search-bottom .view-profile-btn { margin-left: auto; }
.property-search-overlay .property-search-username { position: absolute; top: 1rem; left: 1rem; display: flex; align-items: center; gap: 4px; }
.property-search-bottom { justify-content: space-between; align-items: flex-end; }
.property-search-bottom .property-search-price { align-self: flex-end; margin-right: auto; }
.property-search-card .property-search-price { position: absolute; bottom: 1rem; left: 1rem; }
.property-search-card .property-search-price { bottom: 0.3rem; }
.property-search-card .property-search-price { z-index: 3; }
.property-search-card .property-search-username { position: absolute; top: 1rem; left: 1rem; z-index: 3; }
.property-search-card .property-search-username.verified { display: flex; align-items: center; gap: 4px; }
.property-search-overlay .property-search-username.verified { 
    display: flex !important; 
    align-items: center !important; 
    gap: 4px !important; 
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    z-index: 3 !important;
}
.property-search-overlay .property-search-username.verified { font-size: 0.9rem !important; }
.property-search-overlay .property-search-username.verified { top: 0.75rem !important; }
.property-search-overlay .property-search-username.verified { left: 0.5rem !important; }



/* ROOM DETAIL OVERRIDE STYLES */
/* Add this after your existing CSS to override room detail styles */

.room-detail-content {
    padding: 0 !important;
    background: #ffffff !important;
    min-height: 100vh !important;
    color: #1a1a1a !important;
}

.room-photos-section {
    position: relative !important;
    background: white !important;
    border-radius: 0 0 20px 20px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.main-photo-container {
    width: 100% !important;
    height: 300px !important;
    overflow: hidden !important;
}

.main-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.thumbnail-photos {
    display: flex !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    overflow-x: auto !important;
    background: white !important;
    border-top: 1px solid #f0f0f0 !important;
}

.thumbnail-photo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    opacity: 0.6 !important;
    transition: all 0.2s ease !important;
}

.thumbnail-photo.active {
    border-color: #000000 !important;
    opacity: 1 !important;
}

.thumbnail-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.room-info-content {
    padding: 20px 16px !important;
    background: white !important;
    margin: 12px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border: 1px solid #f0f0f0 !important;
}

.room-detail-name {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin: 0 0 8px 0 !important;
    font-family: 'Outfit', sans-serif !important;
}

.room-detail-price {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-bottom: 16px !important;
}

.room-detail-meta {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
}

.meta-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    background: #f8f8f8 !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    border: 1px solid #e0e0e0 !important;
}

.meta-item i {
    color: #000000 !important;
    width: 16px !important;
}

.room-description {
    margin-bottom: 24px !important;
    line-height: 1.6 !important;
    color: #666 !important;
}

/* STACKED LAYOUT - Amenities above Additional Details */
.details-stacked {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 24px 0 !important;
}

/* Amenities Section - TOP (Two Columns) */
.amenities-section {
    background: #fafafa !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
}

.amenities-section h3 {
    margin: 0 0 16px 0 !important;
    font-size: 1.1rem !important;
    color: #000000 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
}

.amenities-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

.amenity-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    background: white !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.2s ease !important;
}

.amenity-item:hover {
    border-color: #000000 !important;
    transform: translateY(-1px) !important;
}

.amenity-item i {
    color: #000000 !important;
    width: 16px !important;
    font-size: 0.9rem !important;
}

/* Additional Details Section - BOTTOM */
.extra-fields-section {
    background: #fafafa !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
}

.extra-fields-section h3 {
    margin: 0 0 16px 0 !important;
    font-size: 1.1rem !important;
    color: #000000 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
}

.extra-fields-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}

.extra-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 12px !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.2s ease !important;
}

.extra-field:hover {
    border-color: #000000 !important;
    transform: translateY(-1px) !important;
}

.extra-field strong {
    color: #000000 !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.extra-field span:not(strong) {
    color: #333 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

/* CALENDAR - KEEP ORIGINAL GREEN STYLES */
/* These styles will preserve the original calendar colors */
.calendar-day.available {
    background: #e8f5e8 !important;
    color: #2e7d32 !important;
    border: 1px solid #c8e6c9 !important;
}

.calendar-day.booked {
    background: #ffebee !important;
    color: #c62828 !important;
    border: 1px solid #ffcdd2 !important;
}

.calendar-day.maintenance {
    background: #fff3e0 !important;
    color: #ef6c00 !important;
    border: 1px solid #ffe0b2 !important;
}

.calendar-day.past {
    background: #f8f9fa !important;
    color: #adb5bd !important;
    border: 1px solid #e9ecef !important;
}

.legend-color.available {
    background: #e8f5e8 !important;
    border: 1px solid #c8e6c9 !important;
}

.legend-color.booked {
    background: #ffebee !important;
    border: 1px solid #ffcdd2 !important;
}

.legend-color.maintenance {
    background: #fff3e0 !important;
    border: 1px solid #ffe0b2 !important;
}

/* Book Room Section */
.book-room-section {
    position: sticky !important;
    bottom: 0 !important;
    background: white !important;
    padding: 16px !important;
    border-top: 1px solid #e0e0e0 !important;
    margin-top: 20px !important;
}

.book-room-btn {
    width: 100% !important;
    padding: 16px !important;
    background: #000000 !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: 'Outfit', sans-serif !important;
}

.book-room-btn:hover {
    background: #333333 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.book-room-btn:active {
    transform: translateY(0) !important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .room-detail-meta {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .amenities-section,
    .extra-fields-section {
        padding: 16px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
}

@media (min-width: 1025px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    
    .room-detail-meta {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* ===== UNIFIED CARD STYLES FOR BOTH VERIFIED AND SEARCH RESULTS ===== */

/* Use verified property card styles for both */
.properties-search-grid .verified-property-card,
#propertiesSearchGrid .verified-property-card,
.verified-properties-grid .verified-property-card {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    height: 280px !important;
    border: 1px solid #dddddd !important;
}

.properties-search-grid .verified-property-card:hover,
#propertiesSearchGrid .verified-property-card:hover,
.verified-properties-grid .verified-property-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15) !important;
}

.properties-search-grid .verified-property-banner,
#propertiesSearchGrid .verified-property-banner,
.verified-properties-grid .verified-property-banner {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.properties-search-grid .verified-property-banner img,
#propertiesSearchGrid .verified-property-banner img,
.verified-properties-grid .verified-property-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: 100% !important;
    transition: transform 0.3s ease !important;
}

.properties-search-grid .verified-property-card:hover .verified-property-banner img,
#propertiesSearchGrid .verified-property-card:hover .verified-property-banner img,
.verified-properties-grid .verified-property-card:hover .verified-property-banner img {
    transform: scale(1.05) !important;
}

.properties-search-grid .verified-property-overlay,
#propertiesSearchGrid .verified-property-overlay,
.verified-properties-grid .verified-property-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 40%,
        transparent 70%,
        rgba(0, 0, 0, 0.6) 100%
    ) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 1rem !important;
}

/* Username - Top */
.properties-search-grid .verified-property-username,
#propertiesSearchGrid .verified-property-username,
.verified-properties-grid .verified-property-username,
.properties-search-grid .verified-property-username.verified,
#propertiesSearchGrid .verified-property-username.verified,
.verified-properties-grid .verified-property-username.verified {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* Bottom Section */
.properties-search-grid .verified-property-bottom,
#propertiesSearchGrid .verified-property-bottom,
.verified-properties-grid .verified-property-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    gap: 1rem !important;
    margin-top: auto !important;
}

/* Info Section */
.properties-search-grid .verified-property-info,
#propertiesSearchGrid .verified-property-info,
.verified-properties-grid .verified-property-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    flex: 1 !important;
}

.properties-search-grid .verified-property-location,
#propertiesSearchGrid .verified-property-location,
.verified-properties-grid .verified-property-location {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.properties-search-grid .verified-property-type,
#propertiesSearchGrid .verified-property-type,
.verified-properties-grid .verified-property-type {
    color: white !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
    line-height: 1.2 !important;
    opacity: 0.95 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.properties-search-grid .verified-property-price,
#propertiesSearchGrid .verified-property-price,
.verified-properties-grid .verified-property-price {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0.25rem !important;
}

/* Button */
.properties-search-grid .view-verified-profile-btn,
#propertiesSearchGrid .view-verified-profile-btn,
.verified-properties-grid .view-verified-profile-btn {
    background: #000000 !important;
    color: white !important;
    border: none !important;
    padding: 0.7rem 1.3rem !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

/* ===== FIXED USERNAME FONT SIZES ===== */

.verified-property-username { gap: 4px !important; }
.verified-property-username { font-size: 0.9rem !important; }
.property-search-username.verified span { font-size: 0.95rem !important; }
.verified-badge-main i.fa-check { top: 0.24px !important; }
.profile-pic-rounded + .gallery-modal .gallery-modal-img {
    border-radius: 50% !important;
    width: 300px !important;
    height: 300px !important;
    object-fit: cover !important;
}
.profile-pic-modal-image {
    border-radius: 50% !important;
    width: 300px !important;
    height: 300px !important;
    object-fit: cover !important;
}
/* Profile picture modal - circular */
.gallery-modal:has(.profile-pic-modal-image) .gallery-modal-img,
.profile-pic-modal .gallery-modal-img {
    border-radius: 50% !important;
    width: 300px !important;
    height: 300px !important;
    object-fit: cover !important;
    max-width: 300px !important;
    max-height: 300px !important;
}
.gallery-thumbnail.active {
    border-color: #000000 !important;
}
.amenities-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
}

.amenity-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.75rem !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
}
* { -webkit-tap-highlight-color: transparent !important; }
/* Remove white background from guest display */
.room-guests {
    background: none !important;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: none !important;
}

/* Change view button design */
.view-room-btn {
    background: none !important;
    color: white !important;
    border: none !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
}

.view-room-btn:hover {
    color: #f0f0f0 !important;
    transform: translateX(3px) !important;
}
.view-room-btn::after {
    content: ">" !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 0.3rem !important;
    position: relative !important;
    top: -0.5px !important;
}
.booking-room-price,
.booking-room-guests {
    background: transparent !important;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}
@media (max-width: 480px) {
    .room-detail-content {
        padding: 0.5rem !important;
    }
    
    .room-info-content {
        padding: 1rem !important;
        margin: 0.5rem !important;
    }
    
    .room-detail-meta {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
}
@media (max-width: 480px) {
    .room-info-content {
        margin: 0.5rem 0 !important;
        padding: 1rem 0.75rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .room-detail-content {
        padding: 0 0.5rem !important;
    }
}
.room-detail-meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
}

@media (max-width: 480px) {
    .room-detail-meta {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }
}
.extra-fields-section h3 {
    display: none !important;
}

.extra-fields-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
}

@media (max-width: 480px) {
    .extra-fields-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }
}
.available-units,
.available-units strong {
    color: #dc2626 !important;
}
.amenities-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.5rem !important;
    }
}
.room-description {
    color: #1a1a1a !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}
.bio-text {
    color: #333333 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}
.booking-success-container {
    padding: 2rem 1rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.success-animation i {
    font-size: 4rem;
    color: #10b981;
    animation: bounce 0.6s ease-in-out;
}

.success-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.booking-summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    width: 100%;
    box-sizing: border-box;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.summary-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.booking-badge {
    background: #10b981;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.summary-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    border-top: 2px solid #e5e5e5;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-label {
    color: #666;
    font-weight: 500;
}

.summary-value {
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.summary-item.total .summary-value {
    font-size: 1.2rem;
    color: #000;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-primary {
    background: #000000 !important;
    color: white !important;
    border: none !important;
    padding: 1rem 3rem !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    max-width: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.btn-primary:hover {
    background: #333333 !important;
    transform: translateY(-2px) !important;
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    80% { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .booking-success-container {
        padding: 1rem 0.75rem;
    }
    
    .booking-summary-card {
        padding: 1.5rem;
    }
    
    .summary-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .summary-value {
        text-align: left;
    }
    
    .btn-primary {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
}
.btn-primary {
    background: #000000 !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.booking-summary-card,
.success-actions {
    width: 100% !important;
    max-width: none !important;
}

.booking-success-container {
    padding: 2rem 1rem;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}
.delete-recent-search {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none !important;
    border: none;
    color: #000000 !important;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    padding: 4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-recent-search:hover {
    color: #dc2626 !important;
    transform: scale(1.1);
}

.recent-search-grid-item {
    position: relative;
}
/* Cancellation Policy Styles - Compact */
.cancellation-policy-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.policy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.policy-text {
    flex: 1;
    color: #495057;
    line-height: 1.4;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Make it match your existing section styles */
.about-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.about-section h3 i {
    color: #667eea;
}

/* Responsive design */
@media (max-width: 768px) {
    .cancellation-policy-content {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .policy-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
    
    .policy-text {
        font-size: 0.85rem;
    }
}
/* Modern Checkout Styles */
.modern-checkout-container {
    max-width: 440px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    min-height: 100vh;
}

.checkout-header {
    background: #000000;
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 0 0 24px 24px;
}

.checkout-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-family: 'Outfit', sans-serif;
}

.amount-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.amount-figure {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.section-header i {
    color: #666;
    font-size: 1.1rem;
}

.section-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* Summary Section */
.summary-section-modern {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-card-modern {
    background: #f8f9fa;
    margin: 0 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.room-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;  /* ← CHANGED TO WHITE */
    margin: 0 0 1rem 0;
    font-family: 'Outfit', sans-serif;
}
.modern-checkout-container .room-name {
    color: #000000 !important;
}

.booking-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.meta-item i {
    font-size: 0.8rem;
}

.date-info {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.date-row:last-child {
    margin-bottom: 0;
}

.date-label {
    font-size: 0.9rem;
    color: #666;
}

.date-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
}

/* Payment Options */
.payment-section-modern {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-option-modern {
    margin: 0 1.5rem 1rem 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.payment-option-modern.active {
    border-color: #000;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    cursor: pointer;
    background: white;
}

.option-selector {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-option-modern.active .option-selector {
    border-color: #000;
}

.radio-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-option-modern.active .radio-dot {
    opacity: 1;
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.option-subtitle {
    font-size: 0.875rem;
    color: #666;
}

.option-icon {
    color: #666;
    transition: transform 0.3s ease;
}

.payment-option-modern.active .option-icon {
    transform: rotate(180deg);
}

/* Payment Forms */
.payment-form-modern {
    padding: 0 1.25rem 1.25rem 1.25rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-modern.full-width {
    grid-column: 1 / -1;
}

.form-label-modern {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.form-input-modern {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input-modern:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.test-card-notice {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #2e7d32;
}

.test-card-notice i {
    font-size: 0.9rem;
}

/* M-Pesa Flow */
.mpesa-flow {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.flow-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.25rem;
}

.step-description {
    font-size: 0.8rem;
    color: #666;
}

/* Pay Button */
.pay-section-modern {
    padding: 1.5rem;
    background: white;
    position: sticky;
    bottom: 0;
    border-top: 1px solid #f0f0f0;
}

.pay-button-modern {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.pay-button-modern:hover:not(:disabled) {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pay-button-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.pay-button-modern:hover .button-arrow {
    transform: translateX(4px);
}

.security-notice {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* Success Notification Styles */
.login-notification.success {
    border-left-color: #10b981;
    background: #f0fdf4;
    color: #065f46;
}

.login-notification.success .notification-content i {
    color: #10b981;
}

.login-notification.error {
    border-left-color: #dc2626;
    background: #fef2f2;
    color: #7f1d1d;
}

.login-notification.error .notification-content i {
    color: #dc2626;
}

.login-notification.info {
    border-left-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

.login-notification.info .notification-content i {
    color: #3b82f6;
}
/* Form Validation Styles */
.form-input-modern:invalid {
    border-color: #feb2b2;
    background: #fff5f5;
}

.form-input-modern:focus:invalid {
    border-color: #e53e3e;
    box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.1);
}

.validation-hint {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.25rem;
    display: block;
}

/* M-Pesa specific styling */
#mpesaForm .form-input-modern {
    background: #f0fff4;
    border-color: #9ae6b4;
}

#mpesaForm .form-input-modern:focus {
    border-color: #48bb78;
    box-shadow: 0 0 0 2px rgba(72, 187, 120, 0.1);
}
/* Booking Complete State */
.header-center-compact .fa-check-circle {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Success page enhancements */
.booking-success-container {
    text-align: center;
    padding: 2rem 1rem;
}

.success-animation {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease;
}

.success-content h2 {
    color: #10b981;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.success-message {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Success actions */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: #000;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}
/* Booking Complete Header State */
.profile-username-compact .fa-check-circle {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Hide back button when session is complete */
.back-btn-compact[style*="display: none"] {
    display: none !important;
}
/* Secure Payment Styles */
.secure-payment-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-badge i {
    font-size: 1.25rem;
}

.payment-instructions {
    color: #6b7280;
}

.payment-instructions p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
}

.benefit-item i {
    font-size: 0.875rem;
}
/* Mobile calendar grid fix */
@media (max-width: 768px) {
  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 12px;
  }
  
  .calendar-month {
    margin-bottom: 1rem;
  }
  
  .calendar-day {
    padding: 4px;
    min-height: 30px;
  }
}
/* FULL WIDTH IFRAME SECTION - TIGHT LAYOUT */


/* BREAK OUT OF CONTAINER COMPLETELY */
.payment-iframe-section {
    background: white;
    padding: 1.5rem 0; /* Remove side padding */
    margin: 1rem -50vw; /* Negative margin to break out */
    width: 100vw; /* Full viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.iframe-container {
    width: 100vw; /* Full viewport width */
    height: 600px;
    border: 1px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    max-width: none;
}

.dpo-payment-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Also break the header out if needed */
.section-header {
    max-width: 100%;
    padding: 0 2rem; /* Add padding back only to content */
}

/* Mobile - full screen width */
@media (max-width: 768px) {
    .payment-iframe-section {
        padding: 1rem 0;
        margin: 0.5rem -50vw;
    }
    
    .iframe-container {
        height: 500px;
    }
    
    .section-header {
        padding: 0 1rem;
    }
}
/* 🆕 FEATURED PROPERTY STYLES */
.featured-property {
    position: relative;
    border: 2px solid;
    border-radius: 12px;
    overflow: hidden;
}

.featured-property.featured-level-1 {
    border-color: #f59e0b; /* Gold */
}

.featured-property.featured-level-2 {
    border-color: #6b7280; /* Silver */
}

.featured-property.featured-level-3 {
    border-color: #10b981; /* Green */
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px; /* CHANGED FROM left: 12px */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-badge.featured-level-1 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.featured-badge.featured-level-2 {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.featured-badge.featured-level-3 {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Make featured properties stand out more */
.featured-property .verified-property-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 70%);
}

.featured-property .verified-property-banner img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.featured-property:hover .verified-property-banner img {
    transform: scale(1.05);
}
/* 🎄 Animated Christmas App Bar - BLACK VERSION */
.christmas-app-bar {
    background: linear-gradient(135deg, #000000, #333333, #000000) !important;
    background-size: 400% 400% !important;
    animation: christmasGradient 3s ease infinite !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
@keyframes christmasGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Christmas lights animation */
.christmas-app-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #fef3c7, 
        #dc2626, 
        #059669, 
        #fef3c7, 
        #dc2626, 
        transparent
    );
    animation: christmasLights 3s linear infinite;
}

@keyframes christmasLights {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Animated logo */
.christmas-app-bar .logo {
    background: linear-gradient(135deg, #ffffff, #fef3c7, #ffffff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: logoShine 2s ease-in-out infinite !important;
}

@keyframes logoShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Christmas elements */
.christmas-floating {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    animation: floatElement 6s ease-in-out infinite;
}

@keyframes floatElement {
    0% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Search bar Christmas style */
.christmas-app-bar .search-bar {
    border: 2px solid rgba(254, 243, 199, 0.5) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(220, 38, 38, 0.6); }
}


.payment-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Payment Gateway Container */
.payment-gateway-container {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

.payment-gateway-loading {
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.payment-gateway-loading i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.payment-gateway-loading p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Gateway Display */
.gateway-display {
    background: white;
    border-radius: 12px;
    border-left: 4px solid;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

.gateway-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gateway-header i {
    font-size: 2rem;
}

.gateway-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #1e293b;
}

.gateway-header p {
    margin: 0.25rem 0 0 0;
    color: #64748b;
    font-size: 0.9rem;
}

.secure-badge {
    margin-left: auto;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gateway-info {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.gateway-info p {
    margin: 0.5rem 0;
    color: #475569;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gateway-info i {
    color: #10b981;
}

.payment-disclaimer {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
}

.gateway-error {
    text-align: center;
    padding: 2rem;
    background: #fef2f2;
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.gateway-error i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.gateway-error h4 {
    color: #dc2626;
    margin: 0 0 0.5rem 0;
}

.gateway-error p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* PayPal specific */
#paypal-button-container {
    margin: 1rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* PayPal Button */
.paypal-pay-button {
    width: 100%;
    padding: 1rem;
    background: #003087;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.paypal-pay-button:hover {
    background: #001f6d;
    transform: translateY(-2px);
}

.paypal-alternative {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Manual Payment Styles */
.info-badge {
    margin-left: auto;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.manual-payment-instructions {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.manual-payment-instructions h5 {
    margin-top: 0;
    color: #1e293b;
}

.manual-payment-instructions ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    color: #475569;
}

.manual-payment-instructions li {
    margin: 0.5rem 0;
}

.bank-details-section {
    margin-bottom: 1.5rem;
}

.bank-details-section h5 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.bank-details-grid {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-detail-label {
    font-weight: 600;
    color: #475569;
}

.bank-detail-value {
    color: #1e293b;
    font-weight: 500;
}

.contact-section {
    margin-bottom: 1.5rem;
}

.contact-section h5 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #3b82f6;
    width: 20px;
}

.manual-payment-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.manual-payment-actions button {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.manual-payment-actions .btn-primary {
    background: #10b981;
    color: white;
    border: none;
}

.manual-payment-actions .btn-primary:hover {
    background: #0da271;
    transform: translateY(-2px);
}

.manual-payment-actions .btn-secondary {
    background: white;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.manual-payment-actions .btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}
/* Stripe Button Styles */
.stripe-pay-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #635bff, #543cfc);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.stripe-pay-button:hover {
    background: linear-gradient(135deg, #543cfc, #4533e0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.3);
}

.card-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
    opacity: 0.8;
}
/* DPO Button Styles */
.dpo-pay-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.dpo-pay-button:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.payment-method-badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.payment-method-badge i {
    font-size: 1.1rem;
}

.payment-method-badge i.fa-cc-visa {
    color: #1a1f71;
}

.payment-method-badge i.fa-cc-mastercard {
    color: #eb001b;
}
/* Flutterwave Button Styles */
.flutterwave-pay-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f5a623, #f39c12);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.flutterwave-pay-button:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

.flutterwave-features .payment-method-badge {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #475569;
}

.flutterwave-features .payment-method-badge i {
    font-size: 1rem;
}

.flutterwave-features .payment-method-badge i.fab.fa-apple {
    color: #000000;
}

.flutterwave-features .payment-method-badge i.fab.fa-google {
    color: #4285f4;
}
/* Adyen Styles */
.adyen-payment-methods .payment-icon {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    color: #475569;
}

.adyen-payment-methods .payment-icon i.fab.fa-apple-pay {
    color: #000000;
}

.adyen-payment-methods .payment-icon i.fab.fa-google-pay {
    color: #4285f4;
}

.adyen-payment-methods .payment-icon i.fab.fa-paypal {
    color: #003087;
}

/* Adyen Drop-in customizations */
.adyen-checkout__payment-method--selected {
    border-color: #0abf53 !important;
}

.adyen-checkout__button {
    background: #0abf53 !important;
}

.adyen-checkout__button:hover {
    background: #09a449 !important;
}

/* Custom Adyen container */
#adyen-dropin-container {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    background: white;
}
/* Simple checkout styles */
.proceed-to-payment-section {
    margin: 2rem 0;
}

/* SIMPLE CHECKOUT STYLES - Won't affect other pages */
.modern-checkout-container {
    padding: 1rem;
}

/* Simple Header - Total Amount Only */
.checkout-header-simple {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.amount-display-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-label-simple {
    color: #475569;
    font-size: 1rem;
    font-weight: 500;
}

.amount-figure-simple {
    color: #000000;
    font-size: 1.75rem;
    font-weight: 700;
}

/* Simple Summary Section */
.summary-section-simple {
    margin-bottom: 2rem;
}

.section-header-simple {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.section-header-simple h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-card-simple {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Property Info */
.property-info-simple {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.property-name-simple {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.room-name-simple {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

/* Details Grid */
.details-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    text-align: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.detail-label {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.detail-value {
    display: block;
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Dates Section */
.dates-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.date-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.date-type {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.date-value-large {
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
}

/* Guest Section */
.guest-section {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.guest-section h4 {
    margin: 0 0 1rem 0;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
}

.guest-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.guest-row:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.guest-row span:first-child {
    color: #64748b;
}

.guest-info-value {
    color: #1e293b;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
   
}

/* Price Section */
.price-section-simple {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.price-row-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.price-row-simple span:first-child {
    color: #475569;
}

.price-row-simple span:last-child {
    color: #1e293b;
    font-weight: 600;
}

/* Black Payment Button */
.payment-button-section {
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.payment-button-black {
    width: 100%;
    max-width: 320px;
    padding: 1rem 2rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.payment-button-black:hover:not(:disabled) {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-button-black:active:not(:disabled) {
    transform: translateY(0);
}

.payment-button-black:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Ensure it doesn't affect other pages */
.room-name-simple {
    /* This won't affect your other .room-name classes */
    color: #1e293b !important;
    font-weight: 600 !important;
}

/* Hide all gateway containers - we don't need them */
.payment-gateway-container,
.gateway-display,
.gateway-header,
.gateway-info {
    display: none !important;
}