/* ============================================================
   V2: THE CONVERSION MACHINE
   Inspired by Booking.com meets Goop
   Philosophy: Maximum clicks. Transparent pricing. Volume.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap');

:root {
    --bg: #FFFFFF;
    --bg-light: #F4F7F4;
    --bg-card: #FFFFFF;
    --text: #111827;
    --text-muted: #6B7280;
    --green: #1A5C38;
    --green-mid: #2D7A52;
    --green-light: #E8F5EE;
    --green-accent: #4CAF50;
    --border: #E5E7EB;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }

.wrapper { max-width: 1280px; margin: 0 auto; padding: 0 5%; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--green);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.lang-toggle {
    background: var(--green-light);
    border: 1px solid var(--green);
    color: var(--green);
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}
.lang-toggle:hover { background: var(--green); color: white; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
    background: var(--green);
    padding: 0.6rem 5%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-bar span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.48) 52%, rgba(0,0,0,0.15) 100%);
    display: flex;
    flex-direction: column;
    padding: 140px 5% 0;
}

.hero-content {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 4rem;
}

.hero-left {
    flex: 0 0 460px;
    max-width: 460px;
    animation: slideInLeft 0.9s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.05;
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 400px;
}

.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--green);
    color: white;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,92,56,0.4);
}

/* Stats bar pinned to bottom of hero */
.hero-stats-bar {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
}

.hero-stats-bar span {
    flex: 1;
    padding: 1.3rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}
.hero-stats-bar span:last-child { border-right: none; }
.hero-stats-bar strong {
    display: block;
    color: var(--green-accent);
    font-size: 1.9rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}

/* ── Spain Map SVG ───────────────────────────────────────── */
.spain-map {
    width: 100%;
    max-width: 480px;
    height: auto;
    overflow: visible;
    animation: fadeInMap 1.2s ease 0.4s both;
    margin-right: auto;
    margin-left: -2rem;
}

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

.map-land {
    fill: rgba(255,255,255,0.07);
    stroke: rgba(255,255,255,0.5);
    stroke-width: 1.5;
    stroke-linejoin: round;
}

.map-island {
    fill: rgba(255,255,255,0.07);
    stroke: rgba(255,255,255,0.4);
    stroke-width: 1.2;
}

.map-island-sm {
    fill: rgba(255,255,255,0.07);
    stroke: rgba(255,255,255,0.32);
    stroke-width: 1;
}

.map-inset-box {
    fill: none;
    stroke: rgba(255,255,255,0.2);
    stroke-width: 1;
    stroke-dasharray: 3,3;
}

.map-inset-label {
    font-size: 8px;
    fill: rgba(255,255,255,0.42);
    text-anchor: middle;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dot-pulse {
    animation: map-pulse 2.5s ease-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}

@keyframes map-pulse {
    0%   { transform: scale(1); opacity: 0.65; }
    100% { transform: scale(4.5); opacity: 0; }
}

/* ── Press Bar ───────────────────────────────────────────── */
.press-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
}
.press-bar-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 5%;
    flex-wrap: wrap;
}
.press-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    flex-shrink: 0;
}
.press-logos { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.press-logos span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.press-logos span:hover { color: var(--green); }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 6rem 0; }

.section-light {
    background: var(--bg-light);
    border-radius: 32px 32px 0 0;
    margin-top: -32px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Filters (chips) ─────────────────────────────────────── */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

select {
    padding: 0.7rem 2.5rem 0.7rem 1.2rem;
    font-size: 0.85rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 240px;
}
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26,92,56,0.1);
}

/* ── Cards ───────────────────────────────────────────────── */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green);
}

.card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.5s;
}
.card:hover .card-img img { transform: scale(1.04); }

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.card-img:hover .gallery-btn { opacity: 1; }
.gallery-prev { left: 0.5rem; }
.gallery-next { right: 0.5rem; }

.gallery-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 10;
}
.gallery-dots .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    transition: background 0.2s;
}
.gallery-dots .dot.active { background: white; }

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.card-stars { color: #F59E0B; font-size: 0.85rem; }
.card-price { font-size: 0.85rem; color: var(--text-muted); }
.card-price strong {
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text);
    line-height: 1.3;
}

.card-location {
    font-size: 0.8rem;
    color: var(--green-mid);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.card-tags span {
    background: var(--green-light);
    color: var(--green);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.btn-secondary {
    text-align: center;
    background: var(--green);
    color: white;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    border: none;
}
.btn-secondary:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* ── Guides ──────────────────────────────────────────────── */
.guides-section { background: white; }
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.guide-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s;
    cursor: pointer;
    background: white;
}
.guide-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.guide-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.8rem;
}
.guide-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
}
.guide-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.guide-read {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    margin-top: 1rem;
    transition: gap 0.2s;
}
.guide-card:hover .guide-read { gap: 0.7rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--bg-light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-question {
    padding: 1.4rem 1.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
    font-family: 'Inter', sans-serif;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.8rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.8rem 1.5rem; }

/* ── Philosophy ──────────────────────────────────────────── */
.banner-filosofia {
    background-image: url('assets/spa.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 4rem 5%;
}
.glass-box {
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    max-width: 720px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}
.glass-box h2 { font-size: 2.8rem; color: var(--text); margin-bottom: 1.2rem; }
.glass-box p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; font-family: 'Inter', sans-serif; }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter-section { background: var(--green); }
.newsletter-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-text h2 { font-size: 2rem; color: white; margin-bottom: 0.6rem; }
.newsletter-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0.6rem; flex: 1; min-width: 280px; flex-wrap: wrap; }
.newsletter-form input {
    flex: 1; padding: 0.9rem 1.3rem;
    border-radius: 8px; border: none;
    background: rgba(255,255,255,0.15);
    color: white; font-size: 0.9rem;
    font-family: 'Inter', sans-serif; outline: none;
    min-width: 200px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
    padding: 0.9rem 1.8rem;
    background: white;
    color: var(--green);
    border: none; border-radius: 8px;
    font-size: 0.85rem; font-weight: 700;
    cursor: pointer; font-family: 'Inter', sans-serif;
    transition: all 0.2s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--bg-light); }
