.oase-hero {
    background: radial-gradient(circle at top left, #f7cad0, #e07a9e);
    padding: 60px 0;
    color: #5c1a34;
    text-align: center;
}
.oase-hero h1 { font-size: 2.6rem; }
.oase-subtitle { font-size: 1.1rem; }

.oase-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 40px 20px;
}

.oase-roses-heading { margin-top: 34px; }
.oase-roses-hint { color: #7a4a5a; margin-top: -8px; }

/* Rosenbeet-Bildkarte mit klickbaren Punkten */
.rose-map-wrapper {
    margin-top: 20px;
    background: #fff;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.rose-map-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.rose-hotspot { cursor: pointer; }

.rose-hotspot-circle {
    fill: rgba(255, 255, 255, 0.001);
    stroke: rgba(255, 209, 102, 0.9);
    stroke-width: 3;
    stroke-dasharray: 6 4;
    transition: fill .15s ease, stroke .15s ease, r .15s ease;
}

.rose-hotspot:hover .rose-hotspot-circle,
.rose-hotspot:focus .rose-hotspot-circle {
    fill: rgba(224, 122, 158, 0.35);
    stroke: #e07a9e;
    r: 26;
}

/* Rosen-Kachel-Raster (Fallback) */
.rose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.rose-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #fff0f3;
    border: 2px solid #e07a9e;
    border-radius: 16px;
    padding: 14px 10px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform .15s ease, background .15s ease;
}

.rose-marker:hover {
    background: #ffd6e0;
    transform: translateY(-3px);
}

.rose-marker-nr {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e07a9e;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rose-marker-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5c1a34;
    text-align: center;
}

/* Popup / Modal */
.rose-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 10, 20, 0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rose-popup.open {
    display: flex;
}

.rose-popup-inner {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    max-width: 460px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.rose-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
}
.rose-popup-close:hover { color: #333; }

.rose-popup h3 {
    margin-top: 0;
    color: #5c1a34;
    font-size: 1.4rem;
}

.rose-popup-image {
    margin: 10px 0 16px;
    border-radius: 14px;
    overflow: hidden;
}
.rose-popup-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.rose-facts {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    margin: 16px 0;
    font-size: 0.95rem;
}
.rose-facts dt { font-weight: 700; color: #7a4a5a; }
.rose-facts dd { margin: 0; }

.rose-scale {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.rose-scale-label {
    width: 150px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7a4a5a;
}
.rose-rating-icon {
    opacity: 0.25;
    filter: grayscale(1);
    margin-right: 2px;
}
.rose-rating-icon.filled {
    opacity: 1;
    filter: none;
}

.rose-description {
    margin-top: 16px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 780px) {
    .oase-layout { grid-template-columns: 1fr; }
}
