:root {
    --primary: #6b5b6e;
    --secondary: #7fb8a0;
    --bg: #f8f8f8;
    --card-bg: #fff;
    --text: #333;
    --text-light: #666;
    --border: #e5e5e5;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}
.desktop-only { display: none; }
@media (min-width: 1025px) {
    .desktop-only { display: block; }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { 
    height: 100%;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--secondary);
    color: var(--text);
    overflow-x: hidden;
}
.app { 
    height: 100%;
    display: flex; 
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
}
/* Header */
.header {
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-left { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.header-back { 
    display: none; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
}
.header-back.visible { display: block; }
.header-title { 
    font-size: 16px; 
    font-weight: 600; 
    display: block; 
    max-width: 100%; 
    white-space: normal; 
    overflow: visible; 
    text-overflow: clip; 
    word-break: break-word;
    flex: 1 1 auto;
}
.header-icons { display: flex; gap: 12px; }
.header-icons button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.9;
    padding: 4px;
}
.header-icons button:hover { opacity: 1; }

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: -10px;
}
.mobile-menu-btn svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    display: block;
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: 65%;
    max-width: 340px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 4px 0 20px rgba(0,0,0,0.12);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4px 16px 18px;
    gap: 10px;
}
.mobile-drawer.open {
    transform: translateX(0);
}
.mobile-drawer-close {
    background: none;
    border: none;
    align-self: flex-end;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
    padding: 2px 4px;
}
.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-drawer-nav button {
    background: #fff;
    color: #2d3748;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
    position: relative;
}
.mobile-drawer-nav button span:first-child {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef1f8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #50638f;
    flex-shrink: 0;
}
.mobile-drawer-nav button span:first-child svg {
    width: 18px;
    height: 18px;
}
.mobile-drawer-nav button span:last-child {
    flex: 1;
}
.mobile-drawer-nav button:hover {
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
    transform: translateX(3px);
    background: #f5f7ff;
}
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0,0,0,0.15), transparent 35%), rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 150;
}
.mobile-drawer-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .header-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 170px;
    }
}

@media (min-width: 769px) {
    .header-title {
        max-width: none;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

/* Main content */
.main { 
    flex: 1; 
    overflow-y: auto; 
    padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px));
}

/* Home page */
.home-page {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hero {
    flex: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 20px 24px;
    padding-top: 10vh;
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-media::-webkit-media-controls {
    display: none !important;
}
.hero-media::-webkit-media-controls-enclosure {
    display: none !important;
}
.hero-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 2px solid rgba(255,255,255,0.3);
}
.hero-logo svg { width: 30px; height: 30px; fill: white; }
.hero-company { font-size: 18px; font-weight: 500; margin-bottom: 12px; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.hero-contact { margin-bottom: 8px; }
.hero-contact-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; margin-bottom: 6px; }
.hero-contact-item svg { width: 18px; height: 18px; }
.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.trustpilot-rating.fade-in {
    opacity: 0.9;
    transform: translateY(0);
}
.trustpilot-rating:hover {
    transform: translateY(-1px);
    opacity: 1;
}
.trustpilot-rating .stars {
    font-size: 13px;
    letter-spacing: 1px;
    color: #E6C97A;
    text-shadow: 0 0 2px rgba(230, 201, 122, 0.25);
}
.trustpilot-rating .label {
    font-size: 12px;
    opacity: 0.75;
}
.trustpilot-hero-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: -2px;
    margin-bottom: 2px;
    opacity: 0.95;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.trustpilot-hero-link.fade-in {
    opacity: 0.9;
    transform: translateY(0);
}
.trustpilot-hero-link:hover {
    opacity: 1;
}
.trustpilot-hero-link .stars {
    font-size: 13px;
    letter-spacing: 1px;
    color: #E6C97A;
    text-shadow: 0 0 2px rgba(230, 201, 122, 0.25);
}
.trustpilot-hero-link .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}
.hero-name { font-size: 32px; font-weight: 700; margin-bottom: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.4); }
.hero-address { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; opacity: 0.95; margin: 4px 0 24px; text-align: center; line-height: 1.5; }
.hero-address svg { width: 20px; height: 20px; margin: 0; }

/* Fade-in animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeInUp 0.8s ease-out forwards; }
.hero-logo { animation: fadeInUp 0.6s ease-out forwards; }
.hero-company { animation: fadeInUp 0.7s ease-out 0.1s forwards; opacity: 0; }
.hero-contact { animation: fadeInUp 0.7s ease-out 0.2s forwards; opacity: 0; }
.hero-name { animation: fadeInUp 0.7s ease-out 0.3s forwards; opacity: 0; }
.hero-subheader { 
    font-size: 16px; 
    font-weight: 400; 
    opacity: 0.9; 
    margin-top: 2px;
    animation: fadeInUp 0.7s ease-out 0.35s forwards; 
    opacity: 0; 
}
.hero-address { animation: fadeInUp 0.7s ease-out 0.4s forwards; opacity: 0; }
.btn-start { animation: fadeInUp 0.7s ease-out 0.5s forwards; opacity: 0; }

/* VillaVilla partner banner */
.villavilla-banner {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    background: rgba(255,255,255,0.5);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.villavilla-banner:hover {
    background: rgba(255,255,255,0.7);
}
.villavilla-banner-left {
    left: 12px;
    right: auto;
}
.villavilla-banner-text {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.villavilla-banner img {
    height: 24px;
    width: auto;
}

/* Cheapest dates badge */
.cheapest-badge {
    position: absolute;
    top: 82px;
    left: 18px;
    z-index: 11;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.65);
    background: radial-gradient(circle at 35% 30%, #ffedc0 0%, #f3a63b 48%, #d96a0b 72%, #b24a00 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    line-height: 1.15;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 5px 14px rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.cheapest-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26), inset 0 6px 16px rgba(255, 255, 255, 0.14);
    filter: brightness(1.04);
}
.cheapest-badge:active {
    transform: translateY(0) scale(0.99);
}
.cheapest-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 65%);
    opacity: 0.8;
    pointer-events: none;
}
.cheapest-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 55%);
    pointer-events: none;
}
@media (max-width: 640px) {
    .cheapest-badge {
        width: 96px;
        height: 96px;
        top: 70px;
        left: 10px;
        font-size: 11px;
        padding: 10px;
        border-width: 2px;
    }
}

