/* ==========================================
   AURORA HOLIDAY HOMES — Design System
   ========================================== */
:root {
    --clr-primary: #D4784A;
    --clr-primary-light: #E89B72;
    --clr-primary-dark: #B85C30;
    --clr-accent: #E8A862;
    --clr-accent-glow: rgba(232, 168, 98, 0.3);
    --clr-dark: #0F1419;
    --clr-dark-800: #1A1F26;
    --clr-dark-700: #242A33;
    --clr-dark-600: #2E3640;
    --clr-light: #FAFBFC;
    --clr-light-200: #F0F2F5;
    --clr-light-300: #E4E7EC;
    --clr-light-400: #C9CDD5;
    --clr-text: #1A1F26;
    --clr-text-secondary: #5A6478;
    --clr-text-muted: #8A92A1;
    --clr-white: #FFFFFF;
    --clr-success: #34C77B;
    --clr-star: #FFB800;
    --ff-heading: 'Playfair Display', serif;
    --ff-body: 'Inter', sans-serif;
    --fs-display: clamp(2.8rem, 6vw, 5.5rem);
    --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
    --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-sm: 0.9rem;
    --fs-xs: 0.8rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-section: clamp(5rem, 10vw, 8rem);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    color: var(--clr-text);
    background: var(--clr-light);
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-heading);
    line-height: 1.2;
    font-weight: 600;
}

h2 em,
h1 .accent {
    color: var(--clr-primary);
    font-style: normal;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-sun {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary));
    box-shadow: 0 0 40px var(--clr-accent-glow);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--ff-heading);
    color: var(--clr-white);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 60px rgba(232, 168, 98, 0.5);
    }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

#navbar.menu-open {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clr-white);
    transition: color var(--transition-base);
}

#navbar.scrolled .nav-logo {
    color: var(--clr-text);
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2", "Arial Unicode MS", serif;
    font-variant-emoji: text;
    filter: drop-shadow(0 0 6px rgba(232, 168, 98, 0.5));
}

.logo-accent {
    font-weight: 400;
    margin-left: 0.3rem;
    opacity: 0.7;
    font-size: 0.85em;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0.3em 0;
    transition: color var(--transition-fast);
}

#navbar.scrolled .nav-links a {
    color: var(--clr-text-secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--clr-white);
}

#navbar.scrolled .nav-links a:hover {
    color: var(--clr-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 0.6em 1.5em;
    border-radius: var(--radius-full);
    background: var(--clr-primary);
    color: var(--clr-white);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(212, 120, 74, 0.3);
}

.nav-cta:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 120, 74, 0.4);
}

.nav-language-item {
    display: flex;
    align-items: center;
}

.nav-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.22rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#navbar.scrolled .nav-language-switcher {
    border-color: rgba(26, 31, 38, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 24px rgba(15, 20, 25, 0.08);
}

.nav-language-btn {
    min-width: 2.45rem;
    padding: 0.42rem 0.72rem;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

#navbar.scrolled .nav-language-btn {
    color: var(--clr-text-secondary);
}

.nav-language-btn:hover {
    color: var(--clr-white);
}

#navbar.scrolled .nav-language-btn:hover {
    color: var(--clr-primary);
}

.nav-language-btn.active {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 6px 16px rgba(212, 120, 74, 0.22);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

#navbar.scrolled .nav-toggle span {
    background: var(--clr-text);
}

/* Hero */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-bg {
    position: absolute;
    inset: -20px;
    z-index: 0;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 20, 25, 0.55) 0%, rgba(15, 20, 25, 0.2) 35%, rgba(15, 20, 25, 0.15) 55%, rgba(15, 20, 25, 0.65) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(232, 168, 98, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 120, 74, 0.08) 0%, transparent 50%);
}

/* Gradient Mesh — animated decorative layer */
.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    mix-blend-mode: soft-light;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(232, 168, 98, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 30%, rgba(212, 120, 74, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 50% 80%, rgba(184, 92, 48, 0.15) 0%, transparent 70%);
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 100%;
    }

    50% {
        background-position: 10% 10%, 90% 15%, 45% 90%;
        opacity: 0.5;
    }

    100% {
        background-position: 5% 5%, 95% 10%, 55% 95%;
        opacity: 0.7;
    }
}

/* Glow Orb — follows cursor */
.hero-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 168, 98, 0.15) 0%, rgba(232, 168, 98, 0.05) 40%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.3s ease-out, opacity 0.5s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
    mix-blend-mode: screen;
}

#hero:hover .hero-glow-orb,
#hero.hero-active .hero-glow-orb {
    opacity: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(232, 168, 98, 0.6);
    border-radius: 50%;
    animation: float-particle linear infinite;
    box-shadow: 0 0 6px rgba(232, 168, 98, 0.3);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) translateX(50px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 6rem var(--space-xl) 7rem;
    max-width: 900px;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 0.5em 1.2em;
    color: var(--clr-white);
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

#hero h1 {
    color: var(--clr-white);
    font-size: var(--fs-display);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-line {
    display: block;
}

.hero-line.accent {
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(232, 168, 98, 0.3));
}

.hero-line-highlight {
    color: rgba(255, 255, 255, 0.96);
}

.hero-word-fill {
    display: inline-block;
    position: relative;
    padding-right: 0.03em;
    background:
        linear-gradient(115deg,
            #fff7e7 0%,
            #f6d394 18%,
            #e8a862 34%,
            #fff4d7 50%,
            #d4784a 68%,
            #ffe3b3 84%,
            #fff7e7 100%);
    background-size: 220% 100%;
    background-repeat: no-repeat;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 247, 231, 0.14);
    filter: drop-shadow(0 4px 16px rgba(232, 168, 98, 0.2));
    animation: hero-word-fill-shift 7s ease-in-out infinite;
}

