/* Business Map & Street View - Front End */

.bmsv-container {
    max-width: 100%;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Tabs */
.bmsv-tabs {
    display: flex;
    gap: 0;
    border-bottom: none;
}

.bmsv-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: #e9ecef;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bmsv-tab:first-child {
    border-radius: 8px 0 0 0;
}

.bmsv-tab:last-child {
    border-radius: 0 8px 0 0;
}

.bmsv-tab:hover {
    background: #dee2e6;
    color: #333;
}

.bmsv-tab.bmsv-tab-active {
    background: #2c3e50;
    color: #fff;
}

/* Map Wrapper */
.bmsv-map-wrapper {
    position: relative;
    line-height: 0;
}

.bmsv-iframe {
    width: 100%;
    display: block;
}

/* Business Info Section */
.bmsv-info {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 24px 30px;
    border-radius: 0 0 8px 8px;
}

.bmsv-business-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #fff;
}

.bmsv-info p {
    margin: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdc3c7;
}

.bmsv-info .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #3498db;
}

.bmsv-info a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bmsv-info a:hover {
    color: #5dade2;
    text-decoration: underline;
}

/* Hours */
.bmsv-hours {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: #bdc3c7;
}

.bmsv-hours .dashicons {
    margin-top: 2px;
}

.bmsv-hours-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bmsv-hour-line {
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .bmsv-tab {
        padding: 10px 14px;
        font-size: 12px;
    }

    .bmsv-info {
        padding: 18px 20px;
    }

    .bmsv-business-name {
        font-size: 18px;
    }
}
