/* ===========================================================
   BANNER COLOR DANH MỤC SẢN PHẨM
   Phiên bản: 2025-11 - Đã sửa lỗi nút bị rộng
   =========================================================== */

/* Wrapper chứa toàn bộ banner */
.bcdmsp-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--bcdmsp-gap, 12px);
    justify-content: flex-start;
    color: var(--bcdmsp-text-color, #fff);
    margin-top: var(--bcdmsp-margin-top, 20px);
}

/* Banner nhỏ */
.bcdmsp-item {
    flex: 1 1 280px;
    min-width: 220px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.bcdmsp-item:hover {
    transform: translateY(-3px);
}

/* ===========================================================
   SỬA LỖI FLEX - Overlay hiển thị nội dung bên trong
   =========================================================== */
.bcdmsp-overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    display: block; /* ✅ sửa từ flex -> block để nút không bị dãn full width */
    color: inherit;
    text-align: left; /* căn trái tự nhiên như hình bạn gửi */
}

/* Các dòng chữ */
.bcdmsp-line-top {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: capitalize;
    margin-bottom: 6px;
}
.bcdmsp-line-bottom {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

/* ===========================================================
   NÚT "XEM NGAY" - chỉnh gọn đẹp
   =========================================================== */
.bcdmsp-btn {
    display: inline-block;
    padding: 8px 20px;                    /* ✨ giảm padding cho gọn */
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    color: var(--bcdmsp-text-color, #fff);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}
.bcdmsp-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.8);
}

/* ===========================================================
   ẢNH SẢN PHẨM GÓC PHẢI
   =========================================================== */
.bcdmsp-thumb {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: auto;
    pointer-events: none;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.bcdmsp-item:hover .bcdmsp-thumb {
    transform: scale(1.05);
    opacity: 1;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
    .bcdmsp-item {
        flex-basis: calc(33.33% - var(--bcdmsp-gap,12px));
        height: 150px;
    }
    .bcdmsp-thumb { width: 70px; }
}
@media (max-width: 768px) {
    .bcdmsp-item {
        flex-basis: calc(50% - var(--bcdmsp-gap,12px));
        height: 140px;
    }
    .bcdmsp-thumb { width: 65px; }
}
@media (max-width: 480px) {
    .bcdmsp-item {
        flex-basis: 100%;
        height: 130px;
    }
    .bcdmsp-thumb { width: 60px; }
    .bcdmsp-line-bottom { font-size: 18px; }
    .bcdmsp-btn { font-size: 13px; padding: 4px 12px; }
}

/* ===========================================================
   CÁC HIỆU ỨNG PHỤ (hover, màu chữ, layout)
   =========================================================== */
.bcdmsp-item:focus,
.bcdmsp-item:active {
    outline: none;
}

.bcdmsp-overlay * {
    color: inherit;
}

.bcdmsp-item a,
.bcdmsp-item span {
    text-decoration: none;
}

.bcdmsp-item:hover .bcdmsp-btn {
    transform: translateY(-1px);
}