@keyframes hero-word-fill-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    max-width: 620px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .hero-word-fill {
        animation: none;
        background-position: 45% 50%;
    }
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: var(--fs-body);
    padding: 0.85em 1.8em;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(212, 120, 74, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 120, 74, 0.45);
}

.btn-glow {
    animation: btn-glow-anim 3s ease-in-out infinite;
}

@keyframes btn-glow-anim {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(212, 120, 74, 0.35);
    }

    50% {
        box-shadow: 0 4px 30px rgba(212, 120, 74, 0.55), 0 0 60px rgba(212, 120, 74, 0.15);
    }
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6em 1.4em;
    font-size: var(--fs-sm);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-link {
    font-weight: 600;
    color: var(--clr-primary);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.btn-link:hover {
    color: var(--clr-primary-dark);
    letter-spacing: 0.02em;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--clr-white);
}

.stat-suffix {
    font-family: var(--ff-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--clr-accent);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-xs);
    font-weight: 500;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-primary);
    margin-bottom: var(--space-md);
    padding: 0.4em 1em;
    background: rgba(212, 120, 74, 0.08);
    border-radius: var(--radius-full);
}

.tag-light {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.12);
}

.section-header h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
    color: var(--clr-text);
}

.section-header p {
    color: var(--clr-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Properties */
#properties {
    padding: var(--space-section) 0;
    background: var(--clr-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.property-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.property-card.featured {
    border: 2px solid var(--clr-primary);
}

.property-image {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    text-decoration: none;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--clr-primary);
    color: var(--clr-white);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.35em 0.9em;
    border-radius: var(--radius-full);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 25, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-info {
    padding: var(--space-lg);
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: var(--space-sm);
}

.property-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    font-weight: 500;
}

.property-location svg {
    color: var(--clr-primary);
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text);
}

.property-rating svg {
    color: var(--clr-star);
}

.property-info h3 {
    font-size: var(--fs-h3);
    color: var(--clr-text);
}

.property-desc {
    font-size: var(--fs-sm);
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

.property-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.property-amenities span {
    background: var(--clr-light-200);
    padding: 0.3em 0.7em;
    border-radius: var(--radius-sm);
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--clr-light-300);
    margin-top: auto;
}

.property-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-from {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.price-amount {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-text);
}

.price-per {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.properties-cta {
    text-align: center;
}

/* Experience */
#experience {
    padding: var(--space-section) 0;
    background: var(--clr-white);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.experience-images {
    position: relative;
}

.exp-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.exp-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.exp-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--clr-white);
}

.exp-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.exp-floating-card {
    position: absolute;
    top: -1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--clr-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.floating-icon {
    font-size: 1.6rem;
}

.floating-text strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.floating-text span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.experience-content .section-tag {
    display: inline-block;
}

.experience-content h2 {
    font-size: var(--fs-h2);
    margin: var(--space-md) 0;
}

.experience-text {
    color: var(--clr-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

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

.feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.feature:hover {
    background: var(--clr-light);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 120, 74, 0.08);
    border-radius: var(--radius-sm);
    color: var(--clr-primary);
}

.feature-text h4 {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--clr-text);
}

.feature-text p {
    font-size: var(--fs-sm);
    color: var(--clr-text-secondary);
    line-height: 1.6;
}

/* Lanzarote */
#lanzarote {
    position: relative;
    padding: var(--space-section) 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.lanzarote-parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.parallax-img {
    position: absolute;
    top: -8%;
    left: 0;
    width: 100%;
    height: 116%;
    object-fit: cover;
    transform: translate3d(0, var(--lanzarote-parallax-offset, 0px), 0) scale(1.04);
    transform-origin: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.7) 0%, rgba(15, 20, 25, 0.55) 50%, rgba(15, 20, 25, 0.75) 100%);
}

.lanzarote-content {
    position: relative;
    z-index: 1;
}

.lanzarote-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.lanzarote-text h2 {
    color: var(--clr-white);
    font-size: var(--fs-h2);
    margin: var(--space-md) 0;
}

.lanzarote-text h2 em {
    color: var(--clr-accent);
}

.lanzarote-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
}

.lanzarote-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.highlight-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-dark {
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.highlight-card h4 {
    font-family: var(--ff-body);
    color: var(--clr-white);
    font-size: var(--fs-body);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-sm);
    line-height: 1.5;
}

/* Testimonials */
#testimonials {
    padding: var(--space-section) 0;
    background: var(--clr-light);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
}

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    flex: 0 0 calc(50% - var(--space-xl) / 2);
    display: flex;
    flex-direction: column;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    color: var(--clr-star);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-stars:empty {
    display: none;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--clr-text);
    margin-bottom: var(--space-xl);
    font-style: italic;
    font-family: var(--ff-heading);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-weight: 700;
    font-size: var(--fs-sm);
}

.author-info strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.author-info span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-text);
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.slider-dots {
    display: flex;
    gap: var(--space-xs);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-light-300);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background: var(--clr-primary);
    width: 28px;
    border-radius: var(--radius-full);
}

/* Booking */
#booking {
    padding: var(--space-section) 0;
    background: var(--clr-dark);
}

.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
}

.booking-card > * {
    min-width: 0;
}

.booking-content h2 {
    color: var(--clr-white);
    font-size: var(--fs-h2);
    margin: var(--space-md) 0;
}

.booking-content h2 em {
    color: var(--clr-accent);
}

.booking-content p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.perk {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
}