/* Cheapest page */
.cheapest-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cheapest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cheapest-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cheapest-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.15s ease;
    background: rgba(66, 92, 77, 0.06);
}
.cheapest-link:hover {
    background: rgba(66, 92, 77, 0.12);
    transform: translateY(-1px);
}
.cheapest-link:active {
    transform: translateY(0);
}
.cheapest-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cheapest-title svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.cheapest-sub {
    color: #4b5563;
    font-size: 14px;
    margin-top: 4px;
}
.cheapest-year-toggle {
    display: inline-flex;
    gap: 8px;
    background: #f8f8f8;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.cheapest-year-toggle button {
    border: none;
    background: transparent;
    color: #4b5563;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.cheapest-year-toggle button.active {
    background: rgba(66, 92, 77, 0.12);
    color: var(--primary);
}
.cheapest-year-toggle button:hover {
    transform: translateY(-1px);
}
.cheapest-empty {
    padding: 18px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    font-size: 14px;
}
.cheapest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 768px) {
    .cheapest-grid {
        grid-template-columns: 1fr;
    }
}
.cheapest-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 14px 16px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cheapest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.cheapest-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cheapest-card .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #1f2937;
    background: #f3f4f6;
}
.cheapest-card .pill-save {
    background: #ecfdf3;
    color: #16a34a;
}
.cheapest-card-dates {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
}
.cheapest-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.cheapest-card-price .price-main {
    font-weight: 800;
    font-size: 18px;
    color: #0f172a;
}
.cheapest-card-price .price-save {
    font-size: 12px;
    color: #059669;
    font-weight: 600;
}
.cheapest-card-cta {
    margin-top: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--primary);
    font-weight: 700;
}

.cheapest-custom {
    margin-top: 10px;
    padding: 18px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cheapest-custom-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.dow-toggle-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.dow-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dow-label {
    font-size: 12px;
    color: #4b5563;
    font-weight: 700;
}
.dow-buttons {
    display: flex;
    gap: 6px;
}
.dow-buttons button {
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
}
.dow-buttons button.active {
    background: rgba(66, 92, 77, 0.12);
    color: var(--primary);
    border-color: rgba(66, 92, 77, 0.4);
}
.dow-buttons button:hover {
    transform: translateY(-1px);
}
.btn-find {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}
.btn-find:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}
.btn-find:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cheapest-page {
        padding: 24px 16px 40px;
    }
    .cheapest-title {
        font-size: 22px;
    }
}

/* Language switcher */
.lang-switcher {
    position: absolute;
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 12px;
    z-index: 40;
    display: flex;
    gap: 8px;
    padding: 6px;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(6px);
}
.lang-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
    background: rgba(255,255,255,0.4);
}

/* Desktop header language buttons */
.header-lang-switcher {
    position: absolute;
    right: 20px;
    top: calc(50% + env(safe-area-inset-top, 0px));
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 40;
}

@media (max-width: 768px) {
    /* Keep language buttons visible on white/light sections (booking flow) */
    .lang-switcher {
        position: fixed;
        top: calc(14px + env(safe-area-inset-top, 0px));
        right: 14px;
    }
}
.header-search-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    opacity: 0.9;
    display: flex;
    align-items: center;
}
.header-search-btn:hover { opacity: 1; }
.header-search-btn svg {
    width: 18px;
    height: 18px;
}
.header-lang-btn {
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    font-size: 12px;
    background: transparent;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.header-lang-btn::before {
    content: attr(data-label);
    color: inherit;
    font-size: inherit;
    line-height: 1;
}
.header-lang-btn:hover,
.header-lang-btn.active {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.9);
}

