/* Extracted from cage-quests-room-detail.html */
/* 1. HERO — Fullscreen Room Image
   ══════════════════════════════════════════════════ */
.cq-room-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--header-height) + 2rem) 3rem 4rem;
    overflow: hidden;
}

.cq-room-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1015;
}

.cq-room-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.1) 30%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(135deg,
            rgba(123, 76, 219, 0.08) 0%,
            transparent 60%);
}

.cq-room-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cq-room-hero-breadcrumb {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.cq-room-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.cq-room-hero-breadcrumb a:hover {
    color: var(--gold-light);
}

.cq-room-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0.5rem;
}

.cq-room-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}

.cq-room-hero-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.cq-room-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 100;
    letter-spacing: clamp(0.3rem, 1.5vw, 1.2rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* SEO-Suffix im H1 — visuell kleiner aber semantisch im H1 */
.cq-room-h1-suffix {
    display: block;
    font-size: clamp(0.7rem, 1.5vw, 1.05rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.55);
    text-shadow: none;
    margin-top: 0.5rem;
}

.cq-room-hero-teaser {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 550px;
}

/* Quick Facts inline in hero */
.cq-room-hero-facts {
    display: flex;
    gap: 0;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: fit-content;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cq-room-hero-fact {
    padding: 0.8rem 1.3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.cq-room-hero-fact:last-child {
    border-right: none;
}

.cq-room-hero-fact-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--gold-light);
}

.cq-room-hero-fact-label {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
    .cq-room-hero {
        min-height: 65vh;
        padding: calc(var(--header-height-mobile) + 1rem) 1.5rem 3rem;
    }

    .cq-room-hero-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .cq-room-hero-fact {
        flex: unset;
        min-width: 0;
        padding: 0.9rem 0.8rem;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .cq-room-hero-fact:nth-child(even) { border-right: none; }
    .cq-room-hero-fact:last-child { border-right: none; }
    .cq-room-hero-fact:nth-last-child(-n+2) { border-bottom: none; }
}

/* ══════════════════════════════════════════════════
   LAYOUT: Content + Sticky Sidebar
   ══════════════════════════════════════════════════ */
.cq-room-layout {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: relative;
}

.cq-room-main {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

/* Sticky Sidebar */
.cq-room-sidebar {
    position: relative;
}

.cq-room-sidebar-inner {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.cq-room-sidebar-header {
    padding: 1.8rem;
    border-bottom: 1px solid var(--glass-border);
}

.cq-room-sidebar-price {
    font-size: 1.8rem;
    font-weight: 100;
    color: var(--gold-light);
    margin-bottom: 0.2rem;
}

.cq-room-sidebar-price-hint {
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
}

.cq-room-sidebar-facts {
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cq-room-sidebar-fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
}

.cq-room-sidebar-fact-label {
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}

.cq-room-sidebar-fact-value {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* Difficulty bars in sidebar */
.cq-room-sidebar-diff {
    display: flex;
    gap: 4px;
    align-items: center;
}

.cq-room-sidebar-diff-bar {
    width: 18px;
    height: 3px;
}

.cq-room-sidebar-diff-bar.filled {
    background: var(--gold);
}

.cq-room-sidebar-diff-bar.empty {
    background: rgba(255, 255, 255, 0.12);
}

.cq-room-sidebar-cta {
    padding: 1.5rem 1.8rem;
    border-top: 1px solid var(--glass-border);
}

.cq-room-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 2px solid var(--gold);
    color: var(--black);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 5px 25px rgba(178, 148, 116, 0.3);
}

.cq-room-sidebar-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cq-room-sidebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 148, 116, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.cq-room-sidebar-btn:hover::before {
    transform: translateX(100%);
}

.cq-room-sidebar-btn span {
    position: relative;
    z-index: 2;
}

.cq-room-sidebar-hint {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
}

.cq-room-sidebar-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.6rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ok);
    background: rgba(24, 194, 126, 0.05);
    border-top: 1px solid rgba(24, 194, 126, 0.15);
}

.cq-room-sidebar-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ok);
    animation: cqPulse 2s infinite;
}

@keyframes cqPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 194, 126, 0.6);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(24, 194, 126, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(24, 194, 126, 0);
    }
}

@media (max-width: 1024px) {
    .cq-room-layout {
        grid-template-columns: minmax(0, 1fr);
        padding: 3rem 1.5rem;
        gap: 2rem;
    }
}

