.wein-hero {
    background: radial-gradient(circle at top left, #d5b8e0, #7b2d8e);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.wein-hero h1 { font-size: 2.6rem; }
.wein-subtitle { font-size: 1.1rem; color: #f3e6f7; }

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

.wein-map-heading { margin-top: 34px; color: #5c1a6b; }
.wein-map-hint { color: #6b4a75; margin-top: -8px; }

.wein-map-wrapper {
    margin-top: 16px;
    background: #fff;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

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

.wein-hotspot { cursor: pointer; }

.wein-hotspot-circle {
    fill: rgba(255, 255, 255, 0.001);
    stroke: rgba(255, 209, 102, 0.9);
    stroke-width: 5;
    stroke-dasharray: 10 6;
    transition: fill .15s ease, stroke .15s ease;
}

.wein-hotspot:hover .wein-hotspot-circle,
.wein-hotspot:focus .wein-hotspot-circle {
    fill: rgba(123, 45, 142, 0.35);
    stroke: #7b2d8e;
}

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

.wein-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);
}

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

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

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

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

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

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