/* Combined language + currency dropdown */
.header-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 12px;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s;
}
.header-pill:hover,
.header-pill[aria-expanded="true"] {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.9);
}
.lc-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 50;
    display: none;
    width: 240px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    color: #1f2937;
}
.lc-popover.show { display: block; }
.lc-group { margin-bottom: 10px; }
.lc-group:last-child { margin-bottom: 0; }
.lc-title {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
}
.lc-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.pill-btn {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #d9d9d9;
    background: #fff;
    font-size: 13px;
    line-height: 1.2;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s;
}
.pill-btn.active,
.pill-btn:hover {
    border-color: #1a2b3c;
    background: #f0f4ff;
}
.booking-modal .lc-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking-modal .header-pill {
    background: #f7f9fb;
    border-color: #d0d5dd;
    color: #1a2b3c;
}
.booking-modal .header-pill:hover,
.booking-modal .header-pill[aria-expanded="true"] {
    background: #e9eef5;
    border-color: #b8c2d1;
}
.booking-modal .lc-popover {
    box-shadow: 0 10px 26px rgba(0,0,0,0.1);
}
.booking-modal .lc-title { color: #1f2937; }
.booking-modal .pill-btn { color: #111827; }
@media (max-width: 768px) {
    .lc-popover { width: 220px; }
}

/* Currency switcher (booking modal header) */
.currency-switcher {
    display: flex;
    align-items: center;
}
.currency-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 4px 24px 4px 10px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 12px;
    background: #fff;
    color: #1a2b3c;
    cursor: pointer;
    position: relative;
    background-image: linear-gradient(45deg, transparent 50%, #1a2b3c 50%), linear-gradient(135deg, #1a2b3c 50%, transparent 50%);
    background-position: calc(100% - 14px) calc(50% - 3px), calc(100% - 9px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: all 0.2s;
}
.currency-select:hover,
.currency-select:focus {
    background: #f5f7fb;
    border-color: #b9c2cf;
    outline: none;
}
.currency-select option {
    color: #111;
    background: #fff;
}

.btn-start {
    background: rgba(180, 140, 180, 0.85);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-start:hover { background: rgba(180, 140, 180, 1); }
.btn-start.visible { opacity: 1; }

/* Info page - Category grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
}
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.category-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--primary);
}
.category-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.category-name { font-size: 13px; color: var(--text); line-height: 1.3; }

/* Category detail page */
.category-page { display: none; }
.category-page.active { display: block; }

.section-accordion {
    border-bottom: 1px solid var(--border);
}
.section-header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--card-bg);
}
.section-header:hover { background: #fafafa; }
.section-header.section-active {
    background: #eef1f5;
    border-left: 3px solid var(--primary);
    font-weight: 600;
}
.section-title { font-size: 15px; font-weight: 500; }
.section-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}
.section-accordion.open .section-arrow { transform: rotate(180deg); }
.section-content {
    display: none;
    padding: 0 16px 16px;
}
.section-accordion.open .section-content { display: block; }
.section-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}
.section-text { 
    font-size: 14px; 
    line-height: 1.7; 
    color: var(--text);
}
.section-text h3 { margin: 16px 0 8px; font-size: 15px; }
.section-text p { margin-bottom: 12px; }
.section-text ul { margin: 8px 0 12px 20px; }
.section-text li { margin-bottom: 4px; }
.section-text a { color: var(--secondary); }

/* Map page */
.map-page { height: calc(100vh - 60px); position: relative; display: flex; flex-direction: column; }
#map { width: 100%; flex: 1; min-height: 200px; }
.map-filter {
    background: linear-gradient(to right, var(--primary), #9d8aa0);
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.map-filter span { font-size: 14px; }
.map-actions {
    position: absolute;
    right: 12px;
    bottom: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}
.map-btn {
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow);
}
.map-btn:hover { border-color: var(--primary); }

/* Directions panel */
.directions-panel {
    background: white;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.directions-input-row {
    display: flex;
    gap: 10px;
}
.directions-input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}
.directions-input:focus {
    border-color: var(--primary);
}
.directions-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.directions-btn:hover {
    filter: brightness(1.1);
}
.directions-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.directions-result {
    font-size: 14px;
    color: var(--text);
    padding: 8px 0 0;
    display: none;
}
.directions-result.show {
    display: block;
}
.directions-result strong {
    color: var(--primary);
}
.directions-error {
    color: #c00;
    font-size: 13px;
    margin-top: 8px;
}

/* Google Places Autocomplete dropdown */
.pac-container {
    z-index: 10000 !important;
    font-family: 'Open Sans', sans-serif;
}
.pac-item {
    padding: 8px 12px;
    cursor: pointer;
}
.pac-item:hover {
    background: #f5f5f5;
}

/* Force-hide Google map controls (map type, zoom, fullscreen) */
#map .gm-style-mtc,
#map .gmnoprint,
#map .gm-fullscreen-control,
#map .gm-bundled-control-on-bottom {
    display: none !important;
}

/* Search page */
.search-page { padding: 16px; }
.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    outline: none;
}
.search-input:focus { border-color: var(--primary); }
.search-hint {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.5;
}
.search-results { margin-top: 16px; }
.search-result {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
}
.search-result:hover { border-color: var(--primary); }
.search-result-title { font-weight: 600; font-size: 14px; }
.search-result-category { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* Bottom navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    display: flex;
    background: white;
    border-top: 1px solid var(--border);
    z-index: 90;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}
.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 6px 4px;
    cursor: pointer;
    color: rgba(0,0,0,0.48);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: none;
    background: none;
    transition: color 0.2s ease;
}
.nav-item.active {
    color: var(--primary);
    background: rgba(0,0,0,0.02);
}
.nav-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(0,0,0,0.08);
}
.nav-item svg {
    width: 32px;
    height: 32px;
    margin-bottom: 2px;
}

/* Loading */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Page transitions */
.page { display: none; }
.page.active { display: block; }

