/* ============================================================
   EDEN THEME - Main Stylesheet
   Luxury Villa Website Design System
   ============================================================
   Table of Contents:
   1. CSS Variables & Reset
   2. Typography
   3. Layout & Container
   4. Buttons
   5. Header & Navigation
   6. Hero Section
   7. Villa Showcase
   8. Experience Cards
   9. Booking Section
   10. Testimonials
   11. CTA / Contact
   12. Villa Detail Page
   13. Footer
   14. Animations
   15. Mobile Menu
   16. HBook Plugin Overrides
   17. Responsive
   ============================================================ */

/* ===== 1. CSS VARIABLES & RESET ===== */
:root {
    --eden-primary: #c9a84c;
    --eden-primary-dark: #a8872e;
    --eden-primary-light: #e0c878;
    --eden-dark-bg: #0d1117;
    --eden-dark-surface: #161b22;
    --eden-dark-border: #21262d;
    --eden-light-bg: #faf8f5;
    --eden-white: #ffffff;
    --eden-off-white: #f5f0eb;
    --eden-text-primary: #1a1a2e;
    --eden-text-secondary: #5a5a6e;
    --eden-text-light: #8b949e;
    --eden-text-on-dark: #e6edf3;
    --eden-text-on-dark-muted: #8b949e;
    --eden-overlay-opacity: 0.4;
    --eden-radius-sm: 8px;
    --eden-radius: 12px;
    --eden-radius-lg: 20px;
    --eden-radius-xl: 28px;
    --eden-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --eden-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --eden-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --eden-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --eden-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --eden-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --eden-glass-bg: rgba(255, 255, 255, 0.08);
    --eden-glass-border: rgba(255, 255, 255, 0.12);
    --eden-glass-blur: blur(20px);
    --eden-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --eden-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--eden-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--eden-text-primary);
    background-color: var(--eden-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--eden-primary);
    text-decoration: none;
    transition: color var(--eden-transition);
}

a:hover {
    color: var(--eden-primary-dark);
}

ul, ol {
    list-style: none;
}

/* ===== 2. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--eden-font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--eden-text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

/* ===== 3. LAYOUT & CONTAINER ===== */
.eden-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.eden-section {
    padding: 6rem 0;
    position: relative;
}

.eden-section--dark {
    background-color: var(--eden-dark-bg);
    color: var(--eden-text-on-dark);
}

.eden-section--dark .eden-section__title,
.eden-section--dark .eden-section__kicker,
.eden-section--dark h2,
.eden-section--dark h3 {
    color: var(--eden-white);
}

.eden-section--dark .eden-section__desc {
    color: var(--eden-text-on-dark-muted);
}

.eden-section--accent {
    background: linear-gradient(135deg, var(--eden-primary-dark) 0%, var(--eden-primary) 50%, var(--eden-primary-light) 100%);
    color: var(--eden-white);
}

.eden-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.eden-section__kicker {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--eden-primary);
    margin-bottom: 1rem;
    position: relative;
}

.eden-section__kicker::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--eden-primary);
    margin: 0.75rem auto 0;
}

.eden-section__kicker--gold {
    color: var(--eden-primary-light);
}

.eden-section__kicker--gold::after {
    background: var(--eden-primary-light);
}

.eden-section__title {
    margin-bottom: 1rem;
}

.eden-section__desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--eden-text-secondary);
    font-size: 1.1rem;
}

/* ===== 4. BUTTONS ===== */
.eden-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--eden-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--eden-radius);
    cursor: pointer;
    transition: all var(--eden-transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.eden-btn--sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.eden-btn--md { padding: 0.85rem 1.75rem; }
.eden-btn--lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: var(--eden-radius-lg); }

.eden-btn--gold {
    background: linear-gradient(135deg, var(--eden-primary-dark), var(--eden-primary));
    color: var(--eden-white);
    border-color: transparent;
}

.eden-btn--gold:hover {
    background: linear-gradient(135deg, var(--eden-primary), var(--eden-primary-light));
    color: var(--eden-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.eden-btn--white {
    background: var(--eden-white);
    color: var(--eden-text-primary);
}

.eden-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--eden-shadow-lg);
}

.eden-btn--outline {
    background: transparent;
    border-color: var(--eden-primary);
    color: var(--eden-primary);
}

.eden-btn--outline:hover {
    background: var(--eden-primary);
    color: var(--eden-white);
    transform: translateY(-2px);
}

.eden-btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--eden-white);
}

.eden-btn--outline-light:hover {
    background: var(--eden-white);
    color: var(--eden-text-primary);
    border-color: var(--eden-white);
}

.eden-btn--block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ===== 5. HEADER & NAVIGATION ===== */
.eden-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--eden-transition);
    padding: 1.25rem 2rem;
}

.eden-header--transparent {
    background: transparent;
}

.eden-header--solid,
.eden-header--scrolled {
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 2rem;
}

.eden-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.eden-header__logo .custom-logo {
    max-height: 50px;
    width: auto;
}

.eden-header__brand-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.eden-header__brand-name {
    font-family: var(--eden-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eden-white);
    letter-spacing: 0.02em;
}

.eden-header--solid .eden-header__brand-name {
    color: var(--eden-white);
}