.perk svg {
    color: var(--clr-success);
    flex-shrink: 0;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-group label {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85em 1em;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(212, 120, 74, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group option {
    background: var(--clr-dark-700);
    color: var(--clr-white);
}

/* Contact */
#contact {
    padding: var(--space-section) 0;
    background: var(--clr-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: start;
}

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

.contact-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--clr-white);
    border: 1px solid var(--clr-light-300);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.contact-card h4 {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card a,
.contact-card span {
    font-size: var(--fs-sm);
    color: var(--clr-text-secondary);
}

.contact-card a:hover {
    color: var(--clr-primary);
}

.contact-form {
    background: var(--clr-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-light-300);
}

.contact-form .form-group label {
    color: var(--clr-text-muted);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: var(--clr-light);
    border-color: var(--clr-light-300);
    color: var(--clr-text);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(212, 120, 74, 0.1);
    background: var(--clr-white);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: var(--clr-text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form .btn {
    margin-top: var(--space-sm);
}

/* Footer */
#footer {
    background: var(--clr-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--ff-body);
    color: var(--clr-white);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-family: var(--ff-body);
    color: var(--clr-white);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-newsletter p {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75em 1em;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 0.75em 1em;
    background: var(--clr-primary);
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--clr-primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-xl);
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.35);
}

/* ==========================================
   MULTI-PAGE STYLES
   ========================================== */

/* Page Hero (subpages) */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-700) 50%, var(--clr-dark-600) 100%);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(232, 168, 98, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 120, 74, 0.1) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    max-width: 700px;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--clr-white);
    margin-bottom: var(--space-md);
}

.page-hero-content h1 em {
    color: var(--clr-primary-light);
    font-style: normal;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-padded {
    padding: var(--space-section) 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xl) 0 var(--space-2xl);
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

.breadcrumb a {
    color: var(--clr-text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--clr-primary);
}

.breadcrumb svg {
    flex-shrink: 0;
    opacity: 0.4;
}

.breadcrumb span {
    color: var(--clr-text);
    font-weight: 500;
}

/* Nav active link */
.nav-links a.active {
    color: var(--clr-primary) !important;
}

.nav-links a.active::after {
    width: 100%;
}

/* ==========================================
   PROPERTIES LISTING PAGE
   ========================================== */
.property-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--clr-light-300);
}

.property-detail-card:first-child {
    padding-top: 0;
}

.property-detail-card:last-of-type {
    border-bottom: none;
}

.property-detail-card.reverse {
    direction: rtl;
}

.property-detail-card.reverse>* {
    direction: ltr;
}

.pdc-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pdc-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-detail-card:hover .pdc-image img {
    transform: scale(1.05);
}

.pdc-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--clr-primary);
    color: var(--clr-white);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.35em 0.9em;
    border-radius: var(--radius-full);
}

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

.pdc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.pdc-reviews {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.pdc-info h2 {
    font-size: var(--fs-h2);
    color: var(--clr-text);
}

.pdc-desc {
    color: var(--clr-text-secondary);
    line-height: 1.7;
}

.pdc-specs {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.pdc-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}

.pdc-kpi {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--clr-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-light-300);
}

.pdc-kpi-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.pdc-kpi-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pdc-kpi-value {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text);
}

.pdc-kpi-sub {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.spec {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-text);
}

.spec-icon {
    font-size: 1.1rem;
}

.pdc-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pdc-amenities span {
    background: var(--clr-light-200);
    padding: 0.4em 0.8em;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    color: var(--clr-text-secondary);
}

.pdc-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pdc-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32em 0.75em;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    color: var(--clr-text-secondary);
    background: rgba(212, 120, 74, 0.08);
    border: 1px solid rgba(212, 120, 74, 0.22);
}

.pdc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    margin-top: var(--space-xs);
}

.pdc-price-note {
    display: block;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    margin-top: 2px;
}

/* Properties bottom CTA */
.properties-bottom-cta {
    padding-top: var(--space-3xl);
}

.cta-card {
    text-align: center;
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
}

.cta-card h3 {
    color: var(--clr-white);
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   PROPERTY DETAIL PAGE
   ========================================== */
.property-page {
    padding-top: 100px;
    padding-bottom: var(--space-section);
    background: var(--clr-light);
}

/* Property Gallery */
.prop-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.prop-gallery-main {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--clr-light-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.prop-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform var(--transition-slow);
}

.prop-main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    background: rgba(15, 22, 34, 0.38);
    color: var(--clr-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(2px);
    transition: all var(--transition-fast);
}

.prop-main-nav.prev {
    left: var(--space-md);
}

.prop-main-nav.next {
    right: var(--space-md);
}

.prop-main-nav:hover {
    background: rgba(15, 22, 34, 0.58);
    border-color: rgba(255, 255, 255, 0.85);
}

.prop-main-nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.prop-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    /* Snap per scroll fluido su mobile */
    scroll-snap-type: x mandatory;
}

.prop-thumb {
    flex: 0 0 140px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-fast);
    opacity: 0.6;
    scroll-snap-align: start;
}

.prop-thumb:hover,
.prop-thumb.active {
    opacity: 1;
    border-color: var(--clr-primary);
}

.prop-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Property Content Grid */
.prop-content-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-3xl);
    align-items: start;
}

/* Property Details */
.prop-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.prop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
}

.prop-header h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--clr-text);
    margin-bottom: var(--space-xs);
}

.prop-price-tag {
    flex-shrink: 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    background: var(--clr-light-200);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
}

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

.prop-reviews {
    font-size: var(--fs-sm);
    color: var(--clr-text-muted);
}

.prop-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.prop-spec {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--clr-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-light-300);
}

.prop-spec-icon {
    font-size: 1.5rem;
}

