/**
 * Mamaia Travel - Modern Design System
 * 
 * Complete design overhaul for the most beautiful booking website in Romania
 * Inspired by Booking.com, Airbnb, and modern travel platforms
 * 
 * @package Mamaia_Travel_Child
 * @version 2.0.0
 */

/* ===================================================================
   CSS RESET & BASE STYLES
   =================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================================================
   MODERN COLOR SYSTEM
   =================================================================== */

:root {
    /* Mamaia Nord Brand Colors */
    --primary-turquoise: #37CEF1;
    --primary-turquoise-dark: #00B3E2;
    --primary-orange: #FF5500;
    --primary-gold: #FFC500;
    
    /* Modern Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;
    
    /* Semantic Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography */
    --font-heading: 'Josefin Sans', 'Inter', system-ui, sans-serif;
    --font-body: 'Poppins', 'Inter', system-ui, sans-serif;
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* ===================================================================
   TYPOGRAPHY SYSTEM
   =================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin: 0 0 var(--space-4) 0;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0 0 var(--space-4) 0;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-600);
}

.small {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.text-xs {
    font-size: 0.75rem;
}

/* ===================================================================
   CONTAINER SYSTEM
   =================================================================== */

/* Container system - consistent with theme */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .container-fluid {
        padding: 0 40px;
    }
}

@media (min-width: 640px) {
    .container-fluid {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container-fluid {
        padding: 0 var(--space-8);
    }
}

/* ===================================================================
   MODERN GRID SYSTEM
   =================================================================== */

.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-fill {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Responsive Grid */
@media (max-width: 767px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===================================================================
   FLEXBOX UTILITIES
   =================================================================== */

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ===================================================================
   MODERN BUTTON SYSTEM
   =================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(55, 206, 241, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: 0.75rem;
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: 1rem;
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: 1.125rem;
}

/* Button Variants */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-turquoise-dark));
    color: var(--white);
    border-color: var(--primary-turquoise);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-turquoise-dark), var(--primary-turquoise));
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-turquoise);
    border-color: var(--primary-turquoise);
}

.btn-outline:hover {
    background: var(--primary-turquoise);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: var(--gray-50);
    box-shadow: var(--shadow);
    color: var(--gray-900);
}

/* Special styling for white buttons on dark backgrounds */
.cta-section .btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-900);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.cta-section .btn-white:hover {
    background: var(--white);
    color: var(--gray-900);
    transform: translateY(-2px);
}

/* ===================================================================
   MODERN CARD SYSTEM
   =================================================================== */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.card-body {
    padding: var(--space-6);
}

.card-header {
    padding: var(--space-6) var(--space-6) 0;
}

.card-footer {
    padding: 0 var(--space-6) var(--space-6);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-image-lg {
    height: 300px;
}

.card-image-sm {
    height: 150px;
}

/* ===================================================================
   MODERN FORM SYSTEM
   =================================================================== */

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-turquoise);
    box-shadow: 0 0 0 3px rgba(55, 206, 241, 0.1);
}

.form-input::placeholder {
    color: var(--gray-500);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right var(--space-3) center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: var(--space-10);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===================================================================
   BADGE & TAG SYSTEM
   =================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.badge-primary {
    background: var(--primary-turquoise);
    color: var(--white);
}

.badge-secondary {
    background: var(--primary-orange);
    color: var(--white);
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}

.badge-gray {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* ===================================================================
   RATING SYSTEM
   =================================================================== */

.rating {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

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

.rating-star {
    width: 16px;
    height: 16px;
    color: var(--primary-gold);
}

.rating-score {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.rating-count {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ===================================================================
   SPACING UTILITIES
   =================================================================== */

.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mr-0 { margin-right: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }

.m-2 { margin: var(--space-2); }
.mt-2 { margin-top: var(--space-2); }
.mr-2 { margin-right: var(--space-2); }
.mb-2 { margin-bottom: var(--space-2); }
.ml-2 { margin-left: var(--space-2); }

.m-4 { margin: var(--space-4); }
.mt-4 { margin-top: var(--space-4); }
.mr-4 { margin-right: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.ml-4 { margin-left: var(--space-4); }

.m-6 { margin: var(--space-6); }
.mt-6 { margin-top: var(--space-6); }
.mr-6 { margin-right: var(--space-6); }
.mb-6 { margin-bottom: var(--space-6); }
.ml-6 { margin-left: var(--space-6); }

.m-8 { margin: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }
.mr-8 { margin-right: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }
.ml-8 { margin-left: var(--space-8); }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pr-0 { padding-right: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }

.p-2 { padding: var(--space-2); }
.pt-2 { padding-top: var(--space-2); }
.pr-2 { padding-right: var(--space-2); }
.pb-2 { padding-bottom: var(--space-2); }
.pl-2 { padding-left: var(--space-2); }

.p-4 { padding: var(--space-4); }
.pt-4 { padding-top: var(--space-4); }
.pr-4 { padding-right: var(--space-4); }
.pb-4 { padding-bottom: var(--space-4); }
.pl-4 { padding-left: var(--space-4); }

.p-6 { padding: var(--space-6); }
.pt-6 { padding-top: var(--space-6); }
.pr-6 { padding-right: var(--space-6); }
.pb-6 { padding-bottom: var(--space-6); }
.pl-6 { padding-left: var(--space-6); }

.p-8 { padding: var(--space-8); }
.pt-8 { padding-top: var(--space-8); }
.pr-8 { padding-right: var(--space-8); }
.pb-8 { padding-bottom: var(--space-8); }
.pl-8 { padding-left: var(--space-8); }

/* ===================================================================
   RESPONSIVE UTILITIES
   =================================================================== */

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

@media (max-width: 1199px) {
    .hidden-mobile { display: none !important; }
    .block-mobile { display: block !important; }
}

@media (min-width: 1200px) {
    .hidden-desktop { display: none !important; }
    .block-desktop { display: block !important; }
    
    /* Ensure mobile menu elements are completely hidden on desktop */
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ===================================================================
   ANIMATION SYSTEM
   =================================================================== */

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

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.4s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* ===================================================================
   ACCESSIBILITY
   =================================================================== */

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================================================
   HOTEL ARCHIVE PAGE STYLES
   =================================================================== */

.hotel-archive-page {
    min-height: 100vh;
}

/* Archive Hero Section */
.archive-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.archive-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.archive-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 179, 226, 0.8) 0%, rgba(55, 206, 241, 0.6) 100%);
    z-index: 2;
}

.archive-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--space-6);
}

.archive-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.archive-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.archive-search-form {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

/* Hotel Listings Section */
.hotel-listings-section {
    padding: var(--space-12) 0;
    background: var(--gray-50);
}

/* Filter Bar */
.hotels-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.filter-results .results-count {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.view-toggle {
    display: flex;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.view-btn {
    padding: var(--space-3) var(--space-4);
    background: white;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-600);
    font-size: 0.875rem;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary-turquoise);
    color: white;
}

.sort-select {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: white;
    font-size: 0.875rem;
    min-width: 180px;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-turquoise);
}

/* Hotels Grid */
.hotels-grid-container {
    width: 100%;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.hotels-grid.layout-list {
    grid-template-columns: 1fr;
}

.hotels-grid.layout-list .hotel-card {
    display: flex;
    max-width: none;
    height: auto;
}

.hotels-grid.layout-list .hotel-image-wrapper {
    flex: 0 0 300px;
    height: 250px;
}

.hotels-grid.layout-list .hotel-content {
    flex: 1;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hotel Card Enhancements */
.hotel-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
    height: fit-content;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hotel-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.hotel-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    background: var(--primary-orange);
    color: white;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    z-index: 2;
}

.hotel-wishlist {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    z-index: 2;
}

.wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--gray-600);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.hotel-content {
    padding: var(--space-6);
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-3);
}

.hotel-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.hotel-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hotel-title a:hover {
    color: var(--primary-turquoise);
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-left: var(--space-3);
}

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

.hotel-rating .stars i {
    color: var(--primary-gold);
    font-size: 0.875rem;
}

.rating-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
}

