/* ── wrapper سکشن ── */
.brand-spotlight-sec {
    background: var(--charcoal);
    padding: 72px 0;
    overflow: hidden;
    position: relative;
}
.brand-spotlight-sec::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(252,199,203,.04);
    pointer-events: none;
}

/* ── گرید اصلی ── */
.bs-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── ستون چپ: اطلاعات برند ── */
.bs-story {}

/* لوگو */
.bs-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 12px 20px;
    margin-bottom: 22px;
}
.bs-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255,255,255,.08);
}
.bs-logo-fallback {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(252,199,203,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.bs-brand-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.bs-brand-sub {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
}

/* تگ تم ماه */
.bs-tag {
    display: inline-block;
    background: var(--pink);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: .04em;
}

/* تایتل و توضیحات */
.bs-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.bs-desc {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 26px;
}

/* ویژگی‌ها */
.bs-feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.bs-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.75);
    font-weight: 300;
}
.bs-feat-dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    flex-shrink: 0;
}

/* دکمه‌ها */
.bs-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.bs-btn-primary {
    background: var(--pink);
    border: none;
    color: var(--charcoal) !important;
    padding: 13px 26px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bs-btn-primary:hover {
    background: var(--pkd);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(252,199,203,.3);
}
.bs-btn-ghost {
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.65) !important;
    border: 1px solid rgba(255,255,255,.12);
    padding: 13px 22px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bs-btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.25);
    color: #fff;
}

/* ── ستون راست: محصولات ── */
.bs-products {
    padding-top: 8px;
}
.bs-products-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* لوپ المنتور wrapper */
.bs-loop-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

/* لینک همه محصولات */
.bs-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--pink) !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px;
    border: 1px dashed rgba(252,199,203,.3);
    border-radius: 16px;
    transition: all .2s;
    margin-top: 8px;
}
.bs-all-link:hover {
    border-color: var(--pink);
    background: rgba(252,199,203,.05);
}

.bs-product-item {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    transition: all .2s;
    align-items: flex-end;
    margin-bottom: 10px;
}

.bs-product-item:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(252,199,203,.4);
}

/* ── ریسپانسیو ── */
@media (max-width: 1024px) {
    .bs-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 640px) {
    .brand-spotlight-sec {
        padding: 48px 0;
    }
    .bs-inner {
        padding: 0 20px;
    }
    .bs-title {
        font-size: 26px;
    }
    .bs-actions {
        flex-direction: column;
    }
    .bs-btn-primary,
    .bs-btn-ghost {
        justify-content: center;
    }
}