.prop-spec strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.prop-spec span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.prop-description h3,
.prop-amenities-section h3,
.prop-map-section h3 {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--clr-text);
}

.prop-description p {
    color: var(--clr-text-secondary);
    line-height: 1.8;
}

.prop-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.prop-amenities-grid.collapsed .prop-amenity:nth-child(n+7) {
    display: none;
}

.prop-amenity {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--clr-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-light-300);
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.prop-amenity-icon {
    font-size: 1.2rem;
}

.prop-amenities-toggle {
    margin-top: var(--space-sm);
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    color: var(--clr-text-secondary);
    border-radius: var(--radius-full);
    padding: 0.45rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.prop-amenities-toggle:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.prop-amenities-toggle .toggle-icon {
    transition: transform var(--transition-fast);
}

.prop-amenities-toggle.is-open .toggle-icon {
    transform: rotate(180deg);
}

/* Map Placeholder */
.prop-map-placeholder {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-light-300);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-inner {
    text-align: center;
    color: var(--clr-text-muted);
}

.map-placeholder-inner svg {
    margin-bottom: var(--space-sm);
    color: var(--clr-primary);
    opacity: 0.5;
}

.map-placeholder-inner p {
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 0.25rem;
}

.map-placeholder-inner span {
    font-size: var(--fs-xs);
}

/* Booking Widget Sidebar */
.prop-booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-widget-container {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-light-300);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-widget-header {
    padding: var(--space-xl) var(--space-xl) var(--space-md);
}

.booking-widget-header h3 {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--clr-text);
}

.booking-widget-header p {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

/* Hospitable Widget Slots */
.hospitable-widget-slot {
    min-width: 320px;
    min-height: 400px;
}

#hospitable-booking-widget {
    display: grid;
    justify-items: center;
    align-items: start;
    padding: 0 0 var(--space-lg);
    min-width: 0;
    min-height: 0;
}

.booking-iframe-embed {
    display: block;
    width: min(100%, 396px);
    height: 900px;
    margin: 0 auto;
    border: 0;
    border-radius: var(--radius-lg);
    background: transparent;
}

.widget-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    min-height: 400px;
}

.widget-placeholder-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 120, 74, 0.08);
    border-radius: 50%;
    margin-bottom: var(--space-lg);
    color: var(--clr-primary);
}

.widget-placeholder h4 {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: var(--space-sm);
}

.widget-placeholder p {
    color: var(--clr-text-muted);
    font-size: var(--fs-sm);
    max-width: 280px;
    line-height: 1.6;
}

.widget-placeholder-note {
    display: block;
    margin-top: var(--space-md);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    opacity: 0.7;
}

/* Dark variant for homepage */
#booking .widget-placeholder {
    min-height: 350px;
}

#booking .widget-placeholder h4 {
    color: var(--clr-white);
}

#booking .widget-placeholder p {
    color: rgba(255, 255, 255, 0.5);
}

#booking .widget-placeholder-icon {
    background: rgba(232, 168, 98, 0.15);
    color: var(--clr-accent);
}

.booking-widget-perks {
    padding: var(--space-md) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border-top: 1px solid var(--clr-light-300);
}

.bw-perk {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    color: var(--clr-text-secondary);
}

.bw-perk svg {
    color: var(--clr-success);
    flex-shrink: 0;
}

.booking-policy-panel {
    padding: 0 var(--space-xl) var(--space-xl);
}

.booking-policy-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 120, 74, 0.18);
    background:
        linear-gradient(135deg, rgba(212, 120, 74, 0.08), rgba(232, 168, 98, 0.05)),
        var(--clr-light);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.booking-policy-link:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 120, 74, 0.36);
    box-shadow: 0 10px 28px rgba(212, 120, 74, 0.12);
}

.booking-policy-link svg {
    flex-shrink: 0;
    color: var(--clr-primary);
}

.booking-policy-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.booking-policy-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
}

.booking-policy-copy strong {
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.booking-policy-copy span:last-child {
    font-size: var(--fs-xs);
    color: var(--clr-text-secondary);
    line-height: 1.5;
}

/* Policy page */
.policy-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 242, 245, 0.9));
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
}

.policy-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(228, 231, 236, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: clamp(1.4rem, 3vw, 2rem);
}

.policy-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.policy-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    background: rgba(212, 120, 74, 0.1);
    border: 1px solid rgba(212, 120, 74, 0.14);
    flex-shrink: 0;
}

.policy-kicker {
    display: inline-block;
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-primary);
}

.policy-card h2 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--clr-text);
}

.policy-intro {
    color: var(--clr-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.policy-rule-list,
.policy-payment-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.policy-rule,
.policy-payment-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    background: var(--clr-light);
    border: 1px solid var(--clr-light-300);
}

.policy-payment-step.muted {
    background: rgba(255, 255, 255, 0.7);
}

.policy-chip {
    min-width: 72px;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1;
}

.policy-chip.refund {
    background: rgba(52, 199, 123, 0.12);
    color: #1b8b54;
}

.policy-chip.refund.soft,
.policy-chip.payment {
    background: rgba(212, 120, 74, 0.12);
    color: var(--clr-primary-dark);
}

.policy-chip.neutral {
    background: rgba(90, 100, 120, 0.12);
    color: var(--clr-text-secondary);
}

.policy-rule-copy strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--clr-text);
    font-size: var(--fs-sm);
}

.policy-rule-copy p {
    color: var(--clr-text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.65;
}

.policy-note {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(15, 20, 25, 0.03);
    border: 1px solid rgba(15, 20, 25, 0.06);
    color: var(--clr-text-secondary);
    font-size: var(--fs-sm);
}

.policy-support-card {
    margin-top: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--clr-dark), var(--clr-dark-700));
    box-shadow: var(--shadow-xl);
}

