/* Flowersstore — Map component (matches contact page .flr-contact__map) */

.map-section {
    background: var(--theme-surface, #fff9f2);
    padding-block: clamp(40px, 5vw, 64px);
}

.map-section__map {
    border-radius: var(--theme-radius-lg, 10px);
    overflow: hidden;
    border: 1px solid var(--theme-border, rgba(74, 58, 48, 0.1));
    box-shadow: 0 24px 60px -36px rgba(74, 58, 48, 0.4);
}

.map-section__map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: saturate(0.9);
}

@media (max-width: 480px) {
    .map-section__map iframe {
        height: 300px;
    }
}
