/* ════════════════════════════════════════════════════════════════
   BDS Card Redesign — Tích hợp badge vào title
   - Bỏ overlay badge (.item_bds_section)
   - Title chữ thường, chữ đầu in hoa
   - Badge inline trước title text
   File này load SAU bds.css để override.
   ════════════════════════════════════════════════════════════════ */

/* ─── ẨN BADGE OVERLAY CŨ ─────────────────────────────────────── */
.item_bds .item_bds_section,
.item_bds .item_bds_section.tim-mua,
.item_bds .item_bds_section.tim-ban,
.item_bds .item_bds_section.tim-thue {
    display: none !important;
}

/* ─── TITLE: BỎ UPPERCASE, GIỮ CAPITALIZE ─────────────────────── */
.item_bds .bds_title a,
.product-map-title a {
    text-transform: none !important;
    font-size: 14px;
    color: #2C2C2C;
    font-weight: 600;
    line-height: 22px;
    display: block;
}

/* Chữ cái đầu của title (sau badge) in hoa */
.item_bds .bds_title .bds-title-text {
    text-transform: lowercase;
}
.item_bds .bds_title .bds-title-text::first-letter {
    text-transform: uppercase;
}

.item_bds .bds_title a:hover,
.product-map-title a:hover {
    color: #d35400;
}

/* ─── BADGE INLINE ────────────────────────────────────────────── */
.item_bds .bds-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-right: 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 0.3px;
    vertical-align: middle;
    color: #fff;
    white-space: nowrap;
}

.item_bds .bds-badge-mua {
    background: #e67e22; /* cam */
}
.item_bds .bds-badge-ban {
    background: #2980b9; /* xanh dương */
}
.item_bds .bds-badge-thue {
    background: #27ae60; /* xanh lá */
}

/* ─── HOVER: GIỮ MÀU BADGE ──────────────────────────────────── */
.item_bds .bds_title a:hover .bds-badge {
    opacity: 0.9;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .item_bds .bds-badge {
        font-size: 10px;
        padding: 1px 6px;
    }
    .item_bds .bds_title a {
        font-size: 13px;
        line-height: 20px;
    }
}

/* ─── FIX ẢNH KHÔNG HIỂN THỊ — HEIGHT CỐ ĐỊNH ────────────────── */
.item_bds .avatar .p_avatar {
    position: relative;
    overflow: hidden;
    background: #f5f5f5; /* placeholder grey nếu ảnh chưa load */
}
.item_bds .avatar .p_avatar img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}