/* ================================================================
   REVIEW PAGE — Individual restaurant review
   ================================================================ */

/* Hero Slideshow */
.review-hero {
    position: relative;
    height: 320px;
    margin-top: 64px;
    overflow: hidden;
}

.review-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.review-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    background-size: cover;
    background-position: center;
}

.review-slide.active {
    opacity: 1;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.review-slideshow {
    cursor: pointer;
}

.review-slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.slide-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: white;
    transform: scale(1.1);
}

.slide-counter {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Review Content Layout */
.review-content {
    padding: 48px 0 80px;
}

.review-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
}

/* Breadcrumb */
.review-breadcrumb {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 12px;
}

.review-breadcrumb a {
    color: var(--green);
    text-decoration: none;
}

.review-breadcrumb a:hover {
    text-decoration: underline;
}

/* Title & Location */
.review-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.review-location {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 4px;
}

.review-updated {
    font-size: 0.82rem;
    color: var(--grey);
    margin-bottom: 24px;
}

.review-disclaimer {
    font-size: 0.88rem;
    color: var(--grey);
    font-style: italic;
    margin-bottom: 28px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid var(--green);
}

/* Rating Tags (reuse from restaurants.css) */
.review-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.review-ratings .rating-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--off-white);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
}

.review-ratings .rating-label {
    color: var(--grey);
    font-weight: 500;
}

.review-ratings .rating-value {
    font-weight: 600;
    color: var(--dark);
}

/* TL;DR / Kurz & knapp at top */
.review-tldr {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
}

.review-tldr h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.review-tldr p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Review Body */
.review-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
}

.review-body p {
    margin-bottom: 20px;
}

.review-body h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--dark);
}

/* Mein Tipp — Ribbon Banner */
.tipp-box {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--green);
    margin: 36px 0;
    overflow: hidden;
}

.tipp-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.3;
    border-radius: 4px;
    margin-bottom: 8px;
}

.tipp-dish {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.tipp-comment {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Seal */
.seal-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: 8px;
    margin: 32px 0;
}

.seal-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.seal-inline-text {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.seal-sub {
    font-size: 0.72rem;
    color: var(--grey);
}

/* Sidebar */
.review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-box, .map-box, .link-box {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.info-box h3, .map-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-light);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.78rem;
    color: var(--grey);
    font-weight: 500;
    margin-bottom: 2px;
}

.info-value {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
}

/* Map */
.map-consent {
    background: var(--off-white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.map-consent p {
    font-size: 0.82rem;
    color: var(--grey);
    margin-bottom: 12px;
    line-height: 1.5;
}

.map-load-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.map-load-btn:hover {
    background: #245a3a;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
}

/* External Link */
.external-link {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.external-link:hover {
    background: #245a3a;
    transform: translateY(-2px);
}

.link-box {
    padding: 0;
    background: none;
    box-shadow: none;
}

/* Back Link */
.review-back {
    padding: 0 0 60px;
}

.back-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .review-hero {
        height: 300px;
    }

    .review-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .review-title {
        font-size: 2rem;
    }
}