.eden-header__brand-tagline {
    font-size: 0.7rem;
    color: var(--eden-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.eden-nav__list {
    display: flex;
    gap: 0.25rem;
}

.eden-nav__list .menu-item a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--eden-radius);
    transition: all var(--eden-transition);
}

.eden-nav__list .menu-item a:hover,
.eden-nav__list .current-menu-item a {
    color: var(--eden-white);
    background: rgba(255, 255, 255, 0.1);
}

.eden-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eden-header__cta {
    font-size: 0.85rem;
}

/* Mobile Toggle */
.eden-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.eden-mobile-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--eden-white);
    border-radius: 2px;
    transition: all var(--eden-transition);
}

.eden-mobile-toggle[aria-expanded="true"] .eden-mobile-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.eden-mobile-toggle[aria-expanded="true"] .eden-mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.eden-mobile-toggle[aria-expanded="true"] .eden-mobile-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== 6. HERO SECTION ===== */
.eden-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--eden-dark-bg);
}

.eden-hero__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.eden-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eden-hero__youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-width: 177.78vh; /* Prevent black bars: 100 * 16/9 */
    min-height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Allow clicks to pass through to hero content */
    border: 0;
}

.eden-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.eden-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, calc(var(--eden-overlay-opacity) + 0.15)) 0%,
        rgba(0, 0, 0, var(--eden-overlay-opacity)) 50%,
        rgba(0, 0, 0, calc(var(--eden-overlay-opacity) + 0.2)) 100%
    );
}

.eden-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.eden-hero__text {
    max-width: 800px;
    margin: 0 auto;
}

.eden-hero__logo {
    margin-bottom: 1.5rem;
}

.eden-hero__logo .custom-logo {
    max-height: 100px;
    width: auto;
    margin: 0 auto;
}

.eden-hero__title {
    color: var(--eden-white);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.eden-hero__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--eden-primary);
    margin: 1.5rem auto 0;
}

.eden-hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeUp 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.eden-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.eden-hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.eden-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.eden-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--eden-white);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ===== 7. VILLA SHOWCASE ===== */
.eden-villas {
    background: #faf8f5;
    color: #1a1a2e !important;
}

.eden-villa-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: var(--eden-radius-xl);
    box-shadow: var(--eden-shadow);
    overflow: hidden;
    transition: transform var(--eden-transition), box-shadow var(--eden-transition);
    color: #1a1a2e !important;
}

.eden-villa-showcase:last-child {
    margin-bottom: 0;
}

.eden-villa-showcase:hover {
    transform: translateY(-4px);
    box-shadow: var(--eden-shadow-xl);
}

.eden-villa-showcase--reversed .eden-villa-showcase__gallery {
    order: 2;
}

.eden-villa-showcase--reversed .eden-villa-showcase__info {
    order: 1;
}

.eden-villa-showcase__gallery {
    position: relative;
    border-radius: var(--eden-radius-lg);
    overflow: hidden;
    z-index: 1;
}

.eden-villa-carousel {
    border-radius: var(--eden-radius-lg);
    overflow: hidden !important;
    aspect-ratio: 4 / 3;
}

.eden-villa-showcase__slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.eden-placeholder-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: var(--eden-white);
    font-family: var(--eden-font-heading);
    font-size: 1.5rem;
}

.eden-villa-showcase__slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
}

.eden-villa-showcase__stats {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 2;
}

.eden-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    color: var(--eden-white);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
}

.eden-carousel__prev,
.eden-carousel__next {
    color: var(--eden-white) !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px);
    border-radius: 50% !important;
    transition: all var(--eden-transition) !important;
}

.eden-carousel__prev:hover,
.eden-carousel__next:hover {
    background: var(--eden-primary) !important;
}

.eden-carousel__prev::after,
.eden-carousel__next::after {
    font-size: 1rem !important;
    font-weight: bold;
}

.eden-carousel__pagination .swiper-pagination-bullet {
    background: var(--eden-white);
    opacity: 0.6;
}

.eden-carousel__pagination .swiper-pagination-bullet-active {
    background: var(--eden-primary);
    opacity: 1;
}

/* Global Swiper overrides - match theme gold accent */
.swiper-button-prev,
.swiper-button-next {
    color: #c9a84c !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #a8872e !important;
}

.swiper-pagination-bullet {
    background: #ccc !important;
    opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
    background: #c9a84c !important;
    opacity: 1 !important;
}

/* Villa Info */
.eden-villa-showcase__info {
    padding: 1rem 0;
    color: #1a1a2e !important;
    position: relative;
    z-index: 5;
}

.eden-villa-showcase__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e !important;
}

.eden-villa-showcase__desc {
    color: #5a5a6e !important;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.eden-villa-showcase__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.eden-amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #5a5a6e;
    background: var(--eden-light-bg);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.eden-villa-showcase__footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    color: #1a1a2e !important;
}

.eden-villa-showcase__price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    color: #1a1a2e !important;
}

.eden-villa-showcase__price-label {
    font-size: 0.85rem;
    color: #5a5a6e !important;
}

.eden-villa-showcase__price .eden-starting-price {
    font-family: var(--eden-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--eden-primary);
}

.eden-villa-showcase__price-period {
    font-size: 0.85rem;
    color: #5a5a6e !important;
}