.hotel-location i {
    color: var(--primary-turquoise);
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.feature-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.hotel-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: var(--space-1);
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-turquoise);
}

.price-period {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* No Hotels Found */
.no-hotels-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-16) var(--space-6);
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: var(--space-6);
}

.no-results-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.no-results-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

/* Pagination */
.hotels-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--space-8);
}

.hotels-pagination .page-numbers {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.hotels-pagination .page-numbers a,
.hotels-pagination .page-numbers span {
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-700);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.hotels-pagination .page-numbers a:hover,
.hotels-pagination .page-numbers .current {
    background: var(--primary-turquoise);
    color: white;
    border-color: var(--primary-turquoise);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .archive-hero-title {
        font-size: 2.5rem;
    }
    
    .archive-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .archive-search-form {
        padding: var(--space-4);
    }
    
    .hotels-filter-bar {
        flex-direction: column;
        gap: var(--space-4);
        align-items: stretch;
    }
    
    .filter-controls {
        justify-content: space-between;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .hotels-grid.layout-list .hotel-card {
        flex-direction: column;
    }
    
    .hotels-grid.layout-list .hotel-image-wrapper {
        flex: none;
        height: 200px;
    }
    
    .hotels-grid.layout-list .hotel-content {
        padding: var(--space-4);
    }
    
    .hotel-header {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .hotel-rating {
        margin-left: 0;
    }
    
    .hotel-footer {
        flex-direction: column;
        gap: var(--space-4);
        align-items: flex-start;
    }
}

/* ===================================================================
   HOTEL SINGLE PAGE STYLES
   =================================================================== */

.hotel-single-page {
    min-height: 100vh;
}

/* Hero Section */
.hotel-hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hotel-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hotel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 179, 226, 0.8) 0%, rgba(55, 206, 241, 0.6) 100%);
    z-index: 2;
}

.hotel-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--space-6);
}

.hotel-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hotel-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.hotel-badge {
    background: var(--primary-orange);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    box-shadow: var(--shadow);
}

.hotel-badge.featured {
    background: var(--primary-orange);
}

.hotel-badge.top-rated {
    background: var(--primary-turquoise);
}

.hotel-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hotel-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 1.2rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

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

.hotel-rating .stars i {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-reviews {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Gallery Thumbnails */
/* Gallery Section */
.hotel-gallery-section {
    padding: var(--space-12) 0;
    background: var(--gray-50);
}

.hotel-gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-8);
    color: var(--gray-900);
}

.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Hotel Content */
.hotel-content-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.hotel-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.hotel-main-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

/* Quick Info Bar */
.hotel-quick-info {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.quick-info-item i {
    font-size: 1.25rem;
    color: var(--primary-turquoise);
    width: 24px;
    text-align: center;
}

.quick-info-item .label {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: block;
}

.quick-info-item .value {
    font-weight: 600;
    color: var(--gray-900);
    display: block;
}

/* Content Sections */
.hotel-description,
.hotel-amenities,
.hotel-rooms,
.hotel-reviews,
.hotel-location-map {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hotel-description h2,
.hotel-amenities h2,
.hotel-rooms h2,
.hotel-reviews h2,
.hotel-location-map h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: var(--gray-900);
}

.description-content {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius);
}

.amenity-item i {
    color: var(--primary-turquoise);
    font-size: 1rem;
}

/* Reviews */
.reviews-summary {
    margin-bottom: var(--space-8);
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.rating-score-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-turquoise);
    line-height: 1;
}

.rating-details {
    flex: 1;
}

.stars-large {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-2);
}

.stars-large i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.total-reviews {
    color: var(--gray-600);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.review-item {
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-3);
}

.reviewer-info strong {
    color: var(--gray-900);
    margin-right: var(--space-2);
}

.review-date {
    color: var(--gray-600);
    font-size: 0.875rem;
}

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

.review-rating i {
    color: var(--primary-gold);
    font-size: 0.875rem;
}

.review-content {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Sidebar */
.hotel-sidebar {
    position: sticky;
    top: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.booking-widget,
.contact-widget,
.share-widget {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.booking-widget-header {
    text-align: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.booking-widget-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-turquoise);
}

.price-period {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Contact Widget */
.contact-widget h3,
.share-widget h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.contact-item i {
    color: var(--primary-turquoise);
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--primary-turquoise);
}

/* Share Widget */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.share-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hotel-hero-title {
        font-size: 2.5rem;
    }
    
    .hotel-hero-meta {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .hotel-content-grid {
        padding: 0 var(--space-4);
    }
    
    .hotel-gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-thumb {
        height: 60px;
    }
    
    .rating-overview {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .rating-score-large {
        font-size: 3rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .hotel-meta {
        gap: var(--space-2);
    }
    
    .hotel-badges {
        flex-wrap: wrap;
        gap: var(--space-2);
    }
}

/* ===================================================================
   HEADER OVERRIDES
   =================================================================== */

/* Fixed Header Logo Overrides */
.site-header .site-logo,
.header-main .site-logo {
    width: 280px !important;
    max-width: 280px !important;
    flex-shrink: 0 !important;
}

.site-header .logo-title,
.header-main .logo-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.3px !important;
    white-space: nowrap !important;
}

.site-header .logo-tagline,
.header-main .logo-tagline {
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
    margin-top: -1px !important;
    color: var(--gray-500) !important;
    white-space: nowrap !important;
}

/* Mobile Header Responsive Overrides - Extended breakpoint based on menu width */
@media (max-width: 1199px) {
    /* Slightly larger mobile logo */
    .site-header .site-logo,
    .header-main .site-logo {
        width: 180px !important;
        max-width: 180px !important;
        margin-left: 0 !important; /* Extra left spacing for logo */
    }
    
    .site-header .logo-title,
    .header-main .logo-title {
        font-size: 0.85rem !important;
    }
    
    .site-header .logo-tagline,
    .header-main .logo-tagline {
        font-size: 0.52rem !important;
    }
    
    /* Mobile header spacing */
    .header-main {
        padding: 12px 20px !important;
    }
    
    /* Ensure proper header layout on mobile */
    .header-main .container {
        padding: 0 !important;
    }
    
    .header-main .container > div {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Hide navigation completely on mobile so it doesn't take space */
    .main-navigation.hidden-mobile {
        display: none !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Move hamburger to the right */
    .header-actions {
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-menu-toggle {
        margin: 0 !important;
    }
}

/* ===================================================================
   TOURFIC TEMPLATE OVERRIDES
   =================================================================== */

/* Fix Tourfic design-2 template to look modern and full-width */
.tf-single-template__two .tf-container,
.tf-single-template__two .tf-content-wrapper .tf-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 var(--space-6) !important;
    width: 100% !important;
}

/* Override any Tourfic container restrictions */
.tf-single-template__two .tf-container {
    max-width: 1200px !important;
}

/* Force full width for all containers in hotel single pages */
body.single-tf_hotel .tf-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 var(--space-6) !important;
}

/* Hero section full width */
.tf-single-template__two .tf-hero-section-wrap {
    height: 60vh !important;
    min-height: 500px !important;
}

/* Content wrapper full width */
.tf-single-template__two .tf-content-wrapper {
    background: var(--gray-50) !important;
    padding: var(--space-12) 0 !important;
}

/* Make details layout single column instead of sidebar */
.tf-single-template__two .tf-details {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
}

.tf-single-template__two .tf-details-left {
    width: 100% !important;
    max-width: none !important;
}

.tf-single-template__two .tf-details-right {
    width: 100% !important;
    max-width: none !important;
    order: -1 !important; /* Move sidebar content to top */
}

/* Style individual sections */
.tf-single-template__two .tf-overview-wrapper,
.tf-single-template__two .tf-section,
.tf-single-template__two .tf-template-section {
    background: var(--white) !important;
    padding: var(--space-8) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow) !important;
    margin-bottom: var(--space-6) !important;
}

/* Style Tourfic headings */
.tf-single-template__two h1,
.tf-single-template__two h2,
.tf-single-template__two h3,
.tf-single-template__two .tf-section-title {
    font-family: var(--font-heading) !important;
    color: var(--gray-900) !important;
}

/* Style Tourfic buttons */
.tf-single-template__two .tf-btn,
.tf-single-template__two .tf-booking-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold)) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    padding: var(--space-3) var(--space-6) !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    transition: all var(--transition-fast) !important;
}

