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

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Custom Properties (Variables) */
:root {
    /* 🌿 Organic Natural - Airbnb Color Palette */
    
    /* Primary Palette */
    --color-background: #f5f5f5;        /* Cloud White */
    --color-primary: #4d7565;            /* Ridge Shadow */
    --color-primary-dark: #3d6c5c;       /* Ridge Shadow - Hover */
    --color-accent: #7ec4a8;             /* Mint Mist */
    --color-accent-dark: #5fad94;        /* Mint Mist - Hover */
    --color-text: #333333;               /* Granite Black */
    
    /* Supporting Colors */
    --color-secondary-text: #b8c5c6;     /* Morning Fog */
    --color-dark: #2d3e3f;               /* Mountain Slate */
    --color-white: #ffffff;              /* Pure White */
    --color-black: #000000;              /* Pure Black */
    
    /* Semantic Colors */
    --color-success: #7ec4a8;
    --color-success-dark: #5fad94;
    --color-warning: #d4a574;            /* Golden Turmeric */
    --color-warning-dark: #c89b5f;
    --color-error: #c17767;              /* Paprika Ember */
    --color-error-dark: #af6855;
    --color-info: #4d7565;
    --color-info-dark: #3d6c5c;
    
    /* Borders & Dividers */
    --color-border: #b8c5c6;
    --color-border-light: #e0e0e0;
    
    /* Legacy Gray Scale (kept for compatibility) */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Alias for secondary (backward compatibility) */
    --color-secondary: #7ec4a8;
    --color-secondary-dark: #5fad94;
    
    /* Typography - Airbnb Style */
    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 600;
    
    /* Airbnb-style letter spacing for better readability */
    --letter-spacing-tight: -0.01em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.01em;
    
    /* Spacing */
    --spacing-1: 0.25rem;  /* 4px */
    --spacing-2: 0.5rem;   /* 8px */
    --spacing-3: 0.75rem;  /* 12px */
    --spacing-4: 1rem;     /* 16px */
    --spacing-6: 1.5rem;   /* 24px */
    --spacing-8: 2rem;     /* 32px */
    --spacing-12: 3rem;    /* 48px */
    --spacing-16: 4rem;    /* 64px */
    
    /* Border Radius */
    --radius-sm: 0.125rem;   /* 2px */
    --radius-md: 0.375rem;   /* 6px */
    --radius-lg: 0.5rem;     /* 8px */
    --radius-xl: 0.75rem;    /* 12px */
    --radius-2xl: 1rem;      /* 16px */
    --radius-3xl: 1.5rem;    /* 24px */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Breakpoints */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
}

/* =======================
   GLOBAL STYLES
   ======================= */

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 320px; /* Minimum mobile width */
}

/* =======================
   TYPOGRAPHY - MOBILE FIRST
   ======================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-4);
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: var(--letter-spacing-tight);
}

/* Mobile-first typography */
h1 { font-size: 1.5rem; } /* 24px */
h2 { font-size: 1.25rem; } /* 20px */
h3 { font-size: 1.125rem; } /* 18px */
h4 { font-size: 1rem; } /* 16px */
h5 { font-size: 0.875rem; } /* 14px */
h6 { font-size: 0.875rem; } /* 14px */

p {
    margin-bottom: var(--spacing-4);
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

/* =======================
   LAYOUT UTILITIES
   ======================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-4);
    padding-right: var(--spacing-4);
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

.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;
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

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

/* =======================
   BUTTONS
   ======================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: 0.875rem;
    line-height: 1;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border: none;
}

.btn-secondary:hover {
    background-color: var(--color-accent-dark);
    color: var(--color-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cta-button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-xl);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--color-white);
}

/* =======================
   HEADER STYLES - AIRBNB STYLE
   ======================= */

.header {
    position: relative;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9); /* 10% transparency (90% opacity) */
    border-bottom: 1px solid var(--color-gray-200);
    transition: all var(--transition-fast);
    backdrop-filter: blur(8px); /* Optional: adds a nice blur effect behind */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
}

/* Airbnb-style header state on scroll (for future JS implementation) */
.header.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

/* Mobile-first navigation - exactly like Airbnb */
.nav {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Left-aligned like Airbnb mobile */
    padding: 18px 16px; /* Reduced left padding to shift logo left */
    width: 100%;
    box-sizing: border-box;
}