/* Calendar toggle */
.eden-villa-showcase__calendar {
    margin-top: 1rem;
}

.eden-calendar-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--eden-dark-border);
    padding: 0.6rem 1rem;
    border-radius: var(--eden-radius);
    font-family: var(--eden-font-body);
    font-size: 0.85rem;
    color: var(--eden-text-secondary);
    cursor: pointer;
    transition: all var(--eden-transition);
}

.eden-calendar-toggle:hover {
    border-color: var(--eden-primary);
    color: var(--eden-primary);
}

.eden-calendar-toggle__chevron {
    transition: transform var(--eden-transition);
}

.eden-calendar-toggle.active .eden-calendar-toggle__chevron {
    transform: rotate(180deg);
}

.eden-villa-showcase__calendar-body {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--eden-light-bg);
    border-radius: var(--eden-radius);
}

/* ===== 8. EXPERIENCE CARDS ===== */
.eden-experience {
    background: var(--eden-white);
}

.eden-experience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.eden-experience-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--eden-light-bg);
    border-radius: var(--eden-radius-lg);
    transition: all var(--eden-transition);
    border: 1px solid transparent;
}

.eden-experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--eden-shadow-lg);
    border-color: var(--eden-primary);
    background: var(--eden-white);
}

.eden-experience-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border-radius: 50%;
    color: var(--eden-primary);
}

.eden-experience-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.eden-experience-card p {
    font-size: 0.9rem;
    color: var(--eden-text-secondary);
    line-height: 1.6;
}

/* ===== 9. BOOKING SECTION ===== */
.eden-booking__wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--eden-dark-surface);
    border: 1px solid var(--eden-dark-border);
    border-radius: var(--eden-radius-xl);
    padding: 3rem;
}

.eden-booking__fallback {
    text-align: center;
    padding: 3rem 0;
}

.eden-booking__fallback h3 {
    color: var(--eden-white);
    margin-bottom: 0.5rem;
}

.eden-booking__fallback p {
    color: var(--eden-text-on-dark-muted);
    margin-bottom: 1.5rem;
}

/* ===== 10. TESTIMONIALS ===== */
.eden-testimonials {
    background: var(--eden-light-bg);
}

.eden-testimonials__carousel {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 3rem !important;
}

.eden-testimonial-card {
    text-align: center;
    padding: 2rem;
}

.eden-testimonial-card__stars {
    color: var(--eden-primary);
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.eden-testimonial-card__quote {
    font-family: var(--eden-font-heading);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--eden-text-primary);
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.eden-testimonial-card__author strong {
    display: block;
    font-weight: 600;
    color: var(--eden-text-primary);
    margin-bottom: 0.2rem;
}

.eden-testimonial-card__author span {
    font-size: 0.85rem;
    color: var(--eden-text-secondary);
}

.eden-testimonials__pagination .swiper-pagination-bullet-active {
    background: var(--eden-primary);
}

/* ===== 11. CTA / CONTACT ===== */
.eden-contact__inner {
    text-align: center;
    padding: 4rem 0;
}

.eden-contact__title {
    color: var(--eden-white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.eden-contact__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.eden-contact__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== 12. VILLA DETAIL PAGE ===== */
.eden-villa-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--eden-dark-bg);
}

.eden-villa-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.eden-villa-hero__carousel {
    width: 100%;
    height: 100%;
}

.eden-villa-hero__slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.eden-villa-hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.eden-villa-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 4rem 0 2rem;
}

.eden-villa-hero__title {
    color: var(--eden-white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.eden-villa-hero__location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.eden-hero-carousel__prev,
.eden-hero-carousel__next {
    color: var(--eden-white) !important;
}

.eden-hero-carousel__pagination .swiper-pagination-bullet-active {
    background: var(--eden-primary);
}

/* Stats Bar */
.eden-villa-hero__stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    transform: translateY(100%);
}

.eden-villa-hero__stats-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
}

.eden-villa-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.5rem 1rem;
    color: var(--eden-white);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.eden-villa-stat:last-child {
    border-right: none;
}

.eden-villa-stat__value {
    font-family: var(--eden-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.eden-villa-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* Villa Content Layout */
.eden-villa-content {
    padding: 4rem 0;
    background: var(--eden-light-bg);
}

.eden-villa-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.eden-villa-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.eden-villa-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.eden-villa-section__title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--eden-primary);
    display: inline-block;
}

.eden-prose {
    line-height: 1.8;
    color: var(--eden-text-secondary);
}

.eden-prose p {
    margin-bottom: 1rem;
}

.eden-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.eden-amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--eden-white);
    border-radius: var(--eden-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.eden-amenity-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
    color: var(--eden-primary);
    border-radius: 50%;
}

.eden-amenity-item__text {
    flex: 1;
}

.eden-amenity-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.eden-amenity-item small {
    color: var(--eden-text-secondary);
    font-size: 0.8rem;
}

.eden-rates-wrapper {
    background: var(--eden-white);
    border-radius: var(--eden-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.eden-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.eden-gallery-item {
    position: relative;
    border-radius: var(--eden-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.eden-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--eden-transition-slow);
}

.eden-gallery-item:hover img {
    transform: scale(1.05);
}

.eden-gallery-item__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--eden-transition);
}