.tf-single-template__two .tf-btn:hover,
.tf-single-template__two .tf-booking-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow) !important;
}

/* ===================================================================
   PRINT STYLES
   =================================================================== */

@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* ===== HOTEL ARCHIVE - BOOKING.COM STYLE ===== */

/* Top Search Bar */
.archive-search-bar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: var(--header-height, 80px);
    z-index: 100;
}

.search-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.search-summary {
    flex: 1;
}

.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
}

.search-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.search-dates,
.search-guests {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-dates i,
.search-guests i {
    color: var(--color-primary);
}

.modify-search-btn {
    white-space: nowrap;
}

.search-form-container {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.search-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
    gap: 1rem;
    align-items: end;
}

.search-form-grid .form-group {
    display: flex;
    flex-direction: column;
}

.search-form-grid label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.search-form-grid input,
.search-form-grid select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.guests-selector {
    display: flex;
    gap: 0.5rem;
}

.guests-selector select {
    flex: 1;
    min-width: 0;
}

/* Main Archive Layout */
.archive-main-content {
    padding: 2rem 0;
}

.archive-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Sidebar Filters */
.filters-sidebar {
    position: sticky;
    top: calc(var(--header-height, 80px) + 100px);
    max-height: calc(100vh - var(--header-height, 80px) - 120px);
    overflow-y: auto;
}

.filters-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
}

.filters-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: var(--color-text-primary);
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 1rem;
}

.filter-heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--color-text-primary);
}

/* Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-range {
    position: relative;
}

.price-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

/* Filter Checkboxes */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    position: relative;
}

.filter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    transition: all 0.2s ease;
}

.filter-checkbox:hover .checkmark {
    border-color: var(--color-primary);
}

.filter-checkbox input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

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

.filter-checkbox .stars i {
    font-size: 0.8rem;
    color: #ffc107;
}

.filter-checkbox i:not(.stars i) {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
}

.filter-actions {
    text-align: center;
}