/* Airbnb-style brand logo */
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-brand .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    line-height: 1;
}

/* Airbnb-style logo styling - zoomed in */
.brand-logo {
    height: 50px; /* Increased for more prominent appearance */
    width: auto;
    display: block;
    transition: all var(--transition-fast);
    filter: none;
}

.nav-brand .brand-link:hover .brand-logo {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Fallback text logo styling (in case image doesn't load) */
.brand-link-text {
    font-family: var(--font-family);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all var(--transition-fast);
    line-height: 1.25;
    display: none; /* Hidden when logo image is present */
}

/* Show text fallback if image fails to load */
.brand-logo:not([src]), .brand-logo[src=""] {
    display: none;
}

.brand-logo:not([src]) + .brand-link-text,
.brand-logo[src=""] + .brand-link-text {
    display: block;
}

/* High-DPI (Retina) display support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .brand-logo {
        /* Modern browsers will use srcset automatically */
    }
}

.nav-brand .brand-link:hover {
    color: var(--color-gray-700);
}

/* Tablet and Desktop responsive styles - Airbnb approach */
@media (min-width: 744px) {
    .nav {
        padding: 20px 24px; /* Reduced left padding for tablet/desktop */
        max-width: 1280px;
        margin: 0 auto;
    }
    
    .brand-logo {
        height: 56px; /* Increased for more prominent appearance on desktop */
    }
}

@media (min-width: 1128px) {
    .nav {
        padding: 20px 32px; /* Reduced left padding for larger desktop */
    }
}

/* Navigation links removed - using mobile-first Airbnb approach */


/* =======================
   MAIN CONTENT
   ======================= */

.main {
    padding-top: 0;
    min-height: 100vh;
    padding-bottom: 100px; /* Space for floating nav */
    margin: 0;
    border: none;
    outline: none;
}

/* =======================
   HERO SECTION STYLES
   ======================= */

/* Section spacing */

.hero-section::after {
    content: '';
    display: block;
    height: 0;
    border: none;
    margin: 0;
    padding: 0;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--color-gray-900);
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: 2px solid #ffffff;
    outline: none;
    vertical-align: top;
    box-sizing: border-box;
}

/* Simple Carousel Navigation */
.carousel-nav-prev,
.carousel-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
}

.carousel-nav-prev:hover,
.carousel-nav-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-prev {
    left: 20px;
}

.carousel-nav-next {
    right: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .carousel-nav-prev,
    .carousel-nav-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-nav-prev {
        left: 10px;
    }
    
    .carousel-nav-next {
        right: 10px;
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    color: var(--color-white);
    padding: var(--spacing-4);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    text-align: center;
    padding: 0 var(--spacing-4);
}

.carousel-subtitle {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
    margin-bottom: var(--spacing-6);
    word-wrap: break-word;
    text-align: center;
    padding: 0 var(--spacing-4);
}

/* Booking Page Styles */
.booking-section {
    padding: 40px 0 60px 0;
    background: #f8f9fa;
}

.booking-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-card-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    min-height: 600px;
}

.booking-images {
    position: relative;
    background: #f5f5f5;
}