.policy-support-card h3 {
    color: var(--clr-white);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.policy-support-card p {
    color: rgba(255, 255, 255, 0.68);
    max-width: 620px;
}

.policy-support-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Booking widget area on homepage */
.booking-widget-area {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.booking-widget-area .hospitable-widget-slot {
    flex: 1;
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.booking-actions-only {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: var(--space-2xl);
    width: 100%;
}

.booking-actions-only .btn {
    justify-content: center;
    width: min(100%, 280px);
}

/* Other Properties */
.other-properties {
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--clr-light-300);
}

.other-properties h3 {
    font-family: var(--ff-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.other-properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

/* ==========================================
   GALLERY PAGE
   ========================================== */

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6em 1.4em;
    border: 1px solid var(--clr-light-300);
    border-radius: var(--radius-full);
    background: var(--clr-white);
    color: var(--clr-text-secondary);
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.filter-btn.active {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

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

.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.gallery-item-caption {
    color: var(--clr-white);
    font-weight: 600;
    font-size: var(--fs-sm);
}

.gallery-item-cat {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gallery-item.hidden {
    display: none;
}

.gallery-empty {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--clr-text-muted);
}

/* Gallery CTA */
.gallery-cta {
    padding: var(--space-section) 0;
    background: var(--clr-dark);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    text-align: center;
}

.lightbox-caption:empty,
.lightbox-caption[hidden] {
    display: none;
}

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    background: none;
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    z-index: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 1;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: var(--space-xl);
}

.lightbox-next {
    right: var(--space-xl);
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--fs-sm);
}

/* ==========================================
   MULTI-PAGE RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .property-detail-card {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .property-detail-card.reverse {
        direction: ltr;
    }

    .prop-content-grid {
        grid-template-columns: 1fr;
    }

    .prop-booking-sidebar {
        position: static;
    }

    #hospitable-booking-widget {
        padding: 0 0 var(--space-md);
    }

    .booking-iframe-embed {
        width: min(100%, 420px);
        height: 860px;
    }

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

    .other-properties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
    }

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

    .gallery-item.large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    .prop-gallery-main {
        aspect-ratio: 4 / 3;
    }

    .prop-main-nav {
        width: 36px;
        height: 36px;
    }

    .prop-thumb {
        flex-basis: 120px;
    }

    #hospitable-booking-widget {
        padding: 0 var(--space-sm) var(--space-md);
    }

    .booking-iframe-embed {
        width: 100%;
        max-width: none;
        height: 800px;
    }

    .prop-header {
        flex-direction: column;
    }

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

    .pdc-image img {
        height: 280px;
    }

    .pdc-top {
        align-items: flex-start;
        gap: var(--space-sm);
        flex-direction: column;
    }

    .pdc-kpis {
        grid-template-columns: 1fr;
    }

    .pdc-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: var(--space-sm);
    }

    .lightbox-next {
        right: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .prop-thumb {
        flex-basis: 104px;
    }

    #hospitable-booking-widget {
        padding: 0 var(--space-xs) var(--space-md);
    }

    .booking-iframe-embed {
        width: 100%;
        max-width: none;
        height: 780px;
    }

    .gallery-filters {
        gap: var(--space-xs);
    }

    .filter-btn {
        font-size: var(--fs-xs);
        padding: 0.5em 1em;
    }

    .prop-specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .breadcrumb {
        font-size: var(--fs-xs);
    }
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-down"] {
    transform: translateY(-20px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .experience-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .lanzarote-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .parallax-img {
        top: -6%;
        height: 112%;
        transform: translate3d(0, var(--lanzarote-parallax-offset, 0px), 0) scale(1.03);
    }

    .booking-card {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        width: 100%;
        margin: 0 auto;
    }

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

    .policy-support-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    #navbar {
        z-index: 2000;
    }

    #navbar.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1102;
        position: relative;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        min-height: -webkit-fill-available;
        padding: calc(env(safe-area-inset-top, 0px) + 64px) var(--space-xl) calc(env(safe-area-inset-bottom, 0px) + var(--space-xl));
        background: #0f1419;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        align-items: center;
        justify-content: flex-start;
        gap: var(--space-2xl);
        z-index: 2000;
    }

    .nav-toggle.active {
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 14px);
        right: var(--space-xl);
        z-index: 2002;
        pointer-events: auto;
        touch-action: manipulation;
    }

    #navbar.menu-open .nav-toggle span {
        background: var(--clr-white);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links.open a {
        font-size: 1.4rem;
        color: var(--clr-white);
    }

    .nav-links.open .nav-language-item {
        margin-top: auto;
        width: 100%;
        justify-content: center;
    }

    .nav-links.open .nav-language-switcher {
        width: min(280px, 100%);
        justify-content: center;
        padding: 0.3rem;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.16);
    }

    .nav-links.open .nav-language-btn {
        flex: 1 1 0;
        padding: 0.9rem 0.75rem;
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.82rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto var(--space-3xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .lanzarote-highlights {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

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

    .contact-info-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #booking .section-container {
        padding-inline: var(--space-lg);
    }

    .booking-content,
    .booking-widget-area,
    .booking-actions-only {
        width: 100%;
        min-width: 0;
    }

    .booking-actions-only {
        padding: var(--space-xl);
        min-height: 0;
    }

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

    .perk span {
        min-width: 0;
    }

    .contact-card {
        flex: 1;
        min-width: 140px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .exp-img-secondary {
        right: -1rem;
        width: 50%;
    }

    .exp-floating-card {
        right: 0;
    }

    .booking-policy-link {
        align-items: flex-start;
    }

    .logo-icon {
        font-size: 0;
        width: 1.2rem;
        height: 1.2rem;
        flex: 0 0 1.2rem;
        filter: none;
    }

    .logo-icon::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8A862' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4.1' fill='%23E8A862' fill-opacity='0.16'/%3E%3Cpath d='M12 1.75v2.4M12 19.85v2.4M4.75 4.75l1.7 1.7M17.55 17.55l1.7 1.7M1.75 12h2.4M19.85 12h2.4M4.75 19.25l1.7-1.7M17.55 6.45l1.7-1.7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        filter: drop-shadow(0 0 6px rgba(232, 168, 98, 0.38));
    }
}

@media (max-width: 480px) {
    .lanzarote-highlights {
        grid-template-columns: 1fr;
    }

    .parallax-img {
        top: -5%;
        height: 110%;
        transform: translate3d(0, var(--lanzarote-parallax-offset, 0px), 0) scale(1.02);
    }

    .contact-info-cards {
        flex-direction: column;
    }

    #booking .section-container {
        padding-inline: var(--space-md);
    }

    .booking-card {
        padding: var(--space-lg);
    }

    .booking-actions-only {
        padding: var(--space-lg);
    }

    .booking-actions-only .btn {
        width: 100%;
    }

    .policy-rule,
    .policy-payment-step {
        grid-template-columns: 1fr;
    }

    .policy-chip {
        min-width: 0;
        width: fit-content;
    }

    .hero-badge {
        font-size: var(--fs-xs);
    }
}

/* ==========================================
   ADMIN PAGE
   ========================================== */
.admin-page {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-section);
    min-height: 100vh;
    background: var(--clr-light);
}

.admin-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-3xl);
}