/* ══════════════════════════════════════════════════
   2. STORY SECTION
   ══════════════════════════════════════════════════ */
.cq-room-section {
    margin-bottom: 4rem;
}

.cq-room-section-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.8rem;
    text-align: left;
}

.cq-room-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 100;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 1.5rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 480px) {
    .cq-room-section-title {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }
}

.cq-room-story {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
}

.cq-room-story p {
    margin-bottom: 1.2rem;
}

.cq-room-story p:last-child {
    margin-bottom: 0;
}

.cq-room-story strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.cq-room-story em {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 300;
}

/* Atmospheric quote */
.cq-room-quote,
.cq-room-story blockquote {
    margin: 2rem 0;
    padding: 1.8rem 2rem;
    border-left: 2px solid rgba(178, 148, 116, 0.3);
    background: var(--glass);
    font-size: 1rem;
    font-weight: 200;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.cq-room-story blockquote p {
    margin-bottom: 0;
}

/* Story-Quote — atmosphärisches Zitat in der Mitte des Story-Texts */
.cq-room-story-quote {
    position: relative;
    margin: 2.5rem 0;
    padding: 1.8rem 2.4rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 200;
    font-style: italic;
    line-height: 1.6;
    color: var(--gold-light);
    border-top: 1px solid rgba(178, 148, 116, 0.2);
    border-bottom: 1px solid rgba(178, 148, 116, 0.2);
    letter-spacing: 0.01em;
}
.cq-room-story-quote-mark {
    color: var(--gold);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    opacity: 0.7;
    margin: 0 0.3rem;
    vertical-align: -0.1em;
}
@media (max-width: 768px) {
    .cq-room-story-quote {
        margin: 2rem 0;
        padding: 1.4rem 1rem;
        font-size: 1rem;
    }
}

/* ══════════════════════════════════════════════════
   3. GALLERY
   ══════════════════════════════════════════════════ */
/* Produkt-Galerie: großes Bild + Thumbnail-Auswahl (Klick tauscht das Großbild) */
.cq-room-gallery { display: block; }

.cq-room-gallery-main {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 0.8rem;
    background: var(--glass, rgba(255,255,255,0.02));
}
.cq-room-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: cqGalFade 0.35s var(--ease);
}
@keyframes cqGalFade { from { opacity: 0.25; } to { opacity: 1; } }