/* Desktop sidebar layout */
@media (min-width: 768px) {
    html,
    body {
        overflow: hidden;
    }
    .app { max-width: 100%; flex-direction: row; }
    .sidebar {
        width: 320px;
        border-right: 1px solid var(--border);
        height: 100vh;
        overflow-y: auto;
        flex-shrink: 0;
    }
    .content-area {
        flex: 1;
        height: 100vh;
        overflow-y: auto;
    }
    .bottom-nav { display: none; }
    .main { padding-bottom: 0; }
    .map-page { padding-bottom: 0; height: calc(100vh - 60px); }
    .map-actions { bottom: 20px; }
    
    /* Desktop hero enhancements */
    .hero {
        justify-content: center;
        min-height: 100vh;
        padding: 60px 40px;
    }
    .hero-name {
        font-size: 48px;
        margin-bottom: 12px;
    }
    .hero-subheader {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .hero-address {
        font-size: 15px;
        margin: 8px 0 32px;
    }
    .hero-buttons {
        gap: 16px;
    }
    .btn-availability,
    .btn-explore {
        padding: 16px 40px;
        font-size: 14px;
    }
}

/* Trustpilot widget */
.trustpilot-container {
    margin-top: 24px;
    animation: fadeInUp 0.7s ease-out 0.6s forwards;
    opacity: 0;
}
@media (min-width: 768px) {
    .trustpilot-container {
        margin-top: 32px;
    }
}

/* Install banner */
.install-banner {
    position: fixed;
    right: 16px;
    bottom: 88px;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 8px 8px 12px;
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow);
    z-index: 120;
}
.install-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.install-action svg {
    width: 18px;
    height: 18px;
}
.install-close {
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 16px;
    padding: 6px 8px;
    border-radius: 50%;
}
.install-close:hover { background: rgba(0,0,0,0.05); }

/* Cookie Consent - GDPR Compliant */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: white;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 200;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-consent.show { display: flex; }
.cookie-consent p { margin: 0; text-align: center; max-width: 600px; line-height: 1.5; }
.cookie-consent a { color: var(--secondary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cookie-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn:hover { filter: brightness(1.1); }
.cookie-btn.reject {
    background: transparent;
    border: 1px solid #888;
    color: #ccc;
}
.cookie-btn.reject:hover { background: #444; }

/* Install Instructions Modal */
.install-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 250;
    padding: 20px;
}
.install-modal.show { display: flex; }
.install-modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 340px;
    width: 100%;
    text-align: center;
}
.install-modal h3 { margin: 0 0 16px; color: var(--primary); font-size: 18px; }
.install-modal p { margin: 0 0 12px; color: var(--text); font-size: 14px; line-height: 1.6; }
.install-modal .step { display: flex; align-items: center; gap: 12px; text-align: left; margin: 12px 0; padding: 10px; background: var(--bg); border-radius: 8px; }
.install-modal .step-num { width: 28px; height: 28px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.install-modal .step-text { font-size: 13px; color: var(--text); }
.install-modal .close-btn { margin-top: 16px; background: var(--primary); color: white; border: none; padding: 10px 28px; border-radius: 6px; cursor: pointer; font-weight: 600; }

/* Generic Modal Styles (Cancellation, etc.) */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 16px;
}
.modal.show {
    display: flex;
}
.modal .modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal .modal-header h2 {
    font-size: 20px;
    color: #1a2b3c;
    margin: 0;
}
.modal .modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 4px;
    line-height: 1;
}
.modal .modal-close:hover {
    color: #333;
}

/* Booking Modal Styles */
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    pointer-events: none;
    padding: 16px;
}
.booking-modal.show { 
    display: flex; 
    pointer-events: auto;
}
.booking-modal-content {
    background: white;
    border-radius: 12px;
    width: min(520px, 100%);
    max-height: 90vh;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    overflow-y: auto;
    position: relative;
    margin: auto;
}
.booking-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}
.booking-modal-header h2 { font-size: 24px; color: #1a2b3c; margin: 0; }
.booking-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 4px;
}
.booking-modal-body { padding: 20px; }

@media (max-width: 640px) {
    .booking-modal {
        padding: 12px;
    }
    .booking-modal-content {
        width: 100%;
        max-height: 93vh;
    }
    .booking-modal-body {
        padding: 16px;
    }
}

@media (min-width: 769px) {
    .booking-modal {
        padding: 28px;
    }
    .booking-modal-content {
        width: min(920px, calc(100% - 120px));
        max-height: 92vh;
    }
    .booking-modal-body {
        padding: 24px;
    }
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.7s ease-out 0.5s forwards;
    opacity: 0;
}
.btn-availability {
    background: rgba(255, 255, 255, 0.9);
    color: #1a2b3c;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-availability:hover { background: white; }
.btn-explore {
    background: rgba(127, 184, 160, 0.9);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-explore:hover { background: rgba(127, 184, 160, 1); }

/* Faciliteter page */
.faciliteter-page {
    padding: 0;
    background: #f8f8f8;
}
.faciliteter-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #9d8aa0 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.faciliteter-hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.faciliteter-hero p {
    font-size: 15px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.faciliteter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 24px 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.facility-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.facility-card-image {
    height: 160px;
    background: linear-gradient(135deg, var(--secondary) 0%, #5a9a80 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.facility-card-image svg {
    width: 48px;
    height: 48px;
    opacity: 0.9;
}
.facility-card-content {
    padding: 20px;
}
.facility-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.facility-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}
.faciliteter-location {
    background: white;
    padding: 40px 20px;
    text-align: center;
}
.faciliteter-location h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}
.location-info {
    max-width: 600px;
    margin: 0 auto;
}
.location-address {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}
.location-distances {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    text-align: left;
}
.distance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
}
.distance-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}
.faciliteter-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #5a9a80 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.faciliteter-cta h2 {
    font-size: 24px;
    margin-bottom: 12px;
}
.faciliteter-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.faciliteter-cta button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.faciliteter-cta button:hover {
    background: #f5f5f5;
}

/* Contact page */
.contact-page {
    padding: 0;
    background: #f8f8f8;
}
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #9d8aa0 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.contact-hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-hero p {
    font-size: 15px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 16px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}
