.map-module {
    width: 100%;
    height: 600px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.google-map {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Bronze accent on markers and controls */
.google-map img[src*="spotlight-poi"] {
    filter: hue-rotate(25deg) saturate(150%);
}

/* Info-Plakette über der Karte */
.map-module {
    padding: 0;
    background: #fff;
}

.google-map {
    width: 100%;
    height: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .google-map {
        height: 400px;
    }
}

.info-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.business-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge.open {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.status-badge.open i {
    color: #28a745;
    animation: pulse 2s infinite;
}

.status-badge.closed {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.status-badge.closed i {
    color: #dc3545;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.info-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item > i {
    font-size: 1.2rem;
    color: #cd7f32;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.info-text span {
    font-family: 'Open Sans', 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #b4b4b4;
    line-height: 1.4;
}

.route-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background-color: #cd7f32;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.route-button i {
    font-size: 1rem;
}

.route-button:hover {
    background-color: #e89a4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 127, 50, 0.4);
}

@media (max-width: 768px) {
    .map-module {
        height: 450px;
    }
    
    .map-info-card {
        top: 10px;
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .info-card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .info-card-body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .map-module {
        height: 350px;
    }
    
    .business-name {
        font-size: 1.1rem;
    }
    
    .status-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .info-item > i {
        font-size: 1rem;
    }
    
    .route-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
}
