/* Simple Map Component Styles */
.map-wrapper {
    position: relative;
    aspect-ratio: 390 / 400;
    width: 100%;
    overflow: hidden;
}

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

#map {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 20%);
    pointer-events: none;
}

@media(min-width: 768px) {
    .map-wrapper {
        aspect-ratio: 768 / 450;
    }
}

@media(min-width: 1200px) {
    .map-wrapper {
        aspect-ratio: 1800 / 920;
    }
}

/* Info Window Styles */
.map-info-window a {
    user-select: none;
    -webkit-user-select: none;
    box-shadow: none!important;
    outline: none!important;
    background: transparent;
}

/* Google Maps Pin Styles */
.gm-style .gm-style-iw-c {
    user-select: none!important;
    padding: 20px !important;
    transform: translate3d(-12%, 8%, 0) !important;
    max-width: 280px !important;
}
.gm-style .gm-style-iw-d {
    padding: 0 20px 0 0 !important;
}

.gm-style-iw-ch {
    display: none !important;
}

.gm-style-iw-chr {
    justify-content: end !important;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
}

.gm-ui-hover-effect {
    opacity: 1 !important;
    width: 40px !important;
    height: 40px !important;
    background: no-repeat center / 12px url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L11 11" stroke="%23FB5F07" stroke-width="2" stroke-miterlimit="10"/><path d="M1 11L11 1" stroke="%23FB5F07" stroke-width="2" stroke-miterlimit="10"/></svg>') !important;
}

.gm-style .gm-style-iw-tc, .gm-ui-hover-effect span {
    display: none !important;
}