.cq-room-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.cq-room-gallery-thumb {
    padding: 0;
    margin: 0;
    background: none;
    border: 1px solid var(--glass-border);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.cq-room-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.cq-room-gallery-thumb:hover { border-color: rgba(178, 148, 116, 0.4); }
.cq-room-gallery-thumb:hover img { transform: scale(1.06); }
.cq-room-gallery-thumb.is-active {
    border-color: var(--gold, #B29474);
    box-shadow: 0 0 0 1px var(--gold, #B29474);
}

@media (max-width: 768px) {
    .cq-room-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   4. DETAILS — What to Expect
   ══════════════════════════════════════════════════ */
.cq-room-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cq-room-detail-card {
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease);
}

.cq-room-detail-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.cq-room-detail-icon {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.cq-room-detail-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.cq-room-detail-text {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.cq-room-detail-desc {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .cq-room-details-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════
   5. BOOKING WIDGET (Bookly placeholder)
   ══════════════════════════════════════════════════ */
.cq-room-booking {
    padding: 3rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.cq-room-booking-placeholder {
    padding: 3rem 2rem;
    border: 1px dashed rgba(178, 148, 116, 0.3);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.cq-room-booking-placeholder code {
    display: block;
    margin-top: 0.5rem;
    color: var(--gold);
    font-size: 0.7rem;
    opacity: 0.6;
}

/* ══════════════════════════════════════════════════
   6. SIMILAR ROOMS
   ══════════════════════════════════════════════════ */
.cq-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.cq-similar-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s var(--ease);
    display: block;
}

.cq-similar-card:hover {
    border-color: rgba(178, 148, 116, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cq-similar-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.cq-similar-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.cq-similar-card:hover .cq-similar-card-img img {
    transform: scale(1.05);
}

.cq-similar-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.cq-similar-card-duration {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 3px 8px;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cq-similar-card-body {
    padding: 1.2rem;
}

.cq-similar-card-genre {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.cq-similar-card-name {
    font-size: 0.95rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.cq-similar-card:hover .cq-similar-card-name {
    color: var(--gold-light);
}

.cq-similar-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .cq-similar-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════
   SECTION HELPERS
   ══════════════════════════════════════════════════ */
.cq-section-divider {
    width: 40px;
    height: 1px;
    background: rgba(178, 148, 116, 0.3);
    margin: 4rem 0;
}

/* ══════════════════════════════════════════════════
   COMBINED SIDEBAR (Facts + Booking Widget)
   ══════════════════════════════════════════════════ */
.cq-room-sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cq-sidebar-facts {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-bottom: none;
}

.cq-sidebar-facts-header {
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid var(--glass-border);
}

.cq-sidebar-facts-price {
    font-size: 1.7rem;
    font-weight: 100;
    color: var(--gold-light);
    margin-bottom: 0.1rem;
}

.cq-sidebar-facts-price small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65); /* a11y: vorher 0.35 = 3.09 ratio (AA-fail) */
    font-weight: 300;
}

.cq-sidebar-facts-sub {
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65); /* a11y: vorher 0.3 = 2.52 ratio (AA-fail) */
    letter-spacing: 0.1em;
}

.cq-sidebar-facts-body {
    padding: 1.2rem 1.8rem;
}

.cq-sidebar-fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cq-sidebar-fact:last-child {
    border-bottom: none;
}

.cq-sidebar-fact-label {
    color: rgba(255, 255, 255, 0.65); /* a11y: vorher 0.35 = 3.09 ratio (AA-fail) */
    letter-spacing: 0.05em;
}

.cq-sidebar-fact-value {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Difficulty bars */
.cq-sidebar-diff {
    display: flex;
    gap: 4px;
    align-items: center;
}

.cq-sidebar-diff-bar {
    width: 18px;
    height: 3px;
}

.cq-sidebar-diff-bar.filled {
    background: var(--gold);
}

.cq-sidebar-diff-bar.empty {
    background: rgba(255, 255, 255, 0.08);
}

/* Schwierigkeits-Label unter den Balken — gibt direkten Kontext */
.cq-sidebar-diff-text {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--gold-light);
    font-weight: 400;
}

/* ── Divider between Facts and Widget ──────────── */
.cq-sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
    opacity: 0.25;
}

/* ── Overrides for cq-booking plugin widget ── */
.cq-book-wrapper .cq-book {
    position: relative !important;
    top: auto !important;
}

.cq-book-wrapper .cq-book-inner {
    border-top: none !important;
}

.cq-book-header {
    display: none !important;
}


/* ══════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ══════════════════════════════════════════════════ */
.cq-mobile-book {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    padding: 0.6rem 1rem;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

.cq-mobile-book-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.cq-mobile-book-info {
    flex: 1;
}

.cq-mobile-book-price {
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--gold-light);
}

.cq-mobile-book-meta {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

/* Room-Sidebar-Bar hat Info + Button nebeneinander -> Button kompakt halten.
   Höhere Spezifität, um mobile-fixes.css/homepage.css `width:100%` zu überschreiben. */
.cq-mobile-book-inner .cq-mobile-book-btn {
    flex: 0 0 auto;
    width: auto;
}

/* Auf Raum-Seiten existiert die raum-spezifische Mobile-Book-Bar (aus single-cq_room.php).
   Die globale #cq-mobile-book aus header.php würde darüber stacken -> Raum-Seite unterdrückt sie. */
body.single-cq_room #cq-mobile-book,
body:has(.cq-mobile-book-inner) #cq-mobile-book {
    display: none !important;
}

.cq-mobile-book-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 2px solid var(--gold);
    color: var(--black);
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .cq-room-sidebar-sticky {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }

    .cq-mobile-book {
        display: block;
    }
}

/* ══════════════════════════════════════════════════
   FOOTER (shared)
   ══════════════════════════════════════════════════ */

/* ── Verweis auf den Genre-Hub im Raum-Kopf ────────────────── */
.cq-room-hero-genre {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(178, 148, 116, 0.35);
    padding-bottom: 0.3rem;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.cq-room-hero-genre:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.cq-room-hero-genre-arrow {
    transition: transform 0.3s var(--ease);
}

.cq-room-hero-genre:hover .cq-room-hero-genre-arrow {
    transform: translateX(4px);
}