.eden-gallery-item:hover .eden-gallery-item__overlay {
    opacity: 1;
}

/* Sidebar */
.eden-sidebar-card {
    background: var(--eden-white);
    border-radius: var(--eden-radius-xl);
    box-shadow: var(--eden-shadow-lg);
    overflow: hidden;
}

.eden-sidebar-card--sticky {
    position: sticky;
    top: 100px;
}

.eden-sidebar-card__price {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--eden-dark-bg), var(--eden-dark-surface));
    color: var(--eden-white);
}

.eden-sidebar-card__price .eden-starting-price {
    font-family: var(--eden-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eden-primary);
}

.eden-sidebar-card__price-period {
    display: block;
    font-size: 0.9rem;
    color: var(--eden-text-on-dark-muted);
    margin-top: 0.25rem;
}

.eden-sidebar-card__booking {
    padding: 1.5rem;
}

.eden-sidebar-card__title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eden-sidebar-card__calendar {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
}

.eden-sidebar-card__info {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.eden-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9rem;
}

.eden-info-list__label {
    color: var(--eden-text-secondary);
    font-weight: 500;
}

.eden-sidebar-card__help {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--eden-light-bg);
    text-align: center;
}

.eden-sidebar-card__help h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.eden-sidebar-card__help p {
    font-size: 0.85rem;
    color: var(--eden-text-secondary);
    margin-bottom: 1rem;
}


/* ============================================================
   12b. VILLA DETAIL REDESIGN (v1.3)
   ============================================================ */

/* --- Description Section --- */
.eden-villa-section--desc {
    margin-bottom: 0;
    padding-bottom: 2rem;
}

/* --- Two-Column: Gallery + Availability --- */
.eden-villa-media-section {
    padding: 3rem 0;
    background: var(--eden-white);
}

.eden-villa-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.eden-villa-two-col__main {
    min-width: 0;
}

.eden-villa-two-col__sidebar {
    min-width: 0;
}

/* --- Gallery Carousel --- */
.eden-gallery-carousel {
    border-radius: var(--eden-radius-lg);
    overflow: hidden;
    box-shadow: var(--eden-shadow);
}

.eden-gallery-carousel__slide {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.eden-gallery-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eden-gallery-carousel__pagination .swiper-pagination-bullet-active {
    background: var(--eden-primary);
}

.eden-gallery-carousel__prev,
.eden-gallery-carousel__next {
    color: var(--eden-white) !important;
    background: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background var(--eden-transition);
}

.eden-gallery-carousel__prev:hover,
.eden-gallery-carousel__next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.eden-gallery-carousel__prev::after,
.eden-gallery-carousel__next::after {
    font-size: 1rem !important;
    font-weight: 700;
}

.eden-gallery-empty {
    background: var(--eden-light-bg);
    border-radius: var(--eden-radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--eden-text-secondary);
}

/* --- Availability Card (sidebar) --- */
.eden-availability-card {
    background: var(--eden-white);
    border-radius: var(--eden-radius-xl);
    box-shadow: var(--eden-shadow-lg);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.eden-availability-card__title {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 0.5rem;
    color: var(--eden-text-primary);
}

.eden-availability-card__calendar {
    padding: 1.5rem;
}

/* --- Booking Form Section --- */
.eden-villa-booking-section {
    padding: 4rem 0;
    background: var(--eden-light-bg);
}

.eden-booking-form-card {
    background: var(--eden-white);
    border-radius: var(--eden-radius-xl);
    box-shadow: var(--eden-shadow);
    padding: 2.5rem;
    overflow: hidden; /* contain HBook elements that overflow */
}

/* HBook elements inside villa booking card */
.eden-booking-form-card .hb-booking-search-form {
    max-width: 100%;
}

.eden-booking-form-card .hb-searched-summary {
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 0.75rem 1.5rem !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 1.5rem !important;
    background: var(--eden-light-bg) !important;
    border-radius: var(--eden-radius) !important;
    font-size: 0.9rem !important;
}

/* Only flex when HBook JS makes it visible (sets display:block inline) */
.eden-booking-form-card .hb-searched-summary[style*="display: block"] {
    display: flex !important;
}

.eden-booking-form-card .hb-searched-summary p {
    margin: 0 !important;
}

.eden-booking-form-card .hb-search-fields-and-submit .hb-search-fields {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.eden-booking-form-card .hb-search-fields .hb-check-dates-wrapper {
    flex: 1 1 180px !important;
    min-width: 160px !important;
    margin: 0 !important;
}

.eden-booking-form-card .hb-search-button-wrapper {
    width: 100% !important;
    clear: both !important;
}

.eden-booking-form-card .hb-search-button-wrapper input[type="submit"],
.eden-booking-form-card .hb-change-search-wrapper input[type="submit"] {
    background: linear-gradient(135deg, var(--eden-primary-dark), var(--eden-primary)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--eden-radius) !important;
    padding: 0.7rem 1.5rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all var(--eden-transition) !important;
}

.eden-booking-form-card .hb-search-button-wrapper input[type="submit"]:hover,
.eden-booking-form-card .hb-change-search-wrapper input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--eden-primary), var(--eden-primary-light)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3) !important;
}

/* Next step button inside villa booking card */
.eden-booking-form-card .hb-next-step-1 {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 1.25rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    clear: both !important;
}

