.business-preview-popup {
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header */
.bp-header {
    padding: 20px 20px 0;
}
.bp-header-main {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bp-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bp-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-header-info {
    flex: 1;
}
.bp-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1a1a1a;
}
.bp-designation {
    font-size: 14px;
    color: #666;
    margin: 0 0 6px;
}

/* Quick Actions */
.bp-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}
.bp-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e0e0e0;
}

/* Content Grid */
.bp-content-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.bp-left-col {
    flex: 1 1 400px;
    min-width: 0;
}
.bp-right-col {
    flex: 1 1 280px;
    min-width: 0;
}

/* Sections */
.bp-section {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 16px;
    overflow: hidden;
}
.bp-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;

}
.bp-section-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}
.bp-section-body {
    padding: 16px;
}

/* Gallery */
.bp-gallery-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
}
.bp-gallery-slider::-webkit-scrollbar {
    height: 4px;
}
.bp-gallery-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.bp-gallery-item {
    flex: 0 0 200px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
}
.bp-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* Hours */
.bp-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bp-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}
.bp-hour-row:last-child {
    border-bottom: none;
}
.bp-day-name {
    color: #555;
}
.bp-day-hours {
    color: #22c55e;
    font-weight: 500;
}
.bp-closed {
    color: #ef4444;
}

/* Social */
.bp-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.bp-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8f8f8;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    transition: all 0.2s;
}
.bp-social-link:hover {
    background: #f0f0f0;
    color: #333;
}
.bp-social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.bp-social-link svg {
    flex-shrink: 0;
}