.main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.image-thumbnails {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.thumbnail {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    object-fit: cover;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    opacity: 1;
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.booking-form-section {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.booking-hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #ffffff;
    padding: 80px 0 60px 0;
    text-align: center;
}

.booking-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.booking-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Booking Widget Styles - Compact Centered Airbnb Style */
.booking-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    margin: var(--spacing-2) auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    color: #222222;
    text-align: left;
    border: none;
    width: 280px;
    max-width: 90vw;
    font-family: var(--font-family);
    position: relative;
    z-index: 10; /* Increased z-index to ensure visibility over any carousel elements */
}

/* Booking page specific widget styling */
.booking-form-section .booking-widget {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

/* Booking page - larger text */
.booking-form-section .widget-title {
    font-size: 22px; /* 2px larger than default 20px */
}

.booking-form-section .location-text {
    font-size: 14px; /* 2px larger than default 12px */
}

/* Mobile-specific booking widget size reduction */
@media (max-width: 639px) {
    .booking-widget {
        width: 238px; /* 15% smaller for mobile (280 * 0.85) */
        padding: 14px; /* Slightly smaller padding */
        max-width: 88vw; /* Slightly smaller max-width */
    }
    
    /* Scale widget content proportionally but keep readable */
    .widget-title {
        font-size: 18px; /* Improved from 15px for better readability */
    }
    
    .location-text {
        font-size: 11px; /* Keep small but readable */
    }
    
    .field-label {
        font-size: 11px; /* Slightly smaller than desktop but readable */
    }
    
    .property-text,
    .date-display {
        font-size: 15px; /* Improved from 14px for better readability */
    }
    
    .reserve-button {
        font-size: 15px; /* Improved button text size */
        padding: 11px 16px; /* Better button padding */
    }
    
    .price-amount {
        font-size: 18px; /* Slightly smaller for mobile but still prominent */
    }
    
    .price-label,
    .capacity-label {
        font-size: 11px; /* Slightly smaller for mobile but readable */
    }
    
    .guest-label {
        font-size: 15px; /* Good readable size for mobile */
    }
    
    .guest-btn {
        width: 28px;
        height: 28px;
    }
    
    .guest-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .guest-count {
        font-size: 15px;
        font-weight: 600;
    }
    
    .guest-controls {
        gap: 10px;
    }
}

/* Widget Header - Compact */
.widget-header {
    margin-bottom: 14px;
    text-align: center;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.widget-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 3px;
}

.location-icon {
    width: 10px;
    height: 10px;
    color: #717171;
    flex-shrink: 0;
}

.location-text {
    font-size: 12px;
    color: #717171;
    font-weight: 400;
}

/* Guest Section - Compact */
.guest-section {
    margin-bottom: 12px;
}

.field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 6px 0;
    text-transform: none;
}

.guest-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    border: 1px solid #b0b0b0;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.guest-selector:hover {
    border-color: #222222;
}

.guest-text {
    font-size: 14px;
    color: #222222;
    font-weight: 400;
}

.guest-icon {
    width: 14px;
    height: 14px;
    color: #717171;
    flex-shrink: 0;
}

/* Property Selector Dropdown */
.property-selector-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.property-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    min-height: 44px;
    border: 1px solid #b0b0b0;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.property-selector:hover {
    border-color: #222222;
}

.property-selector.active {
    border-color: #222222;
}

.property-text {
    font-size: 15px;
    color: #717171;
    font-weight: 400;
}

.property-text.selected {
    color: #222222;
}

.property-icon {
    width: 16px;
    height: 16px;
    color: #717171;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.property-selector.active .property-icon {
    transform: rotate(180deg);
}

.property-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #b0b0b0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.property-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.property-option {
    padding: 12px 12px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    font-size: 15px;
    color: #222222;
    border-bottom: 1px solid #ebebeb;
}

.property-option:last-child {
    border-bottom: none;
}

.property-option:hover {
    background-color: #f7f7f7;
}

/* Guest Counter with Box */
.guest-selector-wrapper {
    margin-bottom: 12px;
}

.guest-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    min-height: 44px;
    border: 1px solid #b0b0b0;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.guest-counter:hover {
    border-color: #222222;
}

.guest-label {
    font-size: 15px;
    font-weight: 400;
    color: #717171;
    flex: 1;
}

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

.guest-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #b0b0b0;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #717171;
}

.guest-btn svg {
    width: 14px;
    height: 14px;
}

.guest-btn:hover {
    border-color: #222222;
    color: #222222;
    background: #f7f7f7;
}

.guest-btn:disabled {
    border-color: #e0e0e0;
    color: #cccccc;
    cursor: not-allowed;
    background: #f8f8f8;
}

.guest-btn:disabled:hover {
    border-color: #e0e0e0;
    color: #cccccc;
    background: #f8f8f8;
}

.guest-count {
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    min-width: 20px;
    text-align: center;
    user-select: none;
}

/* Date Selector - Split Fields (Check-in and Check-out) */
.date-fields-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.date-field {
    position: relative;
}

.date-selector-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.date-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    min-height: 44px;
    border: 1px solid #b0b0b0;
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s ease;
    box-sizing: border-box;
}

.date-selector:hover {
    border-color: #222222;
}

.date-selector.active {
    border-color: #222222;
}