.eden-booking-form-card .hb-next-step-1 input {
    background: linear-gradient(135deg, var(--eden-primary-dark), var(--eden-primary)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--eden-radius) !important;
    padding: 0.7rem 2rem !important;
    font-family: var(--eden-font-body) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all var(--eden-transition) !important;
}

.eden-booking-form-card .hb-next-step-1 input:hover {
    background: linear-gradient(135deg, var(--eden-primary), var(--eden-primary-light)) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3) !important;
}

/* Hide empty accommodation list if only one villa */
.eden-booking-form-card .hb-accom-list:empty {
    display: none !important;
}

/* --- Amenities Section --- */
.eden-villa-amenities-section {
    padding: 4rem 0;
    background: var(--eden-white);
}

/* --- Rates Section --- */
.eden-villa-rates-section {
    padding: 4rem 0;
    background: var(--eden-light-bg);
}


/* ===== 13. FOOTER ===== */
.eden-footer {
    background: var(--eden-dark-bg);
    color: var(--eden-text-on-dark-muted);
}

.eden-footer__top {
    padding: 5rem 0 3rem;
}

.eden-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.eden-footer__brand-name {
    color: var(--eden-white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.eden-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.eden-footer__social {
    display: flex;
    gap: 0.75rem;
}

.eden-footer__social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--eden-text-on-dark-muted);
    transition: all var(--eden-transition);
}

.eden-footer__social-link:hover {
    border-color: var(--eden-primary);
    color: var(--eden-primary);
    background: rgba(201, 168, 76, 0.1);
}

.eden-footer__heading {
    color: var(--eden-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    font-family: var(--eden-font-body);
    font-weight: 600;
}

.eden-footer__link-list li,
.eden-footer__contact-list li {
    margin-bottom: 0.75rem;
}

.eden-footer__link-list a {
    color: var(--eden-text-on-dark-muted);
    font-size: 0.9rem;
    transition: color var(--eden-transition);
}

.eden-footer__link-list a:hover {
    color: var(--eden-primary);
}

.eden-footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.eden-footer__contact-list svg {
    flex-shrink: 0;
    color: var(--eden-primary);
}

.eden-footer__newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.eden-newsletter-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--eden-radius);
    overflow: hidden;
    transition: border-color var(--eden-transition);
}

.eden-newsletter-form:focus-within {
    border-color: var(--eden-primary);
}

.eden-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.7rem 1rem;
    color: var(--eden-white);
    font-family: var(--eden-font-body);
    font-size: 0.85rem;
    outline: none;
}

.eden-newsletter-form input::placeholder {
    color: var(--eden-text-on-dark-muted);
}

.eden-newsletter-form button {
    background: var(--eden-primary);
    border: none;
    padding: 0.7rem 1rem;
    color: var(--eden-white);
    cursor: pointer;
    transition: background var(--eden-transition);
}

.eden-newsletter-form button:hover {
    background: var(--eden-primary-dark);
}

.eden-footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eden-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.eden-footer__copyright {
    font-size: 0.85rem;
}

.eden-footer__legal-list {
    display: flex;
    gap: 1.5rem;
}

.eden-footer__legal-list a {
    color: var(--eden-text-on-dark-muted);
    font-size: 0.85rem;
}

.eden-footer__legal-list a:hover {
    color: var(--eden-primary);
}

/* ===== 14. ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 15. MOBILE MENU ===== */
.eden-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--eden-transition);
}

.eden-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.eden-mobile-menu__inner {
    text-align: center;
    padding: 2rem;
}

.eden-mobile-menu__list {
    margin-bottom: 2rem;
}

.eden-mobile-menu__list .menu-item {
    margin-bottom: 0.5rem;
}

.eden-mobile-menu__list .menu-item a {
    display: block;
    padding: 0.75rem;
    color: var(--eden-white);
    font-size: 1.25rem;
    font-family: var(--eden-font-heading);
    transition: color var(--eden-transition);
}

.eden-mobile-menu__list .menu-item a:hover {
    color: var(--eden-primary);
}

.eden-mobile-menu__cta {
    font-size: 1rem;
}

/* ===== 16. HBOOK PLUGIN OVERRIDES ===== */
/* Make HBook forms look modern */
.eden-booking-form-wrapper .hb-booking-form,
.eden-sidebar-card__booking .hb-booking-form {
    font-family: var(--eden-font-body);
}

.eden-booking-form-wrapper input[type="text"],
.eden-booking-form-wrapper input[type="email"],
.eden-booking-form-wrapper input[type="date"],
.eden-booking-form-wrapper select,
.eden-booking-form-wrapper textarea,
.eden-sidebar-card__booking input[type="text"],
.eden-sidebar-card__booking input[type="email"],
.eden-sidebar-card__booking input[type="date"],
.eden-sidebar-card__booking select,
.eden-sidebar-card__booking textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--eden-radius);
    font-family: var(--eden-font-body);
    font-size: 0.9rem;
    background: var(--eden-white);
    transition: border-color var(--eden-transition);
}

