/* ===================== Banner Gallery ===================== */
.bp-banner-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.bp-banner-gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.bp-banner-gallery__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.bp-banner-video-wrap {
    margin: 16px 0;
    max-width: 640px;
}

.bp-banner-video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.bp-banner-video-link {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

/* ===================== Often Bought With ===================== */
.bp-often-bought-with {
    margin: 32px 0;
}

.bp-often-bought-with h2 {
    margin-bottom: 16px;
}

.bp-obw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.bp-obw-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    transition: box-shadow 0.15s ease;
}

.bp-obw-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.bp-obw-card img {
    border-radius: 6px;
    margin-bottom: 8px;
}

.bp-obw-name {
    font-weight: 600;
    margin-bottom: 4px;
}

/* ===================== Buy 2 Get 1 Free ===================== */
.bp-buy2get1-badge {
    display: inline-block;
    background: #fff3cd;
    color: #8a6300;
    border: 1px solid #ffe69c;
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: 600;
    margin: 12px 0;
}