.date-display {
    font-size: 15px;
    color: #717171;
    font-weight: 400;
    flex: 1;
}

.date-display.selected {
    color: #222222;
}

.calendar-icon {
    width: 16px;
    height: 16px;
    color: #717171;
    flex-shrink: 0;
}

/* Guest Display (Fixed) */
.guest-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    border: 1px solid #b0b0b0;
    border-radius: 6px;
    background: #ffffff;
}

/* Duplicate guest-label and guest-count styles removed - using styles from guest counter section above */

/* Pricing Section - Compact */
.pricing-section {
    margin-bottom: 10px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3px;
}

.pricing-row.main-row {
    margin-bottom: 0;
}

.price-label,
.capacity-label {
    font-size: 12px;
    color: #717171;
    font-weight: 400;
    line-height: 1;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

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

.price-period {
    font-size: 13px;
    color: #222222;
    font-weight: 400;
}

.max-guests {
    font-size: 13px;
    color: #222222;
    font-weight: 400;
}

/* Booking Features - Compact */
.booking-features {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: #717171;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00a651;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 400;
    font-size: 12px;
    color: #717171;
}

.feature-separator {
    margin: 0 6px;
    font-weight: 400;
    color: #717171;
}

/* Reserve Button - Compact with Organic Natural Colors */
.reserve-button {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reserve-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(77, 117, 101, 0.3);
}

/* Simple Booking Widget Styles */
.simple-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 16px;
    margin: var(--spacing-3) 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.simple-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.highlight-feature {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 4px;
}

.simple-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.simple-price .price {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.simple-price .price-period {
    font-size: 14px;
    color: #717171;
    font-weight: 400;
}

.simple-actions {
    margin-top: 8px;
}

.simple-btn {
    display: inline-block;
    width: 100%;
    padding: 10px 16px;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.simple-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(77, 117, 101, 0.3);
}

/* Spices Shop Ad - Compact */
.spices-ad-section {
    margin: 40px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spices-main-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.spices-main-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.spice-image-container {
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spice-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.quality-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 12px;
}

.spice-content {
    padding: 14px;
}

.spice-header {
    margin-bottom: 12px;
}

.spice-title {
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.spice-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #717171;
}

.location-text {
    font-size: 14px;
    font-weight: 400;
}

.spice-description {
    font-size: 13px;
    color: #484848;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.spice-features {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f7f7f7;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 12px;
    color: #222222;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

.spice-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #7a8471;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
    transition: all 0.2s ease;
    align-self: stretch;
    min-height: 48px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.shop-button:hover {
    background: #6b7562;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 132, 113, 0.4);
}

.button-arrow {
    transition: transform 0.2s ease;
}

.shop-button:hover .button-arrow {
    transform: translateX(4px);
}

.shop-button:active,
.shop-button:focus,
.shop-button:visited {
    color: #fff !important;
}

.shop-button:active .button-text,
.shop-button:focus .button-text,
.shop-button:visited .button-text {
    color: #fff !important;
}

.availability-text {
    font-size: 12px;
    color: #717171;
    margin: 0;
    text-align: center;
}


/* Simple Widget Styles */
.simple-widget {
    padding: var(--spacing-4);
    max-width: 280px;
    margin: var(--spacing-2) auto;
}

.simple-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-3);
}

.highlight-feature {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    font-weight: var(--font-weight-medium);
}

.simple-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-1);
}

.simple-actions {
    width: 100%;
}

.simple-btn {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: 0.875rem;
}

.booking-buttons {
    display: flex;
    gap: var(--spacing-2);
    justify-content: center;
    margin-bottom: var(--spacing-3);
    flex-wrap: wrap;
}

.booking-btn,
.contact-btn,
.gallery-btn,
.shop-btn {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
    flex: 1;
    min-width: 100px;
    max-width: 140px;
}

.booking-info,
.location-info,
.amenities-preview,
.experience-info,
.special-offer,
.garden-features {
    font-size: 0.75rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-2);
}

.capacity,
.location,
.rating,
.amenity,
.feature {
    display: inline-block;
    margin: 0 var(--spacing-1) var(--spacing-1) 0;
    white-space: nowrap;
}

.offer-badge {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: var(--spacing-1) var(--spacing-2);
    border-radius: var(--radius-md);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    margin-right: var(--spacing-2);
}