.admin-header h1 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-md);
    color: var(--clr-text);
}

.admin-header h1 em {
    color: var(--clr-primary);
    font-style: normal;
}

.admin-header p {
    color: var(--clr-text-secondary);
    font-size: 1.05rem;
}

/* Status Bar */
.admin-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: var(--space-xl);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: var(--fs-body);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.status-dot.not-configured {
    background: var(--clr-light-400);
}

.status-dot.configured {
    background: var(--clr-accent);
}

.status-dot.testing {
    background: var(--clr-accent);
    animation: pulse-glow 1s ease-in-out infinite;
}

.status-dot.connected {
    background: var(--clr-success);
    box-shadow: 0 0 8px rgba(52, 199, 123, 0.4);
}

.status-dot.error {
    background: #E74C3C;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.4);
}

.status-meta {
    color: var(--clr-text-muted);
    font-size: var(--fs-sm);
}

/* Admin Cards */
.admin-card {
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.admin-card-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--clr-light-200);
}

.admin-card-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.admin-card-header h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-h3);
    margin-bottom: var(--space-xs);
}

.admin-card-header p {
    color: var(--clr-text-secondary);
    font-size: var(--fs-sm);
}


/* Instructions */
.admin-instructions {
    background: rgba(212, 120, 74, 0.05);
    border: 1px solid rgba(212, 120, 74, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.admin-instructions h4 {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--clr-primary-dark);
}

.admin-instructions ol {
    list-style: decimal;
    padding-left: var(--space-lg);
    color: var(--clr-text-secondary);
    font-size: var(--fs-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.admin-instructions a {
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Form */
.admin-form-group {
    margin-bottom: var(--space-xl);
}

.admin-form-group label {
    display: block;
    font-weight: 600;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
    color: var(--clr-text);
}

.token-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.admin-input {
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 1rem;
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    border: 2px solid var(--clr-light-300);
    border-radius: var(--radius-md);
    background: var(--clr-light);
    color: var(--clr-text);
    transition: all var(--transition-fast);
    outline: none;
}

.admin-input::placeholder {
    color: var(--clr-text-muted);
}

.admin-input:focus {
    border-color: var(--clr-primary);
    background: var(--clr-white);
    box-shadow: 0 0 0 4px rgba(212, 120, 74, 0.1);
}

.token-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-muted);
    padding: 0.3rem;
    transition: color var(--transition-fast);
}

.token-toggle:hover {
    color: var(--clr-primary);
}

/* Admin Actions */
.admin-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.admin-actions .btn {
    font-size: var(--fs-sm);
}

.btn.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.btn.loading span {
    visibility: hidden;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--clr-white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Cache Info */
.admin-cache-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--clr-light);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
}

.cache-label {
    font-weight: 600;
    color: var(--clr-text);
}

.cache-status {
    color: var(--clr-text-muted);
}

.cache-status.cache-active {
    color: var(--clr-success);
    font-weight: 500;
}

/* Import Results */
.import-results {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--clr-light-200);
}

.import-results h4 {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-text-secondary);
}

.import-properties-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.import-property-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md);
    background: var(--clr-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.import-property-item:hover {
    background: var(--clr-light-200);
}

.import-property-thumb {
    width: 72px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--clr-light-300);
}

.import-property-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.import-property-thumb .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.import-property-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.import-property-info strong {
    font-size: var(--fs-body);
    color: var(--clr-text);
}

.import-property-info span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