.newsletter-legal { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 0.6rem; width: 100%; }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: var(--text); padding: 4rem 0 2rem; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-cols h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--green-accent); margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-cols ul a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.footer-cols ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center; }
footer p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 0.4rem; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .hero-content { flex-direction: column; gap: 2rem; }
    .hero-left { flex: unset; max-width: 100%; width: 100%; }
    .hero-right { display: none; }
    .blur-glass { padding: 2rem; margin: 0 1rem; }
    .glass-box { padding: 2.5rem 1.5rem; }
    .newsletter-inner { flex-direction: column; gap: 2rem; }
    .footer-cols { grid-template-columns: 1fr; }
    .trust-bar { gap: 1rem; }
}

#featured-grid {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) { #featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { #featured-grid { grid-template-columns: 1fr; } }

/* ── Hotel card links ────────────────────────────────────── */
.card-img-link { display: block; }
.card-title a { color: inherit; transition: color 0.2s; }
.card-title a:hover { color: var(--green); }

/* ── Hotel detail page ───────────────────────────────────── */
.hotel-hero {
    height: 65vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.hotel-hero-overlay {
    inset: 0;
    position: absolute;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
}
.hotel-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 5% 3rem;
    width: 100%;
}
.hotel-hero-content .breadcrumb {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hotel-hero-content .breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.hotel-hero-content .breadcrumb a:hover { color: white; }
.hotel-hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hotel-hero-location {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hotel-hero-stars { color: #F59E0B; font-size: 1.1rem; margin-right: 0.5rem; }

.hotel-gallery {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 5%;
    overflow-x: auto;
    background: var(--text);
    scrollbar-width: none;
}
.hotel-gallery::-webkit-scrollbar { display: none; }
.hotel-gallery img {
    height: 80px;
    width: 120px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.hotel-gallery img:hover, .hotel-gallery img.active { opacity: 1; }

.hotel-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 900px) { .hotel-layout { grid-template-columns: 1fr; } }

.hotel-main h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.hotel-main p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.hotel-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.hotel-highlights li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.75rem 1rem;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
}
.hotel-highlights li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

.hotel-tags-section { margin-bottom: 2rem; }
.hotel-tags-section h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--text); }

.hotel-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}
.booking-widget {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-hover);
}
.booking-widget .price-display {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.booking-widget .price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}
.booking-widget .price-amount {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.booking-widget .price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}
.booking-widget .btn-book {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--green);
    color: white;
    padding: 1.1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    margin-bottom: 0.8rem;
}
.booking-widget .btn-book:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,92,56,0.4);
}
.booking-widget .booking-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.booking-widget .widget-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0;
}
.booking-widget .widget-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    align-items: center;
}
.booking-widget .widget-info-label { color: var(--text-muted); }
.booking-widget .widget-info-value { font-weight: 600; color: var(--text); }

.hotel-related { padding: 3rem 5%; background: var(--bg-light); }
.hotel-related h2 { font-size: 1.8rem; margin-bottom: 2rem; }

/* ── Category landing pages ──────────────────────────────── */
.category-hero {
    background: var(--green);
    padding: 8rem 5% 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--category-hero-bg, url('assets/hero.png')) center/cover no-repeat;
    opacity: 0.15;
}
.category-hero-content { position: relative; z-index: 1; }
.category-hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}
.category-hero h1 { font-size: 3rem; color: white; margin-bottom: 1rem; line-height: 1.1; }
.category-hero p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.category-count {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.category-intro {
    background: white;
    padding: 4rem 5%;
    max-width: 1280px;
    margin: 0 auto;
}
.category-intro h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.category-intro p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; max-width: 800px; }

/* ── Cookie Banner ───────────────────────────────────────── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 40px rgba(0,0,0,0.25);
    border-top: 2px solid var(--green);
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.1rem 5%;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cookie-text-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 240px;
}
.cookie-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}
.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
}
.cookie-accept {
    background: var(--green);
    color: white;
    border-color: var(--green);
}
.cookie-accept:hover { background: var(--green-mid); border-color: var(--green-mid); }
.cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.2);
}
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }

@media (max-width: 600px) {
    .cookie-inner { flex-direction: column; gap: 1rem; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