.offer-text {
    font-size: 0.75rem;
    color: var(--color-gray-700);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-4);
    pointer-events: none;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--color-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--spacing-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-2);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator.active,
.indicator:hover {
    background: var(--color-white);
    transform: scale(1.2);
}

/* =======================
   CONTENT SECTION
   ======================= */

.content-section {
    position: relative;
    background-color: var(--color-white);
    margin-top: 0;
    padding-top: var(--spacing-3);
    z-index: 1;
    min-height: 100vh;
}

/* Desktop Content Section Improvements */
@media (min-width: 768px) {
    .content-section {
        padding-top: var(--spacing-8);
    }
}

@media (min-width: 1024px) {
    .content-section {
        padding-top: var(--spacing-12);
    }
}

/* Zostel-Style Wavy Divider - Tailwind CSS equivalents */
.w-full { width: 100%; }
.h-12 { height: 3rem; } /* 48px */
.absolute { position: absolute; }
.-bottom-px { bottom: -1px; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.flex { display: flex; }
.h-full { height: 100%; }
.block { display: block; }

/* Original Wavy Divider - Above header */
.w-full.h-12.absolute.-bottom-px {
    z-index: 1000; /* Above header z-index */
}


/* FAQ CTA Card */
.faq-cta-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-cta-card h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.faq-cta-card p {
    color: #64748b;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-faq:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 117, 101, 0.3);
}

.faq-icon {
    stroke: currentColor;
}

/* =======================
   AIRBNB-STYLE FOOTER
   ======================= */

.airbnb-footer {
    background-color: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-200);
    padding: 48px 0 24px;
    margin-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-gray-200);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--color-gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.43;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gray-900);
    text-decoration: underline;
}

/* Footer Bottom Section */
.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    margin: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: var(--color-gray-700);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--color-gray-900);
    text-decoration: underline;
}

.footer-separator {
    color: var(--color-gray-400);
}

/* Footer Bottom Right */
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    color: var(--color-gray-900);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.footer-selector:hover {
    border-color: var(--color-gray-900);
    background-color: var(--color-white);
}

.footer-selector svg {
    flex-shrink: 0;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-gray-700);
    background-color: transparent;
    border-radius: 50%;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--color-gray-900);
    background-color: var(--color-gray-200);
}

/* Desktop Footer Improvements */
@media (min-width: 768px) {
    .airbnb-footer {
        margin-top: 64px;
    }
}

@media (min-width: 1024px) {
    .airbnb-footer {
        margin-top: 80px;
        padding: 64px 0 32px;
    }
    
    .footer-grid {
        gap: 48px;
        padding-bottom: 56px;
    }
    
    .footer-bottom-section {
        padding-top: 28px;
    }
}

/* =======================
   MOBILE HAMBURGER NAVIGATION
   ======================= */

/* Toggle button */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 10px;
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1100;
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle:hover { background: var(--color-gray-100); }
.mobile-menu-toggle:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.hamburger { display: inline-block; position: relative; width: 22px; height: 18px; }
.hamburger-line { position: absolute; left: 0; right: 0; height: 2px; background: var(--color-gray-800); border-radius: 1px; transition: transform .25s ease, opacity .2s ease, top .25s ease; }
.hamburger-line-1 { top: 0; }
.hamburger-line-2 { top: 8px; }
.hamburger-line-3 { top: 16px; }