.eden-booking-form-wrapper input:focus,
.eden-booking-form-wrapper select:focus,
.eden-booking-form-wrapper textarea:focus,
.eden-sidebar-card__booking input:focus,
.eden-sidebar-card__booking select:focus,
.eden-sidebar-card__booking textarea:focus {
    outline: none;
    border-color: var(--eden-primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* HBook submit buttons */
.eden-booking-form-wrapper .hb-submit,
.eden-sidebar-card__booking .hb-submit,
.eden-booking-form-wrapper input[type="submit"],
.eden-sidebar-card__booking input[type="submit"] {
    background: linear-gradient(135deg, var(--eden-primary-dark), var(--eden-primary)) !important;
    color: var(--eden-white) !important;
    border: none !important;
    padding: 0.85rem 1.75rem !important;
    border-radius: var(--eden-radius) !important;
    font-family: var(--eden-font-body) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all var(--eden-transition) !important;
}

.eden-booking-form-wrapper .hb-submit:hover,
.eden-sidebar-card__booking .hb-submit:hover,
.eden-booking-form-wrapper input[type="submit"]:hover,
.eden-sidebar-card__booking input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--eden-primary), var(--eden-primary-light)) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

/* Availability calendar styling */
.eden-availability-calendar .hb-availability {
    font-family: var(--eden-font-body);
}

.eden-villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

/* Rates table styling */
.eden-rates-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--eden-font-body);
}

.eden-rates-table th {
    background: var(--eden-dark-bg);
    color: var(--eden-white);
    padding: 0.85rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eden-rates-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
}

/* ===== GLOBAL HBOOK FIXES ===== */
/* Fix white text on light backgrounds in HBook output */
.hb-booking-form,
.hb-booking-form label,
.hb-booking-form p,
.hb-booking-form span,
.hb-booking-form div,
.hb-booking-search-results,
.hb-booking-search-results *,
.hb-search-result,
.hb-search-result *,
.hb-accom-list,
.hb-accom-list * {
    color: #1a1a2e !important;
}

/* Keep buttons readable */
.hb-booking-form .hb-submit,
.hb-booking-form button,
.hb-booking-form input[type="submit"],
.hb-booking-search-results .hb-submit,
.hb-booking-search-results button,
.hb-booking-search-results .hb-book-button,
.hb-accom-list .hb-book-button {
    color: #ffffff !important;
}

/* Fix HBook date fields layout */
.hb-search-fields-and-submit .hb-search-fields {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.hb-search-fields .hb-check-dates-wrapper {
    width: 25% !important;
    min-width: 180px !important;
    flex: none !important;
    margin: 0 !important;
}

.hb-search-fields .hb-accom-number-wrapper,
.hb-search-fields .hb-people-wrapper {
    flex: 1 1 150px !important;
    min-width: 150px !important;
    margin: 0 !important;
}

/* Search/Change button on its own full-width row */
.hb-search-fields-and-submit .hb-search-button-wrapper {
    flex: 0 0 100% !important;
    width: 100% !important;
    clear: both !important;
}

.hb-search-button-wrapper input[type="submit"],
.hb-change-search-wrapper input[type="submit"] {
    width: 100% !important;
    margin-bottom: 10px !important;
}

/* After search: force "Change search" button to its own line */
.hb-searched-summary .hb-change-search-wrapper {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    float: none !important;
}

/* After search: prevent date wrapping */
.hb-searched-summary .hb-check-dates-wrapper {
    white-space: nowrap !important;
    display: inline-block !important;
    margin-right: 15px !important;
}

/* HBook search result cards - Eden theme design */
.hb-multi-accom-choices {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
}

/* Keep title section full width */
.hb-search-result-title-section {
    margin-bottom: 20px !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(0,0,0,0.06) !important;
}

.hb-accom-list .hb-accom {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    padding: 24px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.hb-accom-list .hb-accom:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12) !important;
}

.hb-accom-list .hb-accom-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    max-width: none !important;
    margin: 0 !important;
}

.hb-accom-list .hb-accom-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 !important;
}

.hb-accom-list .hb-accom-desc {
    font-size: 0.95rem !important;
    color: #5a5a6e !important;
    line-height: 1.6 !important;
    flex: 1 !important;
}

.hb-accom-list .hb-accom-price {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #c9a84c !important;
}

.hb-accom-list .hb-accom-price-caption {
    font-size: 0.85rem !important;
    color: #5a5a6e !important;
}

.hb-accom-list .hb-accom-price-caption a {
    color: #c9a84c !important;
    text-decoration: underline !important;
}