.contact-info-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}
.contact-info-item span {
    color: var(--text-light);
    font-size: 14px;
}
.contact-info-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 12px;
}
.contact-info-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.08);
}
.contact-form-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.contact-form-card h3 {
    margin: 0 0 20px;
    color: var(--primary);
}
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: inherit;
    box-sizing: border-box;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary);
    outline: none;
}
.contact-form-card button {
    width: 100%;
}

/* Calendar styles */
.calendar-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.calendar-month {
    flex: 1;
    min-width: 280px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.calendar-header h3 { margin: 0; font-size: 16px; color: #1a2b3c; }
.calendar-nav {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
}
.calendar-nav:hover { background: #f5f5f5; }
.calendar-nav-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}
.calendar-nav-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #1a2b3c;
    transition: all 0.2s;
}
.calendar-nav-btn:hover:not(:disabled) { background: #f5f5f5; border-color: #7fb8a0; }
.calendar-nav-btn:disabled { cursor: not-allowed; color: #999; }
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 0;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.calendar-day:hover:not(.disabled):not(.empty) { background: #f0f0f0; }
.calendar-day.disabled { color: #ccc; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.empty { cursor: default; }
.calendar-day.available { background: #e8f5e9; color: #2e7d32; }
.calendar-day.selected { background: #1a2b3c; color: white; }
.calendar-day.in-range { background: #e3f2fd; }
.calendar-day.today { border: 2px solid var(--primary); }

.calendar-legend {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    font-size: 12px;
}
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}
.legend-dot.available { background: #e8f5e9; border: 1px solid #2e7d32; }
.legend-dot.selected { background: #1a2b3c; }
.legend-dot.unavailable { background: #f5f5f5; text-decoration: line-through; }

.selected-dates-info {
    margin-top: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}
.selected-dates-info h4 { margin: 0 0 12px; font-size: 14px; color: #1a2b3c; }
.dates-display { font-size: 16px; font-weight: 600; color: #1a2b3c; }
.price-display { font-size: 24px; font-weight: 700; color: #2e7d32; margin-top: 8px; }
.calendar-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
}
.btn-reset {
    background: transparent;
    border: 1px solid #ddd;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}
.btn-reset:hover { background: #f5f5f5; }
.btn-continue {
    background: #1a2b3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.btn-continue:hover { background: #2a3b4c; }
.btn-continue:disabled { background: #ccc; cursor: not-allowed; }

/* Reserve Form Styles */
.reserve-form { max-width: 100%; }
.reserve-section { margin-bottom: 24px; }
.reserve-section h3 { 
    font-size: 20px; 
    color: #1a2b3c; 
    margin: 0 0 16px;
    font-weight: 400;
}
.date-display-box {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #1a2b3c;
    background: #f9f9f9;
    width: 100%;
    max-width: none;
    flex: 1 1 100%;
    display: block;
    text-align: center;
}
.date-display-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.date-edit-button {
    padding: 10px 14px;
    border: 1px solid #1a2b3c;
    background: #fff;
    color: #1a2b3c;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.date-edit-button:hover {
    background: #1a2b3c;
    color: #fff;
}
.modify-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 6px;
}
.modify-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #d9dfe7;
    border-radius: 12px;
    background: #fff;
    color: #2d3b4c;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}
.modify-toggle .chevron { font-size: 14px; }
.modify-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.modify-toggle.open {
    border-color: #2d3b4c;
    color: #1a2b3c;
}
.inline-calendar-panel {
    display: none;
    margin-top: 12px;
    border: 1px solid #e6e9ed;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    padding: 16px;
}
.inline-calendar-panel.open {
    display: block;
    animation: inlineCalendarSlideDown 240ms ease;
    transform-origin: top;
}
@keyframes inlineCalendarSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.inline-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.inline-calendar-nav .selected-range {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: #1a2b3c;
}
.inline-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.inline-calendar-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.apply-dates-btn {
    padding: 10px 16px;
    border-radius: 8px;
    background: #1a2b3c;
    color: #fff;
    border: none;
    cursor: pointer;
}
.link-button {
    background: none;
    border: none;
    color: #1a2b3c;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 0;
}
.guest-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.guest-select {
    display: flex;
    flex-direction: column;
}
.guest-select label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}
.guest-select select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    background: white;
}

/* Extra Services */
.extra-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.extra-service:last-child { border-bottom: none; }
.service-left { display: flex; align-items: center; gap: 12px; }
.service-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #c9a96e;
}
.service-info { font-size: 14px; color: #1a2b3c; }
.service-price { font-size: 14px; font-weight: 600; color: #1a2b3c; }
.linnen-select {
    display: flex;
    align-items: center;
    gap: 8px;
}
.linnen-select select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Cost Breakdown */
.cost-breakdown {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}
.cost-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 16px;
}
.cost-header h3 { margin: 0; font-size: 20px; color: #1a2b3c; font-weight: 400; }
.cost-total { font-size: 20px; font-weight: 600; color: #1a2b3c; }
.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px dashed #e0e0e0;
}
.cost-row:last-child { border-bottom: none; }
.cost-row.total {
    font-weight: 600;
    color: #1a2b3c;
    font-size: 16px;
    border-top: 1px solid #ddd;
    margin-top: 8px;
    padding-top: 12px;
}
.btn-book {
    width: 100%;
    background: #1a2b3c;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}
.btn-book:hover { background: #2a3b4c; }

/* Contact Form Styles */
.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}
@media (max-width: 768px) {
    .contact-form-container { grid-template-columns: 1fr; }
    .contact-form-container .order-summary { position: static; margin-bottom: 24px; }
}
.contact-form-fields { flex: 1; }
.form-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}
.contact-back-row {
    margin-bottom: 12px;
}
.contact-back-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1px solid #1a2b3c;
    background: #fff;
    color: #1a2b3c;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.contact-back-button:hover {
    background: #1a2b3c;
    color: #fff;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: 13px;
    color: #1a2b3c;
    margin-bottom: 6px;
}
.form-group label .optional { color: #c9a96e; font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea { min-height: 80px; resize: vertical; }

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}
.booking-modal .order-summary {
    position: static;
    top: auto;
}
.order-summary h3 {
    font-size: 16px;
    color: #1a2b3c;
    margin: 0 0 4px;
}
.order-property {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    color: #1a2b3c;
    margin-bottom: 16px;
}
.order-property svg { width: 20px; height: 20px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}
.summary-row.total {
    font-weight: 600;
    color: #1a2b3c;
    border-top: 1px solid #ddd;
    margin-top: 8px;
    padding-top: 12px;
}
.coupon-section { margin-top: 16px; }
.coupon-section label {
    font-size: 13px;
    color: #1a2b3c;
    display: block;
    margin-bottom: 6px;
}
.coupon-section label .optional { color: #c9a96e; }
.coupon-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 8px;
}
.btn-coupon {
    width: 100%;
    background: #5a6b5a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.btn-checkout {
    width: 100%;
    background: #1a2b3c;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}
.btn-checkout:hover { background: #2a3b4c; }

/* Success message */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}
.booking-success svg {
    width: 80px;
    height: 80px;
    color: #2e7d32;
    margin-bottom: 20px;
}
.booking-success h2 { color: #1a2b3c; margin-bottom: 12px; }
.booking-success p { color: #666; font-size: 15px; line-height: 1.6; }

/* Loading spinner for booking */
.booking-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}
.booking-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e5e5;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.booking-loading p { margin-top: 16px; color: #666; }

/* Customer Portal */
.portal-page { padding: 0; }
.portal-hero {
    background: linear-gradient(135deg, var(--primary), #9d8aa0);
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.portal-hero h1 { font-size: 28px; margin-bottom: 8px; }
.portal-hero p { opacity: 0.9; font-size: 14px; }
.portal-auth {
    max-width: 400px;
    margin: 24px auto;
    padding: 0 16px;
}
.portal-tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.portal-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}
.portal-tab.active {
    background: var(--primary);
    color: white;
}
.portal-form .form-group {
    margin-bottom: 16px;
}
.portal-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}
.portal-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}
.btn-portal {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}
.btn-portal:hover { opacity: 0.9; }
.btn-logout {
    margin-top: 12px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}
.btn-logout:hover { background: rgba(255,255,255,0.3); }
.portal-bookings {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.booking-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.booking-id { font-weight: 600; color: var(--primary); }
.booking-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.status-new { background: #e3f2fd; color: #1976d2; }
.status-confirmed { background: #fff3e0; color: #f57c00; }
.status-paid { background: #e8f5e9; color: #388e3c; }
.status-cancelled { background: #ffebee; color: #d32f2f; }
.booking-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.booking-detail { font-size: 13px; color: var(--text); }
.booking-detail strong { display: block; color: var(--text-light); font-size: 11px; margin-bottom: 2px; }
.portal-review {
    padding: 24px 20px;
    text-align: center;
    background: #f9f9f9;
    margin-top: 20px;
}
.portal-review h3 { margin-bottom: 8px; color: var(--primary); }
.portal-review p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
@media (max-width: 480px) {
    .booking-details { grid-template-columns: 1fr; }
}

/* SSO Login Buttons */
.sso-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: var(--text-light);
    font-size: 13px;
}
.sso-divider::before,
.sso-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.sso-divider span {
    padding: 0 16px;
}
.sso-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}
.sso-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}
.sso-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.sso-google:hover { border-color: #4285F4; }
.sso-microsoft:hover { border-color: #00A4EF; }
.sso-apple {
    background: #000;
    color: white;
    border-color: #000;
}
.sso-apple:hover {
    background: #333;
}

/* Booking SSO Section */
.booking-sso-section {
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}
.booking-sso-section.logged-in {
    background: #e8f5e9;
    border-color: #c8e6c9;
}
.sso-header h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: var(--text);
}
.sso-header p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}
.sso-buttons-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: 12px !important;
}
.sso-btn-small,
a.sso-btn-small,
.booking-modal .sso-btn-small,
.booking-modal-body .sso-btn-small,
.contact-form-fields .sso-btn-small {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    flex: 1 !important;
    min-width: 100px !important;
    box-sizing: border-box !important;
}
.sso-btn-small:hover {
    background: #f5f5f5 !important;
    border-color: #bbb !important;
}
.sso-btn-small.sso-google:hover {
    border-color: #4285F4 !important;
}
.sso-btn-small.sso-microsoft:hover {
    border-color: #00A4EF !important;
}
.sso-btn-small.sso-apple,
a.sso-btn-small.sso-apple,
.booking-modal .sso-btn-small.sso-apple,
.booking-modal-body .sso-btn-small.sso-apple {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}
.sso-btn-small.sso-apple:hover {
    background: #333 !important;
}
.sso-btn-small svg,
a.sso-btn-small svg,
.booking-modal .sso-btn-small svg,
.booking-modal-body .sso-btn-small svg,
.contact-form-fields .sso-btn-small svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
}
.sso-divider-small {
    display: flex;
    align-items: center;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 12px;
}
.sso-divider-small::before,
.sso-divider-small::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.sso-divider-small span {
    padding: 0 12px;
}
.sso-logged-in {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.sso-check {
    color: #388e3c;
    font-weight: bold;
}
.sso-change-btn {
    margin-left: auto;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #388e3c;
    color: #388e3c;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}
.sso-change-btn:hover {
    background: #388e3c;
    color: white;
}
@media (max-width: 600px) {
    .sso-buttons-row {
        flex-direction: column;
    }
}

/* Booking Auth Section */
.booking-login-required {
    border: 2px solid #e0e0e0;
}
.booking-email-auth {
    margin-top: 16px;
}
.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.auth-tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.2s;
}
.auth-tab:hover {
    color: var(--text);
}
.auth-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 500;
}
.btn-auth-submit {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
}
.btn-auth-submit:hover {
    background: #1a3a4c;
}
.auth-error {
    color: #dc3545;
    font-size: 13px;
    margin-bottom: 8px;
    min-height: 20px;
}
.auth-switch {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
}
.auth-switch a {
    color: var(--primary);
    text-decoration: none;
}
.auth-switch a:hover {
    text-decoration: underline;
}

/* Styled change account button */
.sso-change-btn-styled {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary, #2d4a5e) 0%, #3d5a6e 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 12px;
}
.sso-change-btn-styled:hover {
    background: linear-gradient(135deg, #1a3a4c 0%, #2d4a5e 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Email register/login expandable sections */
.email-register-section,
.email-login-section {
    margin-top: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Create account button */
.btn-create-account {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary, #2d4a5e) 0%, #3d5a6e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.2s;
}
.btn-create-account:hover {
    background: linear-gradient(135deg, #1a3a4c 0%, #2d4a5e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Auth switch link styling */
.auth-switch-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}
.auth-switch-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.auth-switch-link a:hover {
    text-decoration: underline;
}

/* SSO email button */
.sso-btn-small.sso-email {
    background: var(--primary, #2d4a5e) !important;
    color: white !important;
    border-color: var(--primary, #2d4a5e) !important;
}
.sso-btn-small.sso-email:hover {
    background: #1a3a4c !important;
}

/* Modern Portal Page Styles */
.portal-page-modern {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.portal-header-modern {
    background: linear-gradient(135deg, var(--primary) 0%, #4a3d4d 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}
.portal-header-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.portal-email {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 20px;
}
.portal-header-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.logo {
    height: 40px;
    width: auto;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50px;
    font-size: 14px;
}
.btn-portal-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-portal-modern:hover {
    background: rgba(255,255,255,0.25);
}
.btn-portal-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-portal-logout:hover {
    background: rgba(255,255,255,0.1);
}
.portal-content-modern {
    padding: 24px 16px;
    max-width: 600px;
    margin: 0 auto;
}
.no-bookings-card {
    text-align: center;
    padding: 60px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.no-bookings-card svg {
    margin-bottom: 20px;
    opacity: 0.6;
}
.no-bookings-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}
.no-bookings-card p {
    color: var(--text-light);
    margin-bottom: 24px;
}
.btn-book-now {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Modern Booking Card */
.booking-card-modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 24px;
}
.booking-card-hero {
    position: relative;
    padding: 32px 24px;
    color: white;
}
.booking-hero-overlay {
    position: relative;
    z-index: 1;
}
.booking-hero-content {
    text-align: center;
}
.booking-status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.booking-status-badge.status-paid {
    background: rgba(46, 125, 50, 0.9);
    color: white;
}
.booking-status-badge.status-new,
.booking-status-badge.status-pending {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}
.booking-status-badge.status-confirmed {
    background: rgba(33, 150, 243, 0.9);
    color: white;
}
.booking-status-badge.status-cancelled {
    background: rgba(211, 47, 47, 0.9);
    color: white;
}
.booking-status-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.booking-status-badges .booking-status-badge {
    margin-bottom: 0;
}
.booking-house-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}
.booking-ref {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
    font-family: monospace;
    letter-spacing: 1px;
}
.booking-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.85;
}
.booking-card-body {
    padding: 24px;
}
.booking-dates-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.date-block {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.date-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.date-info {
    display: flex;
    flex-direction: column;
}
.date-info .date-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.date-info .date-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.date-info .date-time {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}
.date-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
}
.nights-badge {
    background: var(--secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.booking-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.detail-section {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
}
.detail-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.detail-item .check {
    color: #2e7d32;
    font-weight: bold;
}
.detail-item.muted {
    color: var(--text-light);
    font-style: italic;
}
.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
}
.price-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text);
}
.price-line span:first-child {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}
.price-line span:last-child {
    min-width: 110px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}
.price-line.discount {
    color: #2e7d32;
}
.price-line.discount span:last-child {
    color: #2e7d32;
}
.price-line.total {
    padding-top: 10px;
    margin-top: 6px;
    border-top: 2px solid var(--primary);
    font-weight: 700;
    font-size: 15px;
}
.booking-footer {
display: flex;
flex-direction: column;
gap: 12px;
}
.dep.mobile-drawer-header {
display: flex;
align-items: center;
gap: 12px;
padding: 6px 4px 6px;
border-bottom: 1px solid rgba(0,0,0,0.04);
padding-bottom: 12px;
margin-bottom: 4px;
}
.mobile-brand-icon {
width: 46px;
height: 46px;
border-radius: 50%;
background: linear-gradient(135deg, #6b5b6e 0%, #8ea7d9 100%);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.mobile-brand-icon svg { width: 22px; height: 22px; }
.mobile-brand-text {
display: flex;
flex-direction: column;
gap: 2px;
}
.mobile-brand-title { font-weight: 700; font-size: 17px; color: var(--text); letter-spacing: -0.1px; }
.mobile-brand-subtitle { font-size: 12px; color: #8a94a6; text-transform: uppercase; letter-spacing: 1.1px; }
.deposit-amount {
font-size: 16px;
font-weight: 700;
color: #5d4500;
}
.deposit-banner {
display: flex;
align-items: center;
gap: 12px;
padding: 16px;
background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
border-radius: 12px;
border: 1px solid #ffe082;
}
.deposit-icon {
width: 40px;
height: 40px;
background: #ffc107;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.deposit-text {
flex: 1;
display: flex;
flex-direction: column;
}
.deposit-label {
font-size: 11px;
color: #856404;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.deposit-note {
    font-size: 12px;
    color: #856404;
}
.service-contact-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3f9ff 100%);
    border-radius: 12px;
    border: 1px solid #90caf9;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: #2196f3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-label {
    font-size: 11px;
    color: #1565c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-name {
    font-size: 14px;
    font-weight: 600;
    color: #0d47a1;
}
.contact-phone {
    background: #2196f3;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}
.contact-phone:hover {
    background: #1976d2;
}
.portal-footer-modern {
    padding: 32px 16px;
    max-width: 600px;
    margin: 0 auto;
}
.review-cta {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.review-cta h3 {
    color: var(--primary);
    margin-bottom: 8px;
}
.review-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}
.trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #00b67a;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.trustpilot-link .stars {
    color: #ffd700;
}
.trustpilot-link:hover {
    background: #00a06a;
}

/* Responsive */
@media (max-width: 500px) {
    .booking-dates-modern {
        flex-direction: column;
        gap: 16px;
    }
    .date-separator {
        width: 100%;
        flex-direction: row;
    }
    .date-separator::before,
    .date-separator::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }
    .nights-badge {
        margin: 0 12px;
    }
    .booking-details-grid {
        grid-template-columns: 1fr;
    }
    .portal-header-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Profile Modal */
.profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}
.profile-modal.show {
    display: flex;
}
.profile-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
}
.profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.profile-modal-header h2 {
    color: var(--primary);
}
.profile-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}
.profile-form .form-group {
    margin-bottom: 16px;
}
.profile-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}
.profile-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}
.profile-form .form-row {
    display: flex;
    gap: 12px;
}
.profile-form .form-row .form-group {
    flex: 1;
}
.btn-save-profile {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
}
.btn-save-profile:hover {
    opacity: 0.9;
}

/* Responsive booking card */
@media (max-width: 768px) {
    .booking-card-enhanced {
        flex-direction: column;
    }
    .booking-card-left {
        flex: none;
    }
    .booking-dates {
        flex-direction: column;
        gap: 12px;
    }
}

/* Cancel booking button */
.btn-cancel-booking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn-cancel-booking:hover {
    background: #c82333;
}
.btn-cancel-booking:active {
    background: #bd2130;
    transform: scale(0.98);
}
.btn-cancel-booking:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}
.btn-cancel-booking svg,
.btn-cancel-booking span {
    pointer-events: none;
}

/* Consumption horizontal layout styles */
.detail-section.consumption-section {
    grid-column: 1 / -1;
    border-top: 2px solid #dc3545;
    padding-top: 16px;
    margin-top: 8px;
}
.consumption-horizontal {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}
.consumption-card {
    flex: 1;
    min-width: 0;
    padding: 16px 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.consumption-card .consumption-icon {
    font-size: 20px;
    margin-bottom: 4px;
}
.consumption-card .consumption-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.consumption-card .consumption-reading {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 4px;
}
.consumption-card .consumption-usage {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.consumption-card .consumption-cost {
    font-size: 15px;
    font-weight: 700;
    color: #2e7d32;
}
.consumption-total-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
}
.consumption-total-bar .total-amount {
    font-size: 17px;
    font-weight: 700;
    color: #2e7d32;
}
@media (max-width: 480px) {
    .consumption-horizontal {
        flex-wrap: wrap;
    }
    .consumption-card {
        min-width: calc(50% - 8px);
        flex: 1 1 calc(50% - 8px);
    }
}

/* Legacy consumption styles (kept for compatibility) */
.consumption-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.consumption-item {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}
.consumption-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
}
.consumption-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.consumption-usage {
    color: #6c757d;
}
.consumption-cost {
    font-weight: 600;
    color: #212529;
}
.consumption-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 8px;
    font-weight: 600;
    color: #2e7d32;
    margin-top: 4px;
}

/* Crisp Chat - align with lavpris popup near bottom */
.crisp-client,
.crisp-client *,
#crisp-chatbox,
[class*="crisp"] {
    --crisp-position-bottom: 8px;
}
.crisp-client[data-visible="true"] > div:last-child,
.crisp-client > div:last-child {
    bottom: 8px !important;
}
@media (max-width: 600px) {
    .crisp-client,
    .crisp-client *,
    #crisp-chatbox,
    [class*="crisp"] {
        --crisp-position-bottom: 20px;
    }
    .crisp-client[data-visible="true"] > div:last-child,
    .crisp-client > div:last-child {
        bottom: 20px !important;
    }
}