/* Active (X) state */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line-1 { top: 8px; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line-2 { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line-3 { top: 8px; transform: rotate(-45deg); }

/* Mobile Menu container */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.open {
    pointer-events: auto;
    visibility: visible;
}

/* Backdrop */
.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-menu.open .mobile-menu-backdrop {
    opacity: 1;
}

/* Panel */
.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

/* Synchronized content transitions */
.mobile-menu-header,
.mobile-menu-nav {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.mobile-menu.open .mobile-menu-header,
.mobile-menu.open .mobile-menu-nav {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s; /* Delay for content to appear after panel starts sliding in */
}

/* Fast closing animation - content disappears quickly before panel slides out */
.mobile-menu:not(.open) .mobile-menu-header,
.mobile-menu:not(.open) .mobile-menu-nav {
    transition-delay: 0s; /* No delay when closing */
    transition-duration: 0.15s; /* Faster fade out */
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px; /* Match main header mobile padding */
    border-bottom: 1px solid var(--color-gray-200);
    flex-shrink: 0;
    background: var(--color-white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.mobile-menu-logo img {
    height: 50px; /* Match main header logo size on mobile */
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: var(--radius-md);
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: var(--color-gray-100);
    color: var(--color-gray-900);
}

.mobile-menu-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.mobile-menu-nav {
    flex: 1;
    padding: var(--spacing-6) 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-5) var(--spacing-6);
    color: var(--color-gray-800);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 1.125rem;
    min-height: 64px;
    border-left: 4px solid transparent;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered animation for menu items when opening */
.mobile-menu.open .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-nav-item:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-item:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-item:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-nav-item:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-nav-item:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-nav-item:nth-child(7) { transition-delay: 0.45s; }
.mobile-menu.open .mobile-nav-item:nth-child(8) { transition-delay: 0.5s; }

/* Fast closing animation for menu items */
.mobile-menu:not(.open) .mobile-nav-item {
    transition-delay: 0s; /* No delay when closing */
    transition-duration: 0.1s; /* Very fast fade out */
}

/* Interactive states for menu items */
.mobile-menu.open .mobile-nav-item:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    transform: translateY(0) translateX(4px); /* Slight right shift on hover */
}

.mobile-menu.open .mobile-nav-item.active {
    background: var(--color-primary-50, var(--color-gray-50));
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    font-weight: var(--font-weight-semibold, 600);
    transform: translateY(0);
}

.mobile-nav-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.mobile-nav-text {
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Shop special color */
.mobile-nav-item[href*="shop.html"].active,
.mobile-nav-item[href*="shop.html"]:hover { color: #7a8471; }

/* Mobile menu responsive adjustments to match main header */
@media (min-width: 744px) {
    .mobile-menu-header {
        padding: 20px 32px; /* Match main header tablet/desktop padding */
    }
    
    .mobile-menu-logo img {
        height: 56px; /* Match main header logo size on desktop */
    }
}

@media (min-width: 1128px) {
    .mobile-menu-header {
        padding: 20px 48px; /* Match main header desktop padding */
    }
}

/* Show hamburger on small screens */
@media (max-width: 767px) {
  .mobile-menu-toggle { display: inline-flex; }
}
@media (min-width: 768px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }

/* =======================
   FLOATING NAVIGATION (DEPRECATED - HIDDEN)
   ======================= */

.floating-nav {
    display: none !important; /* Hidden - replaced by hamburger navigation */
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-2);
    color: var(--color-gray-500);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
}

/* Shop navigation - MUST come BEFORE general nav-item rules */
/* Handle all possible shop.html path variations */
.nav-item[href="shop.html"],
.nav-item[href="/shop.html"],
.nav-item[href="./shop.html"],
.nav-item[href="../shop.html"] {
    transition: color 0s, background-color var(--transition-fast) !important;
}

.nav-item[href*="shop.html"].active,
.nav-item[href*="shop.html"].active:hover,
.nav-item[href*="shop.html"].active:active,
.nav-item[href*="shop.html"].active:focus,
.nav-item[href*="shop.html"].active:visited,
.nav-item[href*="shop.html"].active:link {
    color: #7a8471 !important;
    background-color: var(--color-gray-50) !important;
}

/* CSS-only fallback for shop page - when body class is added by server/framework */
body[data-page="shop"] .nav-item[href*="shop.html"],
body.shop-page .nav-item[href*="shop.html"] {
    color: #7a8471 !important;
    background-color: var(--color-gray-50) !important;
}

/* All other nav items get primary pink color */
.nav-item:hover,
.nav-item.active {
    color: var(--color-primary);
    background-color: var(--color-gray-50);
}

.nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    margin-bottom: var(--spacing-1);
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

/* Date Picker Calendar Mobile Styles */
#date-picker-calendar {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 768px) {
    #date-picker-calendar {
        /* No backdrop on mobile - clean look */
    }
    
    #date-picker-calendar > div {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Flash animation for check-in field when checkout clicked without check-in */
@keyframes flash {
    0%, 100% { 
        border-color: #b0b0b0; 
        box-shadow: none;
    }
    50% { 
        border-color: #007AFF; 
        box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
    }
}