.clear-filters {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Hotel Listings */
.hotels-content {
    min-height: 600px;
}

.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.results-location {
    color: var(--color-text-secondary);
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    background: #fff;
}

.view-toggle {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.view-btn {
    padding: 0.5rem 0.75rem;
    border: none;
    background: #fff;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn:hover,
.view-btn.active {
    background: var(--color-primary);
    color: #fff;
}

/* Hotel Cards - Booking.com Style */
.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel-card-booking {
    display: grid;
    grid-template-columns: 280px 1fr 200px;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    padding: 1rem;
}

.hotel-card-booking:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.hotel-image-section {
    position: relative;
}

.hotel-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hotel-wishlist {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.wishlist-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: #fff;
    transform: scale(1.1);
}

.wishlist-btn.active i {
    color: var(--color-accent);
}

.hotel-info-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.hotel-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.hotel-title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hotel-title a:hover {
    color: var(--color-primary);
}

.hotel-rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

.rating-stars i {
    font-size: 0.8rem;
    color: #ddd;
}

.rating-stars i.active {
    color: #ffc107;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.score {
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.score-text {
    font-weight: 600;
    color: var(--color-text-primary);
}

.reviews-count {
    color: var(--color-text-secondary);
}

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

.hotel-location i {
    color: var(--color-primary);
}

.distance {
    color: var(--color-primary);
    font-weight: 600;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.feature-item i {
    color: var(--color-success);
    font-size: 0.7rem;
}

.hotel-description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.hotel-price-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
}

.price-info {
    margin-bottom: 1rem;
}

.price-details {
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

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

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-period {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    display: block;
}

.price-includes {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    display: block;
    margin-top: 0.25rem;
}

.availability-info {
    font-size: 0.8rem;
}

.availability-text {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-success);
    font-weight: 600;
}

.availability-text i {
    font-size: 0.7rem;
}

.btn-book {
    width: 100%;
    padding: 0.75rem 1rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Grid View */
.hotels-list.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.hotels-list.layout-grid .hotel-card-booking {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
}

.hotels-list.layout-grid .hotel-image-wrapper {
    height: 240px;
}

.hotels-list.layout-grid .hotel-info-section {
    padding: 1rem 0;
}

.hotels-list.layout-grid .hotel-price-section {
    align-items: stretch;
    text-align: left;
}

.hotels-list.layout-grid .price-info {
    margin-bottom: 0.5rem;
}

/* No Results */
.no-hotels-found {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-secondary);
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 3rem;
    color: var(--color-text-tertiary);
    margin-bottom: 1rem;
}

.no-results-content h3 {
    margin: 0 0 1rem 0;
    color: var(--color-text-primary);
}

.no-results-content p {
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

/* Pagination */
.hotels-pagination {
    margin-top: 2rem;
    text-align: center;
}

.hotels-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0.25rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.hotels-pagination .page-numbers:hover,
.hotels-pagination .page-numbers.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.hotels-pagination .page-numbers.prev,
.hotels-pagination .page-numbers.next {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .archive-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        max-height: none;
        order: 2;
        margin-top: 2rem;
    }
    
    .hotels-content {
        order: 1;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .search-form-grid .form-group:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .search-bar-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hotel-card-booking {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hotel-image-wrapper {
        height: 200px;
    }
    
    .hotel-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hotel-rating-section {
        align-self: flex-start;
    }
    
    .hotel-price-section {
        align-items: stretch;
        text-align: left;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
    }
    
    .results-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .results-controls {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .archive-search-bar {
        padding: 0.75rem 0;
    }
    
    .search-title {
        font-size: 1.2rem;
    }
    
    .filters-container {
        padding: 1rem;
    }
    
    .hotel-card-booking {
        padding: 0.75rem;
    }
    
    .hotel-features {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .price-amount .amount {
        font-size: 1.2rem;
    }
}

/* Animation for filters */
.filter-checkbox,
.hotel-card-booking {
    transition: all 0.2s ease;
}

.filter-checkbox:hover {
    transform: translateX(2px);
}

/* Sticky sidebar scroll styling */
.filters-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* ===== END HOTEL ARCHIVE - BOOKING.COM STYLE ===== */

/* ===== HOTEL ARCHIVE - BOOKING.COM STYLE WITH TOURFIC INTEGRATION ===== */

/* Main Archive Container */
.mamaia-hotel-archive {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Top Search Bar - Mamaia Nord Style */
.archive-search-bar {
    background: linear-gradient(135deg, #fff 0%, #f8fffe 100%);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
    position: sticky;
    top: var(--header-height, 80px);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.search-summary {
    flex: 1;
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 1rem 0;
    font-family: 'Josefin Sans', sans-serif;
}

.search-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.search-details .results-count {
    font-weight: 500;
    color: var(--color-text-primary);
}

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

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

/* Search Form Container */
.search-form-container {
    margin-top: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.search-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr auto;
    gap: 1rem;
    align-items: end;
}

.search-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.guests-selector {
    display: flex;
    gap: 0.5rem;
}

.guests-selector select {
    flex: 1;
}

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

.search-btn:hover {
    background: var(--color-primary-dark);
}

/* Archive Content Layout */
.archive-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

/* Enhanced Filters Sidebar */
.filters-sidebar {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height, 80px) + 120px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.filters-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-primary);
}

.clear-filters {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
}

.clear-filters:hover {
    color: var(--color-primary-dark);
}

/* Filter Groups */
.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--color-text-primary);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.filter-option:hover {
    background: #f8f9fa;
    margin: 0 -0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
}

.filter-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    transition: all 0.2s ease;
}

.filter-option input[type="checkbox"]:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-option .count {
    margin-left: auto;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Price Range Filter */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-inputs input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.price-slider {
    position: relative;
    height: 20px;
}

.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    appearance: none;
    pointer-events: none;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
}

/* Star Rating Display */
.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: #ffc107;
    font-size: 14px;
}

/* Apply Filters Button */
.apply-filters-btn {
    width: 100%;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.apply-filters-btn:hover {
    background: var(--color-primary-dark);
}

/* Hotels Listing */
.hotels-listing {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.results-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.view-toggle {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.view-btn {
    background: white;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn.active {
    background: var(--color-primary);
    color: white;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.sort-dropdown select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    gap: 1.5rem;
}

.hotels-grid.list-view {
    grid-template-columns: 1fr;
}

.hotels-grid.grid-view {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

/* Enhanced Hotel Cards */
.hotel-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hotels-grid.list-view .hotel-card {
    flex-direction: row;
    min-height: 200px;
}

.hotel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.hotel-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.hotels-grid.list-view .hotel-image {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.wishlist-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--color-accent);
    color: white;
}

.gallery-indicator {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Hotel Content */
.hotel-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hotel-title-section {
    flex: 1;
}

.hotel-type {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hotel-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.hotel-title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotel-title a:hover {
    color: var(--color-primary);
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.hotel-location i {
    color: var(--color-primary);
}

.hotel-location .address {
    opacity: 0.8;
}

.hotel-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.rating-score {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.rating-count {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: normal;
}

/* Hotel Features */
.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hotel-features .feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.hotel-features .feature i {
    color: var(--color-primary);
    font-size: 12px;
}

.more-features {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Hotel Footer */
.hotel-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.hotel-pricing {
    flex: 1;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

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

.view-hotel-btn {
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 4rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

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

.no-results-content p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.clear-filters-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: var(--color-primary-dark);
}

/* Pagination */
.hotels-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.hotels-pagination .page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hotels-pagination a,
.hotels-pagination span {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.hotels-pagination a:hover,
.hotels-pagination .current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.hotels-pagination .page-numbers.prev,
.hotels-pagination .page-numbers.next {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .archive-content {
        grid-template-columns: 280px 1fr;
        gap: 1.5rem;
    }
    
    .search-fields {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.75rem;
    }
    
    .search-field:nth-child(4) {
        grid-column: 1 / -1;
    }
    
    .search-field:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .archive-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filters-sidebar {
        position: static;
        order: 2;
    }
    
    .hotels-listing {
        order: 1;
    }
    
    .search-bar-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .search-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .search-fields {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .results-controls {
        justify-content: space-between;
    }
    
    .hotels-grid.list-view .hotel-card {
        flex-direction: column;
    }
    
    .hotels-grid.list-view .hotel-image {
        width: 100%;
        height: 200px;
    }
    
    .hotel-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hotel-rating {
        align-items: flex-start;
        text-align: left;
    }
    
    .hotel-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .archive-search-bar {
        padding: 0.75rem 0;
    }
    
    .search-title {
        font-size: 1.25rem;
    }
    
    .filters-sidebar,
    .hotels-listing {
        padding: 1rem;
    }
    
    .hotel-card {
        margin: 0 -0.5rem;
    }
    
    .modify-search-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Animation for filters */
.filter-checkbox,
.hotel-card-booking {
    transition: all 0.2s ease;
}

.filter-checkbox:hover {
    transform: translateX(2px);
}

/* Sticky sidebar scroll styling */
.filters-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* ===== END HOTEL ARCHIVE - BOOKING.COM STYLE ===== */

/* ===== END HOTEL ARCHIVE - COMPREHENSIVE TOURFIC FEATURES ===== */

/* ===== ENHANCED HOTEL SINGLE PAGE FEATURES ===== */

/* Promotional Tags */
.promotional-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.promo-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hotel Facilities */
.mamaia-facilities {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.facilities-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.facilities-category h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 0.5rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--color-background-light);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
    position: relative;
}

.facility-item:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.facility-item.favorite {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-color: var(--color-accent);
}

.facility-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.facility-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.favorite-star {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* Nearby Places */
.mamaia-nearby-places {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nearby-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.nearby-place-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-background-light);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.nearby-place-item:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.place-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.place-name {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.place-distance {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Airport Services */
.mamaia-airport-services {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.airport-services-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-intro {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-lighter));
    border-radius: 8px;
}

.services-intro i {
    font-size: 2rem;
    color: var(--color-primary);
}

.services-intro h3 {
    margin: 0 0 0.5rem 0;
    color: var(--color-primary);
}

.services-intro p {
    margin: 0;
    color: var(--color-text-secondary);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-background-light);
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.service-item i {
    color: var(--color-success);
    font-size: 1.1rem;
}

/* FAQ Section */
.mamaia-faq {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--color-background-light);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: var(--color-primary-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-content {
    padding: 1.5rem;
    background: white;
}

/* Terms & Conditions */
.mamaia-terms {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-content {
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.terms-content h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content ul {
    padding-left: 2rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

/* Enquiry Form */
.mamaia-enquiry {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.enquiry-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enquiry-intro p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.enquiry-submit-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

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

/* Enhanced Hotel Archive Features */
.hotel-additional-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
}

.airport-service,
.nearby-info,
.facilities-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.airport-service i,
.nearby-info i,
.facilities-count i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
}

/* Hotels List - Vertical Booking.com Style */
.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tourfic Integration Styles */
.tourfic-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tourfic-filters .tf_widget {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}

.tourfic-filters .tf-widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary-light);
}

.tourfic-filters .tf-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tourfic-filters .tf-filter li {
    margin-bottom: 0.75rem;
}

.tourfic-filters .tf-filter label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.tourfic-filters .tf-filter label:hover {
    color: var(--color-primary);
}

.tourfic-filters .tf-filter input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    margin: 0;
}

.tourfic-filters .tf-filter input[type="checkbox"]:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Price Range Styling */
.tourfic-filters .tf-hotel-result-price-range,
.tourfic-filters .tf-tour-result-price-range,
.tourfic-filters .tf-apartment-result-price-range {
    margin-top: 1rem;
}

/* See More/Less buttons */
.tourfic-filters .see-more,
.tourfic-filters .see-less {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.tourfic-filters .see-more:hover,
.tourfic-filters .see-less:hover {
    color: var(--color-primary-dark);
}

/* Hotel Cards - Override Tourfic styling with Mamaia Nord design */
.hotels-list .tf-item-card,
.hotels-list .single-tour-wrap {
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid var(--color-border) !important;
    background: white !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

/* Tourfic Card Content Styling */
.hotels-list .tf-item-card .tf-item-featured,
.hotels-list .single-tour-wrap .tourfic-single-left {
    border-radius: 12px 0 0 12px !important;
    overflow: hidden !important;
}

.hotels-list .tf-item-card .tf-item-des,
.hotels-list .single-tour-wrap .tourfic-single-right {
    padding: 1.5rem !important;
    background: white !important;
}

/* Hotel Image Styling */
.hotels-list .tf-item-card img,
.hotels-list .single-tour-wrap img {
    border-radius: 12px 0 0 12px !important;
    transition: transform 0.3s ease !important;
    object-fit: cover !important;
    height: 200px !important;
    width: 100% !important;
}

/* Hotel Title Styling */
.hotels-list .tf-item-card h2,
.hotels-list .tf-item-card h3,
.hotels-list .single-tour-wrap h2,
.hotels-list .single-tour-wrap h3 {
    font-family: 'Josefin Sans', sans-serif !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--color-text-primary) !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
}

.hotels-list .tf-item-card h2 a,
.hotels-list .tf-item-card h3 a,
.hotels-list .single-tour-wrap h2 a,
.hotels-list .single-tour-wrap h3 a {
    color: var(--color-text-primary) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.hotels-list .tf-item-card h2 a:hover,
.hotels-list .tf-item-card h3 a:hover,
.hotels-list .single-tour-wrap h2 a:hover,
.hotels-list .single-tour-wrap h3 a:hover {
    color: var(--color-primary) !important;
}

/* Hotel Location/Address Styling */
.hotels-list .tf-item-card .tf-item-location,
.hotels-list .single-tour-wrap .tf-item-location {
    color: var(--color-text-secondary) !important;
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.hotels-list .tf-item-card .tf-item-location i,
.hotels-list .single-tour-wrap .tf-item-location i {
    color: var(--color-primary) !important;
}

/* Hotel Features/Amenities Styling */
.hotels-list .tf-item-card .tf-features,
.hotels-list .single-tour-wrap .tf-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
}

.hotels-list .tf-item-card .tf-features span,
.hotels-list .single-tour-wrap .tf-features span {
    background: var(--color-primary-light) !important;
    color: var(--color-primary) !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}

/* Hotel Price Styling */
.hotels-list .tf-item-card .tf-item-price,
.hotels-list .single-tour-wrap .tf-item-price {
    text-align: right !important;
    margin-top: auto !important;
}

.hotels-list .tf-item-card .tf-item-price .price,
.hotels-list .single-tour-wrap .tf-item-price .price {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
    font-family: 'Josefin Sans', sans-serif !important;
}

.hotels-list .tf-item-card .tf-item-price .per-night,
.hotels-list .single-tour-wrap .tf-item-price .per-night {
    font-size: 0.9rem !important;
    color: var(--color-text-secondary) !important;
    margin-left: 0.5rem !important;
}

/* Booking Button Styling */
.hotels-list .tf-item-card .tf-btn,
.hotels-list .single-tour-wrap .tf-btn,
.hotels-list .tf-item-card button,
.hotels-list .single-tour-wrap button {
    background: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 1rem !important;
}

.hotels-list .tf-item-card .tf-btn:hover,
.hotels-list .single-tour-wrap .tf-btn:hover,
.hotels-list .tf-item-card button:hover,
.hotels-list .single-tour-wrap button:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(55, 206, 241, 0.3) !important;
}

/* Featured Badge Styling */
.hotels-list .tf-item-card .tf-feature,
.hotels-list .single-tour-wrap .tf-featured-badge {
    background: var(--color-accent) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0 0 8px 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Hotel Rating Styling */
.hotels-list .tf-item-card .tf-rating,
.hotels-list .single-tour-wrap .tf-rating {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.hotels-list .tf-item-card .tf-rating .stars,
.hotels-list .single-tour-wrap .tf-rating .stars {
    color: #ffc107 !important;
}

.hotels-list .tf-item-card .tf-rating .score,
.hotels-list .single-tour-wrap .tf-rating .score {
    background: var(--color-primary) !important;
    color: white !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 4px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

/* Search Bar Additional Styling */
.modify-search-btn {
    background: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 15px rgba(55, 206, 241, 0.3) !important;
}

.modify-search-btn:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(55, 206, 241, 0.4) !important;
}

.search-details {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    color: var(--color-text-secondary) !important;
    font-size: 1rem !important;
    margin-top: 0.5rem !important;
}

.search-details span {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.search-details i {
    color: var(--color-primary) !important;
}

/* Search Form Container */
.search-form-container {
    background: white !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    margin-top: 2rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid var(--color-border) !important;
}

.booking-search-form .form-fields {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1.5rem !important;
    align-items: end !important;
}

.booking-search-form .search-field label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: var(--color-text-primary) !important;
}

.booking-search-form .search-field input,
.booking-search-form .search-field select {
    width: 100% !important;
    padding: 0.75rem !important;
    border: 2px solid var(--color-border) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: border-color 0.2s ease !important;
}

.booking-search-form .search-field input:focus,
.booking-search-form .search-field select:focus {
    outline: none !important;
    border-color: var(--color-primary) !important;
}

.booking-search-form .search-btn {
    background: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    justify-content: center !important;
}

.booking-search-form .search-btn:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-2px) !important;
}

/* Results Header Styling */
.results-header {
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid var(--color-border) !important;
}

.results-count {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--color-text-primary) !important;
}

.sort-dropdown label {
    font-weight: 600 !important;
    color: var(--color-text-primary) !important;
    margin-right: 1rem !important;
}

.sort-dropdown select {
    padding: 0.5rem 1rem !important;
    border: 2px solid var(--color-border) !important;
    border-radius: 8px !important;
    background: white !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: border-color 0.2s ease !important;
}

.sort-dropdown select:focus {
    outline: none !important;
    border-color: var(--color-primary) !important;
}

.hotels-list .tf-item-card:hover,
.hotels-list .single-tour-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure proper grid layout is disabled for vertical list */
.hotels-list .tf-item-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.hotels-list .tf-item-cards .tf-item-card {
    width: 100% !important;
    max-width: none !important;
}

/* Override any grid layouts from Tourfic */
.hotels-list .tf-layout-grid .tf-item-card {
    width: 100% !important;
    flex: none !important;
}

/* Fallback card styling */
.hotel-card-fallback {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}

.hotel-card-fallback h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.hotel-card-fallback h3 a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hotel-card-fallback h3 a:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .nearby-places-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .archive-content {
        flex-direction: column;
    }
    
    .filters-sidebar {
        order: 2;
        width: 100%;
        max-width: none;
    }
    
    .hotels-listing {
        order: 1;
        max-width: 100%;
    }
}

/* Hotel Archive Styling */
.mamaia-hotel-archive {
    background-color: var(--color-light-gray);
    min-height: 100vh;
}

.archive-search-bar {
    background: linear-gradient(135deg, var(--primary-turquoise) 0%, var(--primary-turquoise-dark) 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.search-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.search-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.modify-search-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modify-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.search-form-container {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.archive-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

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

.clear-filters {
    background: none;
    border: none;
    color: var(--primary-turquoise-dark);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.results-count {
    font-weight: 600;
    color: var(--color-dark-gray);
}

.sort-dropdown select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-light-gray);
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

/* Booking.com Style Hotel Cards */
.booking-hotel-card {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    position: relative;
}

.booking-hotel-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Booking.com Image Section */
.booking-hotel-image {
    position: relative;
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.booking-hotel-card:hover .hotel-main-image {
    transform: scale(1.05);
}

.image-overlay-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.booking-wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s ease;
    color: #6b6b6b;
}

.booking-wishlist-btn:hover {
    background: white;
    color: #d32f2f;
    transform: scale(1.1);
}

.gallery-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: all;
}

.genius-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #003580;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Booking.com Content Section */
.booking-hotel-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.hotel-title-section {
    flex: 1;
}

.booking-hotel-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.booking-hotel-title a {
    color: #003580;
    text-decoration: none;
    transition: color 0.2s ease;
}

.booking-hotel-title a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.hotel-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
}

.hotel-stars i {
    color: #ffa500;
    font-size: 12px;
}

.hotel-stars .hotel-type {
    margin-left: 8px;
    color: #6b6b6b;
    font-size: 12px;
    font-weight: 400;
}

.booking-guest-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.rating-text {
    text-align: right;
}

.rating-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #003580;
    line-height: 1.2;
}

.review-count {
    display: block;
    font-size: 12px;
    color: #6b6b6b;
    line-height: 1.2;
}

.rating-score {
    background: #003580;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.booking-hotel-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 8px;
}

.booking-hotel-location i {
    color: #0066cc;
    font-size: 11px;
}

.show-map-link {
    color: #0066cc;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 500;
}

.show-map-link:hover {
    text-decoration: underline;
}

.booking-promo-tags {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.promo-tag {
    background: #00b300;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.booking-hotel-description {
    margin-bottom: 8px;
}

.booking-hotel-description p {
    font-size: 14px;
    color: #262626;
    line-height: 1.4;
    margin: 0;
}

.booking-hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.booking-hotel-features .feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b6b6b;
}

.booking-hotel-features .feature-item i {
    color: #00b300;
    font-size: 11px;
}

.booking-hotel-features .more-features {
    color: #0066cc;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.booking-availability-info {
    margin-top: auto;
}

.availability-text {
    font-size: 12px;
    color: #d32f2f;
    font-weight: 500;
}

/* Booking.com Price Section */
.booking-hotel-price {
    width: 180px;
    flex-shrink: 0;
    padding: 16px;
    border-left: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.price-section {
    text-align: right;
    margin-bottom: 16px;
}

.original-price {
    margin-bottom: 4px;
}

.crossed-price {
    font-size: 12px;
    color: #6b6b6b;
    text-decoration: line-through;
}

.current-price {
    margin-bottom: 2px;
}

.price-amount {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
}

.price-period {
    font-size: 12px;
    color: #6b6b6b;
    margin-left: 4px;
}

.total-price {
    margin-bottom: 4px;
}

.total-amount {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.total-period {
    font-size: 12px;
    color: #6b6b6b;
    margin-left: 4px;
}

.taxes-info {
    font-size: 11px;
    color: #00b300;
    margin-bottom: 8px;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.btn-booking-primary {
    background: #0071c2;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    min-width: 140px;
}

.btn-booking-primary:hover {
    background: #005999;
}

.quick-actions {
    display: flex;
    gap: 8px;
}

.quick-action-btn {
    background: none;
    border: 1px solid #0071c2;
    color: #0071c2;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.quick-action-btn:hover {
    background: #0071c2;
    color: white;
}

/* Responsive Design for Booking.com Style */
@media (max-width: 768px) {
    .booking-hotel-card {
        flex-direction: column;
    }
    
    .booking-hotel-image {
        width: 100%;
        height: 200px;
    }
    
    .booking-hotel-price {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e6e6e6;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-section {
        text-align: left;
        margin-bottom: 0;
    }
    
    .booking-actions {
        flex-direction: row;
        align-items: center;
    }
    
    .btn-booking-primary {
        min-width: 120px;
    }
}

/* Archive page updates for Booking.com style */
.hotels-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Update existing styles to work with new cards */
.mamaia-hotel-card {
    display: none; /* Hide old cards */
}

/* ===================================================================
   TOURFIC NATIVE COMPONENTS STYLING - BOOKING.COM INSPIRED
   =================================================================== */

/* Wrapper for our custom styling */
.mamaia-booking-style-wrapper {
    font-family: var(--font-body);
}

/* Tourfic Archive Design-1 Styling */
.mamaia-booking-style-wrapper .tf-archive-design-1 {
    background-color: #f5f5f5;
}

/* Container and Layout */
.mamaia-booking-style-wrapper .tf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mamaia-booking-style-wrapper .tf-archive-inner {
    gap: 24px;
}

/* Archive Header */
.mamaia-booking-style-wrapper .tf-archive-head {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
}

.mamaia-booking-style-wrapper .tf-counter-title {
    font-size: 16px;
    font-weight: 600;
    color: #343A40;
}

.mamaia-booking-style-wrapper .tf-total-results {
    color: var(--primary-turquoise-dark);
    font-weight: 600;
}

/* List/Grid View Toggle */
.mamaia-booking-style-wrapper .tf-list-grid a {
    background: white;
    border: 1px solid #ccc;
    color: var(--primary-turquoise-dark);
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.mamaia-booking-style-wrapper .tf-list-grid a.active,
.mamaia-booking-style-wrapper .tf-list-grid a:hover {
    background: var(--primary-turquoise-dark);
    color: white;
    border-color: var(--primary-turquoise-dark);
}

/* Sorting Dropdown */
.mamaia-booking-style-wrapper .tf-sorting-selection-warper select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    background: white;
    color: #262626;
}

/* Sidebar Styling */
.mamaia-booking-style-wrapper .tf-sidebar {
    background: white;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

/* Search Form in Sidebar */
.mamaia-booking-style-wrapper .tf-hotel-side-booking {
    background: transparent;
    border: none;
    padding: 0;
}

.mamaia-booking-style-wrapper .tf-hotel-side-booking .tf-field-group {
    margin-bottom: 16px;
}

.mamaia-booking-style-wrapper .tf-hotel-side-booking label {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 6px;
    display: block;
}

.mamaia-booking-style-wrapper .tf-hotel-side-booking input,
.mamaia-booking-style-wrapper .tf-hotel-side-booking select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

.mamaia-booking-style-wrapper .tf-hotel-side-booking button {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mamaia-booking-style-wrapper .tf-hotel-side-booking button:hover {
    background: #E54A00;
}

/* Hotel Cards - Tourfic Native Design-1 Styling */
.mamaia-booking-style-wrapper .tf-item-card {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease;
    display: flex !important;
    flex-direction: row;
    position: relative;
}

.mamaia-booking-style-wrapper .tf-item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hotel Card Image Section */
.mamaia-booking-style-wrapper .tf-item-card .tf-item-featured {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-item-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mamaia-booking-style-wrapper .tf-item-card:hover .tf-item-featured img {
    transform: scale(1.05);
}

/* Featured tags and promotional badges */
.mamaia-booking-style-wrapper .tf-item-card .tf-tag-items {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-features-box .tf-feature {
    background: var(--primary-orange);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-multiple-tag-item {
    background: var(--primary-turquoise-dark);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
}

/* Hotel Card Content Section */
.mamaia-booking-style-wrapper .tf-item-card .tf-item-details {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hotel Title */
.mamaia-booking-style-wrapper .tf-item-card .tf-title h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-title h2 a {
    color: var(--primary-turquoise-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-title h2 a:hover {
    color: var(--primary-turquoise);
    text-decoration: underline;
}

/* Hotel Location */
.mamaia-booking-style-wrapper .tf-item-card .tf-title-meta {
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 8px;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-title-meta i {
    color: var(--primary-turquoise-dark);
    margin-right: 4px;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-title-meta p {
    margin: 0;
    font-size: 12px;
}

/* Hotel Features */
.mamaia-booking-style-wrapper .tf-item-card .tf-archive-features ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0;
    list-style: none;
    padding: 0;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-archive-features li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b6b6b;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-archive-features li i {
    color: var(--primary-turquoise);
    font-size: 11px;
}

/* Hotel Description */
.mamaia-booking-style-wrapper .tf-item-card .tf-details {
    margin: 8px 0;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-details p {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.4;
    margin: 0;
}

/* Hotel Footer with Price and Button */
.mamaia-booking-style-wrapper .tf-item-card .tf-post-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-pricing {
    flex: 1;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-pricing .tf-archive-price-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
}

.mamaia-booking-style-wrapper .tf-item-card .tf-pricing .tf-archive-price-currency {
    font-size: 12px;
    color: #6b6b6b;
}

/* Booking Button */
.mamaia-booking-style-wrapper .tf-item-card .tf-booking-bttns .tf_btn {
    background: var(--primary-orange);
    color: white !important;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    display: inline-block;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-booking-bttns .tf_btn:hover {
    background: #E54A00;
    color: white !important;
    text-decoration: none;
}

/* Pagination */
.mamaia-booking-style-wrapper .tf-pagination-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 20px 0;
}

.mamaia-booking-style-wrapper .tf-pagination-bar a,
.mamaia-booking-style-wrapper .tf-pagination-bar span {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: var(--primary-turquoise-dark);
    font-weight: 500;
    transition: all 0.2s ease;
}

.mamaia-booking-style-wrapper .tf-pagination-bar a:hover,
.mamaia-booking-style-wrapper .tf-pagination-bar .current {
    background: var(--primary-turquoise-dark);
    color: white;
    border-color: var(--primary-turquoise-dark);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mamaia-booking-style-wrapper .tf-archive-inner {
        flex-direction: column;
    }
    
    .mamaia-booking-style-wrapper .tf-sidebar {
        order: -1;
        position: static;
        margin-bottom: 20px;
    }
    
    .mamaia-booking-style-wrapper .tf-item-card {
        flex-direction: column;
    }
    
    .mamaia-booking-style-wrapper .tf-item-card .tf-item-featured {
        width: 100%;
        height: 200px;
    }
    
    .mamaia-booking-style-wrapper .tf-item-card .tf-post-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .mamaia-booking-style-wrapper .tf-item-card .tf-booking-bttns .tf_btn {
        width: 100%;
        text-align: center;
    }
}

/* Booking.com Search Bar Styling */
.archive-search-bar {
    background: #003580;
    color: white;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.search-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.search-details span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.modify-search-btn {
    background: #0071c2;
    border: 1px solid #0071c2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

.modify-search-btn:hover {
    background: #005999;
}

/* Filters Sidebar Booking.com Style */
.filters-sidebar {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: none;
}

.filters-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #262626;
    margin: 0;
}

.clear-filters {
    color: #0071c2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.clear-filters:hover {
    text-decoration: underline;
}

/* Results Header Booking.com Style */
.results-header {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.results-count {
    font-size: 1rem;
    font-weight: 600;
    color: #262626;
}

.sort-dropdown select {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 0.9rem;
    background: white;
}

/* Booking.com Colors and Typography */
.booking-hotel-card .show-map-link:hover {
    color: #005999;
}

.booking-hotel-features .more-features:hover {
    color: #005999;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    .booking-hotel-image {
        height: 160px;
    }
    
    .booking-hotel-title {
        font-size: 16px;
    }
    
    .booking-hotel-price {
        padding: 12px;
    }
    
    .price-amount {
        font-size: 18px;
    }
    
    .btn-booking-primary {
        padding: 10px 12px;
        font-size: 13px;
        min-width: 100px;
    }
}

/* Loading Animation for Cards */
.booking-hotel-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Booking.com-style Pagination */
.hotels-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 2rem 0;
}

.hotels-pagination a,
.hotels-pagination span {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #0071c2;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hotels-pagination a:hover {
    background: #0071c2;
    color: white;
    border-color: #0071c2;
}

.hotels-pagination .current {
    background: #0071c2;
    color: white;
    border-color: #0071c2;
}

/* No Results Booking.com Style */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
}

.no-results i {
    font-size: 2.5rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #262626;
    font-weight: 600;
}

.no-results p {
    color: #6b6b6b;
    margin-bottom: 1.5rem;
}

.clear-filters-btn {
    background: #0071c2;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.clear-filters-btn:hover {
    background: #005999;
}

/* ===================================================================
   UNIFIED MAMAIA NORD DESIGN SYSTEM
   Combines Homepage + Archive + Booking.com UX with our branding
   =================================================================== */

/* Base Unified Card System */
.mamaia-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

/* Unified Button System */
.mamaia-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.mamaia-btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
}

.mamaia-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 85, 0, 0.3);
    text-decoration: none;
    color: var(--white);
}

.mamaia-btn-secondary {
    background: var(--primary-turquoise-dark);
    color: var(--white);
}

.mamaia-btn-secondary:hover {
    background: var(--primary-turquoise);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--white);
}

.mamaia-btn-outline {
    background: transparent;
    color: var(--primary-turquoise-dark);
    border: 2px solid var(--primary-turquoise-dark);
}

.mamaia-btn-outline:hover {
    background: var(--primary-turquoise-dark);
    color: var(--white);
    text-decoration: none;
}

/* Unified Price Styling */
.mamaia-price {
    color: var(--primary-orange);
    font-weight: 700;
    font-family: var(--font-body);
}

.mamaia-price-large {
    font-size: 20px;
}

.mamaia-price-medium {
    font-size: 16px;
}

/* Unified Rating System */
.mamaia-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.mamaia-rating .stars {
    color: var(--primary-gold);
}

.mamaia-rating .score {
    background: var(--primary-turquoise-dark);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Unified Feature Tags */
.mamaia-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 4px;
    font-size: 12px;
}

.mamaia-feature-tag i {
    color: var(--primary-turquoise);
}

.mamaia-feature-tag.featured {
    background: var(--primary-orange);
    color: var(--white);
}

.mamaia-feature-tag.featured i {
    color: var(--white);
}

/* ===================================================================
   TOURFIC COMPONENTS - UNIFIED STYLING
   =================================================================== */

/* Apply unified styling to Tourfic components */
.mamaia-booking-style-wrapper {
    font-family: var(--font-body);
}

/* CRITICAL: Override all Booking.com blue colors with our turquoise */
.mamaia-booking-style-wrapper .tf-btn,
.mamaia-booking-style-wrapper .tf_btn,
.mamaia-booking-style-wrapper button[type="submit"],
.mamaia-booking-style-wrapper .tf-archive-head .tf-btn,
.mamaia-booking-style-wrapper .tf-search-form button {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold)) !important;
    color: var(--white) !important;
    border: none !important;
}

/* Fix layout: sidebar on LEFT like Booking.com */
.mamaia-booking-style-wrapper .tf-archive-inner {
    flex-direction: row-reverse !important;
}

.mamaia-booking-style-wrapper .tf-archive-left {
    order: 2 !important;
    flex: 1 !important;
}

.mamaia-booking-style-wrapper .tf-archive-right {
    order: 1 !important;
    width: 300px !important;
    margin-right: 24px !important;
    margin-left: 0 !important;
}

/* Archive Header */
.mamaia-booking-style-wrapper .tf-archive-head {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Hotel Cards - Unified with Homepage Style */
.mamaia-booking-style-wrapper .tf-item-card {
    background: var(--white) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 16px !important;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: row;
    position: relative;
    border: 1px solid var(--gray-200) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Force white background on all card elements */
.mamaia-booking-style-wrapper .tf-item-card,
.mamaia-booking-style-wrapper .tf-item-card .tf-item-details {
    background: var(--white) !important;
    background-color: var(--white) !important;
}

.mamaia-booking-style-wrapper .tf-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Hotel Image Section */
.mamaia-booking-style-wrapper .tf-item-card .tf-item-featured {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-item-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mamaia-booking-style-wrapper .tf-item-card:hover .tf-item-featured img {
    transform: scale(1.05);
}

/* Featured Tags - Unified Style */
.mamaia-booking-style-wrapper .tf-item-card .tf-features-box .tf-feature {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    box-shadow: 0 2px 4px rgba(255, 85, 0, 0.2);
}

.mamaia-booking-style-wrapper .tf-item-card .tf-multiple-tag-item {
    background: var(--primary-turquoise-dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 179, 226, 0.2);
}

/* Hotel Content Section */
.mamaia-booking-style-wrapper .tf-item-card .tf-item-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hotel Title - Unified Typography */
.mamaia-booking-style-wrapper .tf-item-card .tf-title h2 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-title h2 a {
    color: var(--primary-turquoise-dark) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-title h2 a:hover {
    color: var(--primary-turquoise) !important;
    text-decoration: none;
}

/* Override all blue colors from Booking.com theme */
.mamaia-booking-style-wrapper .tf-btn-primary,
.mamaia-booking-style-wrapper .tf-btn-success,
.mamaia-booking-style-wrapper .tf-booking-btn,
.mamaia-booking-style-wrapper .tf-archive-head .tf-btn,
.mamaia-booking-style-wrapper .tf-search-form .tf-btn,
.mamaia-booking-style-wrapper .tf-list-grid a.active,
.mamaia-booking-style-wrapper .tf-pagination-bar .current {
    background: var(--primary-turquoise-dark) !important;
    color: var(--white) !important;
    border-color: var(--primary-turquoise-dark) !important;
}

.mamaia-booking-style-wrapper .tf-btn-primary:hover,
.mamaia-booking-style-wrapper .tf-btn-success:hover,
.mamaia-booking-style-wrapper .tf-booking-btn:hover,
.mamaia-booking-style-wrapper .tf-archive-head .tf-btn:hover,
.mamaia-booking-style-wrapper .tf-search-form .tf-btn:hover,
.mamaia-booking-style-wrapper .tf-list-grid a:hover {
    background: var(--primary-turquoise) !important;
    color: var(--white) !important;
    border-color: var(--primary-turquoise) !important;
}

/* Hotel Location */
.mamaia-booking-style-wrapper .tf-item-card .tf-title-meta {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-title-meta i {
    color: var(--primary-turquoise-dark);
}

/* Hotel Features */
.mamaia-booking-style-wrapper .tf-item-card .tf-archive-features ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    list-style: none;
    padding: 0;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-archive-features li {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 4px;
    font-size: 12px;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-archive-features li i {
    color: var(--primary-turquoise);
    font-size: 11px;
}

/* Hotel Description */
.mamaia-booking-style-wrapper .tf-item-card .tf-details {
    margin: 8px 0;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-details p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.4;
    margin: 0;
}

/* Hotel Footer with Price and Button */
.mamaia-booking-style-wrapper .tf-item-card .tf-post-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-pricing {
    flex: 1;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-pricing .tf-archive-price-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
}

.mamaia-booking-style-wrapper .tf-item-card .tf-pricing .tf-archive-price-currency {
    font-size: 12px;
    color: var(--gray-600);
}

/* Unified Booking Button */
.mamaia-booking-style-wrapper .tf-item-card .tf-booking-bttns .tf_btn,
.mamaia-booking-style-wrapper .tf_btn,
.mamaia-booking-style-wrapper .tf-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold)) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.mamaia-booking-style-wrapper .tf-item-card .tf-booking-bttns .tf_btn:hover,
.mamaia-booking-style-wrapper .tf_btn:hover,
.mamaia-booking-style-wrapper .tf-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(255, 85, 0, 0.3) !important;
    color: var(--white) !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold)) !important;
}

/* Sidebar Styling - Unified */
.mamaia-booking-style-wrapper .tf-sidebar {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Search Form in Sidebar */
.mamaia-booking-style-wrapper .tf-hotel-side-booking button {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mamaia-booking-style-wrapper .tf-hotel-side-booking button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 85, 0, 0.3);
}

/* List/Grid View Toggle - Unified */
.mamaia-booking-style-wrapper .tf-list-grid a {
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--primary-turquoise-dark);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.mamaia-booking-style-wrapper .tf-list-grid a.active,
.mamaia-booking-style-wrapper .tf-list-grid a:hover {
    background: var(--primary-turquoise-dark);
    color: var(--white);
    border-color: var(--primary-turquoise-dark);
    transform: translateY(-1px);
}

/* Pagination - Unified */
.mamaia-booking-style-wrapper .tf-pagination-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 20px 0;
}

.mamaia-booking-style-wrapper .tf-pagination-bar a,
.mamaia-booking-style-wrapper .tf-pagination-bar span {
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-turquoise-dark);
    font-weight: 500;
    transition: all 0.2s ease;
}

.mamaia-booking-style-wrapper .tf-pagination-bar a:hover,
.mamaia-booking-style-wrapper .tf-pagination-bar .current {
    background: var(--primary-turquoise-dark);
    color: var(--white);
    border-color: var(--primary-turquoise-dark);
    transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mamaia-booking-style-wrapper .tf-item-card {
        flex-direction: column;
    }
    
    .mamaia-booking-style-wrapper .tf-item-card .tf-item-featured {
        width: 100%;
        height: 200px;
    }
    
    .mamaia-booking-style-wrapper .tf-item-card .tf-post-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .mamaia-booking-style-wrapper .tf-item-card .tf-booking-bttns .tf_btn {
        width: 100%;
        text-align: center;
    }
}

/* ===================================================================
   HOMEPAGE COMPONENTS - ENSURE CONSISTENCY
   =================================================================== */

/* Update homepage cards to match unified system */
.hotel-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.hotel-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hotel-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 85, 0, 0.3);
    color: var(--white);
    text-decoration: none;
}

.hotel-card .price-amount {
    color: var(--primary-orange);
    font-weight: 700;
}

.hotel-card .hotel-title a {
    color: var(--primary-turquoise-dark);
    text-decoration: none;
}

.hotel-card .hotel-title a:hover {
    color: var(--primary-turquoise);
}

/* Unified Feature Tags on Homepage */
.hotel-card .feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 4px;
    font-size: 12px;
    margin-right: 8px;
}

.hotel-card .feature i {
    color: var(--primary-turquoise);
}

.hotel-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 85, 0, 0.2);
}

/* ===================================================================
   CLEANUP - REMOVE OLD STYLES
   =================================================================== */

/* Hide old conflicting styles */
.booking-hotel-card {
    display: none !important;
}

.mamaia-hotel-card {
    display: none !important;
}

/* Ensure our unified system takes precedence */
.mamaia-booking-style-wrapper .tf-item-card {
    display: flex !important;
}

/* AGGRESSIVE OVERRIDE: Remove all blue colors from Tourfic */
.mamaia-booking-style-wrapper *[style*="background-color: #0073aa"],
.mamaia-booking-style-wrapper *[style*="background-color: #005177"],
.mamaia-booking-style-wrapper *[style*="background-color: #0085ba"],
.mamaia-booking-style-wrapper *[style*="background: #0073aa"],
.mamaia-booking-style-wrapper *[style*="background: #005177"],
.mamaia-booking-style-wrapper *[style*="background: #0085ba"] {
    background: var(--primary-turquoise-dark) !important;
    background-color: var(--primary-turquoise-dark) !important;
}

/* Override link colors */
.mamaia-booking-style-wrapper a:not(.tf_btn):not(.mamaia-btn) {
    color: var(--primary-turquoise-dark) !important;
}

.mamaia-booking-style-wrapper a:not(.tf_btn):not(.mamaia-btn):hover {
    color: var(--primary-turquoise) !important;
}

/* Override any remaining blue elements */
.mamaia-booking-style-wrapper .tf-search-form,
.mamaia-booking-style-wrapper .tf-archive-head {
    background: var(--white) !important;
    border-color: var(--gray-200) !important;
}

/* ===================================================================
   HOTEL ARCHIVE PAGE SPECIFIC STYLES
   =================================================================== */

/* Archive Search Form Styling for Hotel Archive */
.tf-archive-search-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 32px;
}

.tf-archive-search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: end;
}

.tf-search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tf-search-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.tf-search-field input,
.tf-search-field select {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.875rem;
    background: var(--white);
    transition: all 0.2s ease;
}

.tf-search-field input:focus,
.tf-search-field select:focus {
    outline: none;
    border-color: var(--mamaia-turquoise);
    box-shadow: 0 0 0 3px rgba(55, 206, 241, 0.1);
}

.tf-search-submit {
    background: linear-gradient(135deg, var(--mamaia-orange), #ff6b35);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.tf-search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}

/* Mobile Responsive for Hotel Archive */
@media (max-width: 768px) {
    .tf-archive-search-form {
        grid-template-columns: 1fr;
    }
    
    .tf-archive-search-form-wrapper {
        padding: 16px;
    }
}

/* ===================================================================
   APARTMENT ARCHIVE PAGE SPECIFIC STYLES
   =================================================================== */

/* Apartment Archive Specific Styles */
.apartment-archive-page {
    background: var(--gray-50);
    min-height: 100vh;
}

.apartment-listings-section {
    padding: var(--space-16) 0;
}

.apartments-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-results {
    font-weight: 600;
    color: var(--gray-700);
}

.filter-controls {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.view-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: var(--space-1);
}

.view-btn {
    padding: var(--space-2) var(--space-3);
    border: none;
    background: transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-600);
}

.view-btn.active {
    background: var(--mamaia-orange);
    color: var(--white);
}

.sort-select {
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
}

/* Apartment Grid */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}