/**
 * ER Showroom Map Styles
 * Version: 1.0.0
 */

/* ===== Google InfoWindow cleanup ===== */
.gm-style-iw,
.gm-style-iw-t {
    background: transparent !important;
    box-shadow: none !important;
}

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

.gm-style-iw,
.gm-style-iw-d {
    overflow: hidden !important;
    max-height: none !important;
}

/* ===== Custom Info Panel ===== */
.er-info-inner {
    min-width: 620px;
    max-width: 620px;
    width: 100%;
    border: 1px solid #ffffff;
    background: rgba(55, 101, 127, 0.92);
    padding: 36px;
    font-family: Gotham, Arial, sans-serif;
    color: #ffffff;
    box-sizing: border-box;
}

.er-info-title {
    font-family: Prata, serif;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.1;
    margin: 0;
}

.er-info-subtitle {
    font-size: 22px;
    line-height: 32px;
    margin: 12px 0 28px;
}

.er-info-divider {
    border-top: 1px solid rgba(255,255,255,0.6);
    margin-bottom: 28px;
}

.er-info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.er-info-cta-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

.er-info-cta-sub {
    font-size: 14px;
    margin-top: 6px;
}

.er-info-button {
    background: #8E6845;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 12px;
    letter-spacing: 3px;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.er-info-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 30px;
}

.er-info-address {
    max-width: 65%;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.er-info-phone {
    font-size: 18px;
    font-weight: 500;
    margin-top: 12px;
}

.er-info-hours {
    text-align: right;
}

.er-info-hours span.time {
    background: #ffffff;
    color: #092A30;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.8;
    margin-left: 8px;
}

.er-info-link {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.er-info-link:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .er-info-inner {
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    /* Títulos más pequeños en mobile */
    .er-info-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .er-info-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin: 8px 0 20px;
    }

    .er-info-divider {
        margin-bottom: 20px;
    }

    /* "COME SEE US!" más pequeño */
    .er-info-cta-title {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .er-info-cta-sub {
        font-size: 12px;
        margin-top: 4px;
    }

    .er-info-button {
        padding: 12px 16px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .er-info-top,
    .er-info-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Dirección al 100% en mobile */
    .er-info-address {
        max-width: 100%;
        width: 100%;
        font-size: 16px;
    }

    .er-info-phone {
        font-size: 16px;
        margin-top: 10px;
    }

    .er-info-hours {
        text-align: left;
        width: 100%;
    }

    .er-info-hours span.time {
        font-size: 13px;
        padding: 2px 8px;
    }
}