.hb-accom-list .hb-select-accom-wrapper input[type="submit"] {
    background: linear-gradient(135deg, #a8872e, #c9a84c) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.hb-accom-list .hb-select-accom-wrapper input[type="submit"]:hover {
    background: linear-gradient(135deg, #c9a84c, #e0c878) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(201,168,76,0.3) !important;
}

/* Search result heading */
.hb-search-result-title-section p {
    color: #5a5a6e !important;
    font-size: 1rem !important;
}

.hb-search-result-title-section h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.8rem !important;
    color: #1a1a2e !important;
    margin: 8px 0 20px !important;
}

/* Price breakdown - let HBook JS toggle it */
.hb-price-breakdown {
    font-size: 0.85rem !important;
    color: #5a5a6e !important;
    background: #faf8f5 !important;
    padding: 12px !important;
    border-radius: 8px !important;
    line-height: 1.6 !important;
}

.hb-price-breakdown-title {
    font-weight: 600 !important;
    color: #1a1a2e !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.hb-accom-list .hb-accom {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    padding: 24px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

/* ===== HBook Multi-Step Booking UX ===== */
.hb-step-button {
    margin: 20px 0 !important;
}
.hb-step-button input[type="submit"] {
    background: #ffffff !important;
    color: #1a1a2e !important;
    border: 2px solid #ddd !important;
    padding: 12px 28px !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
.hb-step-button input[type="submit"]:hover {
    border-color: #c9a84c !important;
    color: #c9a84c !important;
}
.hb-previous-step { float: left !important; }
.hb-next-step { float: right !important; }
.hb-next-step input[type="submit"] {
    background: linear-gradient(135deg, #a8872e, #c9a84c) !important;
    color: #ffffff !important;
    border: none !important;
}
.hb-next-step input[type="submit"]:hover {
    background: linear-gradient(135deg, #c9a84c, #e0c878) !important;
    color: #ffffff !important;
}
.hb-options-form {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 24px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    margin: 20px 0 !important;
    clear: both !important;
}
.hb-options-form .hb-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    color: #1a1a2e !important;
    margin-bottom: 16px !important;
}
.hb-single-option {
    padding: 10px 0 !important;
    border-bottom: 1px solid #eee !important;
}
.hb-single-option label {
    font-size: 1rem !important;
    color: #1a1a2e !important;
    cursor: pointer !important;
}
.hb-single-option input[type="checkbox"] {
    accent-color: #c9a84c !important;
    width: 18px !important;
    height: 18px !important;
    margin-right: 10px !important;
}
.hb-options-total-price {
    font-size: 1rem !important;
    color: #1a1a2e !important;
    font-weight: 600 !important;
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 2px solid #c9a84c !important;
}
.hb-intermediate-step-wrapper {
    clear: both !important;
    padding-top: 20px !important;
}
.hb-intermediate-step-wrapper::after {
    content: '' !important;
    display: table !important;
    clear: both !important;
}

/* ===== HBook Reservation Summary UX ===== */
.hb-resa-summary-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.8rem !important;
    color: #1a1a2e !important;
    margin-bottom: 16px !important;
    text-align: center !important;
}
.hb-resa-payment-msg,
.hb-resa-done-msg {
    text-align: center !important;
    color: #5a5a6e !important;
    font-size: 1rem !important;
    margin-bottom: 24px !important;
    line-height: 1.6 !important;
}
.hb-resa-summary-content {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    margin: 20px 0 !important;
}
.hb-resa-summary-details {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
    gap: 12px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #eee !important;
    margin-bottom: 20px !important;
}
.hb-resa-summary-details > div {
    font-size: 0.95rem !important;
    color: #1a1a2e !important;
    padding: 8px 0 !important;
}
.hb-resa-summary-details > div span {
    font-weight: 700 !important;
    color: #c9a84c !important;
}
.hb-summary-adults-children-wrapper {
    display: flex !important;
    gap: 20px !important;
}
.hb-summary-accom-wrapper { padding: 12px 0 !important; }
.hb-summary-accom-name {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin-bottom: 12px !important;
}
.hb-summary-price-details > div {
    font-size: 0.95rem !important;
    color: #5a5a6e !important;
    padding: 4px 0 !important;
}
.hb-final-fees-wrapper > div {
    font-size: 0.95rem !important;
    color: #5a5a6e !important;
    padding: 4px 0 !important;
}
.hb-summary-total-price {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #c9a84c !important;
    text-align: right !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
    border-top: 2px solid #c9a84c !important;
}
.hb-summary-bottom-text {
    text-align: center !important;
    color: #5a5a6e !important;
    font-size: 0.9rem !important;
    margin-top: 16px !important;
}

/* ===== HBook Customer Details Form ===== */
.hb-booking-details-form {
    clear: both !important;
    padding-top: 20px !important;
}
.hb-booking-details-form .hb-step-button {
    margin-bottom: 30px !important;
}
.hb-details-fields {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    margin-bottom: 24px !important;
    clear: both !important;
}
.hb-details-fields .hb-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    color: #1a1a2e !important;
    margin-bottom: 20px !important;
}
.hb-details-fields label {
    display: block !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #1a1a2e !important;
    margin-bottom: 6px !important;
}
.hb-details-fields input[type="text"],
.hb-details-fields select,
.hb-details-fields .selectize-input {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    color: #1a1a2e !important;
    background: #faf8f5 !important;
    transition: border-color 0.3s ease !important;
    margin-bottom: 16px !important;
}
.hb-details-fields input[type="text"]:focus,
.hb-details-fields select:focus {
    outline: none !important;
    border-color: #c9a84c !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1) !important;
    background: #ffffff !important;
}

/* ===== HBook Coupon Section ===== */
.hb-coupons-area {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 24px 32px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}
.hb-coupons-area .hb-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.3rem !important;
    color: #1a1a2e !important;
    margin-bottom: 8px !important;
}
.hb-coupons-area > p {
    color: #5a5a6e !important;
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
}
.hb-coupons-area .hb-clearfix {
    display: flex !important;
    gap: 10px !important;
}
.hb-coupons-area .hb-coupon-code {
    flex: 1 !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    background: #faf8f5 !important;
}
.hb-coupons-area .hb-coupon-code:focus {
    outline: none !important;
    border-color: #c9a84c !important;
}
.hb-coupons-area .hb-apply-coupon {
    background: linear-gradient(135deg, #a8872e, #c9a84c) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}
.hb-coupons-area .hb-apply-coupon:hover {
    background: linear-gradient(135deg, #c9a84c, #e0c878) !important;
}

/* ===== POSTS / BLOG ===== */
.eden-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.eden-post-card {
    background: var(--eden-white);
    border-radius: var(--eden-radius-lg);
    overflow: hidden;
    box-shadow: var(--eden-shadow);
    transition: all var(--eden-transition);
}

.eden-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eden-shadow-lg);
}

.eden-post-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.eden-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--eden-transition-slow);
}

