.epp-gm-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.epp-gm-frame {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Scroll-zoom overlay */
.epp-gm-map-container { position: relative; }
.epp-gm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity .25s;
}
.epp-gm-overlay.is-active { opacity: 0; pointer-events: none; }
.epp-gm-overlay-text {
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--epp-radius-sm, 6px);
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
}

/* Info panel */
.epp-gm-info-panel {
    padding: 20px 24px;
    background: var(--epp-card-bg, #fff);
    border-top: 1px solid var(--epp-card-border, #e5e7eb);
    line-height: 0;
}
.epp-gm-info-panel > * { line-height: 1.5; }
.epp-gm-info-title { margin: 0 0 10px; font-size: 18px; font-weight: 700; color: var(--epp-gray-900, #111827); }
.epp-gm-info-address,
.epp-gm-info-phone,
.epp-gm-info-hours {
    margin: 0 0 6px;
    font-size: 14px;
    color: var(--epp-gray-600, #4b5563);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.epp-gm-info-address i,
.epp-gm-info-phone i,
.epp-gm-info-hours i { flex-shrink: 0; margin-top: 3px; color: var(--epp-primary, #7c3aed); }
.epp-gm-info-phone a { color: inherit; text-decoration: none; }
.epp-gm-info-phone a:hover { color: var(--epp-primary, #7c3aed); }

/* Side layout */
.epp-gm-wrap--right,
.epp-gm-wrap--left {
    display: flex;
    align-items: stretch;
    overflow: hidden;
}
.epp-gm-wrap--right .epp-gm-map-container,
.epp-gm-wrap--left .epp-gm-map-container { flex: 1; }
.epp-gm-wrap--right .epp-gm-info-panel { flex: 0 0 260px; border-top: none; border-left: 1px solid var(--epp-card-border, #e5e7eb); }
.epp-gm-wrap--left .epp-gm-info-panel  { flex: 0 0 260px; border-top: none; border-right: 1px solid var(--epp-card-border, #e5e7eb); order: -1; }
.epp-gm-wrap--right .epp-gm-frame,
.epp-gm-wrap--left .epp-gm-frame { height: 100%; min-height: 300px; }