/* Activity Log */
.admin-log {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.log-entry {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.log-entry.log-success {
    background: rgba(52, 199, 123, 0.06);
}

.log-entry.log-error {
    background: rgba(231, 76, 60, 0.06);
}

.log-entry.log-warning {
    background: rgba(255, 184, 0, 0.06);
}

.log-entry.log-info {
    background: var(--clr-light);
}

.log-time {
    color: var(--clr-text-muted);
    font-family: monospace;
    font-size: var(--fs-xs);
    flex-shrink: 0;
    min-width: 65px;
}

.log-message {
    color: var(--clr-text-secondary);
    word-break: break-word;
}

/* ==========================================
   LOADING SKELETON
   ========================================== */
.skeleton {
    background: linear-gradient(90deg,
            var(--clr-light-200) 25%,
            var(--clr-light-300) 50%,
            var(--clr-light-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.skeleton-image {
    aspect-ratio: 4/3;
    background: linear-gradient(90deg,
            var(--clr-light-200) 25%,
            var(--clr-light-300) 50%,
            var(--clr-light-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 16px;
    margin: var(--space-sm) var(--space-lg);
    background: linear-gradient(90deg,
            var(--clr-light-200) 25%,
            var(--clr-light-300) 50%,
            var(--clr-light-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

/* ==========================================
   API DATA LOADING STATES
   ========================================== */
.data-loading-overlay {
    position: relative;
}

.data-loading-overlay::after {
    content: 'Caricamento dati...';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 251, 252, 0.9);
    font-weight: 500;
    color: var(--clr-text-muted);
    border-radius: var(--radius-lg);
    z-index: 5;
}

.admin-page-section {
    scroll-margin-top: 120px;
}

.admin-section-nav {
    position: sticky;
    top: 92px;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: 0.9rem 1rem;
}

.admin-section-chip {
    border: 1px solid var(--clr-light-300);
    background: rgba(255, 255, 255, 0.84);
    color: var(--clr-text);
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.admin-section-chip:hover {
    border-color: rgba(212, 120, 74, 0.36);
    color: var(--clr-primary);
    background: rgba(212, 120, 74, 0.08);
}

.admin-collapsible-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 0.9rem 1rem;
    border: 1px solid var(--clr-light-300);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    color: var(--clr-text);
}

.admin-collapsible-summary::-webkit-details-marker {
    display: none;
}

.admin-collapsible-summary small {
    color: var(--clr-text-muted);
    font-size: var(--fs-xs);
    font-weight: 500;
}

.import-results .admin-collapsible-summary::after,
.admin-log-panel .admin-collapsible-summary::after,
.gallery-admin-panel .admin-collapsible-summary::after {
    content: '+';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--clr-light-200);
    color: var(--clr-text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.import-results,
.admin-log-panel,
.gallery-admin-panel {
    margin-top: var(--space-lg);
}

.import-results[open] .admin-collapsible-summary,
.admin-log-panel[open] .admin-collapsible-summary,
.gallery-admin-panel[open] .admin-collapsible-summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.import-results[open] .admin-collapsible-summary::after,
.admin-log-panel[open] .admin-collapsible-summary::after,
.gallery-admin-panel[open] .admin-collapsible-summary::after {
    content: '-';
    color: var(--clr-primary);
}

.import-results-body,
.admin-log-panel .admin-log,
.gallery-admin-panel-body {
    border: 1px solid var(--clr-light-300);
    border-top: 0;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    padding: var(--space-md);
}

/* Admin page responsive */
@media (max-width: 768px) {
    .admin-section-nav {
        top: 80px;
        flex-direction: column;
    }

    .admin-section-chip {
        width: 100%;
    }

    .admin-collapsible-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-admin-grid {
        grid-template-columns: 1fr;
    }

    .cust-panel-grid {
        grid-template-columns: 1fr;
    }

    .cust-quick-nav {
        flex-direction: column;
    }

    .cust-quick-nav-chip {
        width: 100%;
    }

    .cust-property-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .cust-property-summary-toggle {
        align-self: flex-start;
    }

    .cust-panel-actions {
        flex-direction: column;
    }

    .cust-panel-btn {
        width: 100%;
    }

    .admin-actions {
        flex-direction: column;
    }

    .admin-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .import-property-item {
        flex-direction: column;
        text-align: center;
    }

    .admin-status-bar {
        flex-direction: column;
        text-align: center;
    }

    .cust-amenity-row {
        align-items: flex-start;
    }

    .cust-amenity-copy {
        flex: 1;
    }

    .cust-image-row {
        align-items: flex-start;
    }

    .cust-image-copy {
        flex: 1;
    }

    .cust-amenity-actions {
        width: 100%;
        flex-wrap: wrap;
    }

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

    .gallery-admin-controls {
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
    }
}

/* ==========================================
   ADMIN CUSTOMIZATION UI
   ========================================== */
.customization-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.cust-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
    gap: var(--space-lg);
}

.cust-panel-block {
    background: rgba(var(--clr-background-rgb), 0.4);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.cust-panel-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

.cust-panel-btn {
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    color: var(--clr-text);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cust-panel-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.cust-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cust-quick-nav-chip {
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    color: var(--clr-text);
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    min-height: 54px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    font-family: inherit;
    font-size: var(--fs-xs);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cust-quick-nav-chip span {
    text-align: left;
}

.cust-quick-nav-chip strong {
    font-size: 0.72rem;
    color: var(--clr-primary);
    white-space: nowrap;
}

.cust-quick-nav-chip:hover,
.cust-quick-nav-chip.is-selected {
    border-color: rgba(212, 120, 74, 0.36);
    background: rgba(212, 120, 74, 0.08);
}

.cust-property {
    background: rgba(var(--clr-background-rgb), 0.5);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cust-property summary::-webkit-details-marker,
.cust-subsection summary::-webkit-details-marker {
    display: none;
}

.cust-property-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.6);
}

.cust-property[open] .cust-property-summary {
    border-bottom: 1px solid var(--clr-light-300);
}

.cust-property-summary-copy {
    min-width: 0;
    flex: 1;
}

.cust-property h4 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.cust-property h4 small {
    color: var(--clr-text-muted);
    font-weight: 400;
}

.cust-property-summary-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.cust-summary-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: var(--clr-light-200);
    color: var(--clr-text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
}

.cust-summary-chip.is-accent {
    background: rgba(212, 120, 74, 0.12);
    color: var(--clr-primary-dark);
}

.cust-property-summary-toggle {
    flex-shrink: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.cust-property[open] .cust-property-summary-toggle {
    color: var(--clr-primary);
}

.cust-property-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
}

.cust-editor-block {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--clr-light-300);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.cust-property .form-group {
    margin-bottom: 0;
}

.cust-property .form-group+.form-group {
    margin-top: var(--space-md);
}

.cust-property .form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    font-weight: 500;
}

.cust-property input,
.cust-property textarea {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    padding: var(--space-sm);
    background: transparent;
    color: inherit;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.cust-property input:focus,
.cust-property textarea:focus {
    border-color: var(--clr-primary);
    outline: none;
}

.cust-subsection {
    border: 1px solid var(--clr-light-300);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.cust-subsection-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
}

.cust-subsection-summary::after {
    content: '+';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--clr-light-200);
    color: var(--clr-text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cust-subsection[open] .cust-subsection-summary::after {
    content: '-';
    color: var(--clr-primary);
}

.cust-subsection-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.cust-subsection-copy strong {
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.cust-subsection-copy span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.cust-subsection-body {
    padding: 0 var(--space-lg) var(--space-lg);
}

.cust-gallery {
    display: flex;
    gap: var(--space-xs);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
    scrollbar-width: thin;
}

.cust-thumb {
    flex: 0 0 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.cust-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cust-thumb.active {
    border-color: var(--clr-primary);
    opacity: 1;
}

.cust-thumb:hover {
    opacity: 1;
}

.cust-helper {
    margin-bottom: var(--space-sm);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.cust-home-panel {
    margin-bottom: var(--space-lg);
}

.gallery-admin-grid {
    margin-bottom: var(--space-lg);
}

.gallery-admin-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.gallery-admin-status {
    margin: 0.85rem 0 0;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.gallery-admin-status.is-success {
    color: #15803d;
}

.gallery-admin-status.is-warning {
    color: #b45309;
}

.gallery-admin-status.is-error {
    color: #b91c1c;
}

.gallery-admin-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.gallery-admin-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) auto;
    gap: var(--space-md);
    align-items: start;
    padding: 0.9rem;
    border: 1px solid var(--clr-light-300);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
}

.gallery-admin-media {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 0;
}

.gallery-admin-thumb {
    width: 98px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--clr-light-200);
}

.gallery-admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-admin-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.gallery-admin-copy strong {
    font-size: var(--fs-sm);
    color: var(--clr-text);
}

.gallery-admin-copy span {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.gallery-admin-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
}

.gallery-admin-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) auto;
    gap: var(--space-sm);
}

.gallery-admin-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.gallery-admin-field input,
.gallery-admin-select {
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    color: var(--clr-text);
    padding: 0.65rem 0.8rem;
    font-family: inherit;
    font-size: var(--fs-sm);
}

.gallery-admin-field input:focus,
.gallery-admin-select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(212, 120, 74, 0.12);
}

.gallery-admin-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: end;
    min-height: 40px;
    padding: 0 0.3rem;
    font-size: var(--fs-xs);
    color: var(--clr-text);
}

.gallery-admin-toggle input {
    width: 16px;
    height: 16px;
}

.gallery-remove-btn {
    color: #b91c1c;
}

.gallery-remove-btn:hover {
    border-color: rgba(185, 28, 28, 0.28);
    color: #b91c1c;
}

.cust-home-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.cust-home-row.is-selected {
    border-color: rgba(212, 120, 74, 0.32);
    background: rgba(212, 120, 74, 0.08);
}

.cust-home-copy {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 0;
    flex: 1;
}

.cust-home-toggle {
    height: 34px;
    padding: 0 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    color: var(--clr-text);
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cust-home-toggle:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.cust-home-toggle.is-selected {
    background: rgba(212, 120, 74, 0.1);
    border-color: rgba(212, 120, 74, 0.35);
    color: var(--clr-primary-dark);
}

.cust-image-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.cust-image-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--clr-light-300);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
}

.cust-image-row.is-cover {
    border-color: rgba(212, 120, 74, 0.32);
    background: rgba(212, 120, 74, 0.08);
}

.cust-image-copy {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 0;
}

.cust-image-thumb {
    width: 78px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--clr-light-200);
}

.cust-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cust-image-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.cust-image-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-text);
}

.cust-image-hint {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
}

.cust-amenities-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.cust-amenity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--clr-light-300);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
}

.cust-amenity-copy {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 0;
    color: var(--clr-text);
    font-size: var(--fs-sm);
}

.cust-amenity-index {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--clr-light-200);
    color: var(--clr-text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--fs-xs);
    font-weight: 600;
}

.cust-amenity-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.cust-amenity-actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.cust-position-control {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0 0.15rem 0 0;
    color: var(--clr-text-muted);
    font-size: var(--fs-xs);
}

.cust-position-label {
    font-weight: 600;
}

.cust-position-input {
    width: 58px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    color: var(--clr-text);
    text-align: center;
    font-family: inherit;
    font-size: var(--fs-xs);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.cust-position-input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(212, 120, 74, 0.12);
}

.cust-amenity-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--clr-light-300);
    background: var(--clr-white);
    color: var(--clr-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cust-amenity-btn:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-1px);
}

.cust-amenity-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.cust-amenity-empty {
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--clr-light-300);
    color: var(--clr-text-muted);
    font-size: var(--fs-sm);
    background: rgba(255, 255, 255, 0.55);
}