.eden-post-card:hover .eden-post-card__image img {
    transform: scale(1.05);
}

.eden-post-card__content {
    padding: 1.5rem;
}

.eden-post-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--eden-text-secondary);
    margin-bottom: 0.75rem;
}

.eden-post-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.eden-post-card__title a {
    color: var(--eden-text-primary);
}

.eden-post-card__title a:hover {
    color: var(--eden-primary);
}

.eden-post-card__excerpt {
    font-size: 0.9rem;
    color: var(--eden-text-secondary);
    margin-bottom: 1.25rem;
}

/* Pagination */
.navigation.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-links .page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--eden-radius);
    font-size: 0.9rem;
    color: var(--eden-text-secondary);
    transition: all var(--eden-transition);
}

.nav-links .page-numbers.current {
    background: var(--eden-primary);
    color: var(--eden-white);
    border-color: var(--eden-primary);
}

.nav-links .page-numbers:hover:not(.current) {
    border-color: var(--eden-primary);
    color: var(--eden-primary);
}

/* 404 */
.eden-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.eden-404__content {
    text-align: center;
}

.eden-404__number {
    display: block;
    font-family: var(--eden-font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--eden-primary);
    line-height: 1;
    opacity: 0.3;
}

.eden-404__title {
    color: var(--eden-white);
    margin: -1rem 0 1rem;
}

.eden-404__desc {
    color: var(--eden-text-on-dark-muted);
    max-width: 480px;
    margin: 0 auto 2rem;
}

.eden-404__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.eden-empty {
    text-align: center;
    padding: 4rem 0;
}

.eden-empty h2 {
    margin-bottom: 1rem;
}

.eden-empty .search-form {
    display: flex;
    max-width: 400px;
    margin: 2rem auto 0;
}

.eden-empty .search-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--eden-radius) 0 0 var(--eden-radius);
    font-family: var(--eden-font-body);
}

.eden-empty .search-form button {
    padding: 0.8rem 1.5rem;
    background: var(--eden-primary);
    color: var(--eden-white);
    border: none;
    border-radius: 0 var(--eden-radius) var(--eden-radius) 0;
    cursor: pointer;
    font-weight: 600;
}

/* ===== 17. RESPONSIVE ===== */
@media (max-width: 1024px) {
    .eden-villa-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .eden-villa-showcase--reversed .eden-villa-showcase__gallery {
        order: -1;
    }

    .eden-experience__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eden-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .eden-villa-layout {
        grid-template-columns: 1fr;
    }

    .eden-villa-two-col {
        grid-template-columns: 1fr;
    }

    .eden-availability-card {
        position: static;
    }

    .eden-sidebar-card--sticky {
        position: static;
    }

    .eden-villa-hero__stats-grid {
        flex-wrap: wrap;
    }

    .eden-villa-stat {
        flex: 1 1 45%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .eden-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eden-nav {
        display: none;
    }

    .eden-mobile-toggle {
        display: flex;
    }

    .eden-header__cta {
        display: none;
    }

    .eden-section {
        padding: 4rem 0;
    }

    .eden-hero__title {
        font-size: 2.5rem;
    }

    .eden-hero__subtitle {
        font-size: 1rem;
    }

    .eden-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .eden-villa-showcase {
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .eden-villa-showcase__title {
        font-size: 1.6rem;
    }

    .eden-villa-showcase__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .eden-experience__grid {
        grid-template-columns: 1fr;
    }

    .eden-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .eden-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .eden-amenities-grid {
        grid-template-columns: 1fr;
    }

    .eden-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .eden-villa-hero {
        height: 50vh;
        min-height: 350px;
    }

    .eden-villa-hero__content {
        padding: 2rem 0 1rem;
    }

    .eden-booking__wrapper {
        padding: 1.5rem;
    }

    .eden-hero__video {
        display: none;
    }

    .eden-hero__image {
        display: block;
    }
}

@media (max-width: 480px) {
    .eden-container {
        padding: 0 1.25rem;
    }

    .eden-hero__title {
        font-size: 2rem;
    }

    .eden-section__title {
        font-size: 1.5rem;
    }

    .eden-villa-grid {
        grid-template-columns: 1fr;
    }

    .eden-villa-hero__stats-grid {
        flex-direction: column;
    }

    .eden-villa-stat {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .eden-villa-stat:last-child {
        border-bottom: none;
    }

    .eden-villa-showcase__stats {
        bottom: 0.5rem;
        left: 0.5rem;
    }

    .eden-stat-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}
