/* =========================
   TOP TRUST BAR
========================= */

.bbtb-wrapper{
    background:#111;
    color:#fff;
    height:40px;
    overflow:hidden;
    position:relative;
    width:100%;
}

.bbtb-slider{
    position:relative;
    width:100%;
}

.bbtb-item{
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:600;
    text-align:center;
    padding:0 15px;
}

/* =========================
   PRODUCT TRUST BADGE
========================= */

.bbtb-product-badge{
    margin-top:8px;
    min-height:22px;
}

.bbtb-product-slider{
    position:relative;
    overflow:hidden;
}

.bbtb-product-item{
    display:none;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:600;
    color:#666;
    line-height:20px;
    padding:3px 8px;
    border-radius:20px;
    background:#f8f8f8;
    width:fit-content;
    max-width:100%;
    border:1px solid #ececec;
    transition:all .3s ease;
}

/* Livraison */
.bbtb-product-item:nth-child(1){
    color:#16a34a;
    background:#f0fdf4;
    border-color:#bbf7d0;
}

/* Paiement */
.bbtb-product-item:nth-child(2){
    color:#d97706;
    background:#fff7ed;
    border-color:#fed7aa;
}

/* Vendeurs vérifiés */
.bbtb-product-item:nth-child(3){
    color:#2563eb;
    background:#eff6ff;
    border-color:#bfdbfe;
}

/* Retour */
.bbtb-product-item:nth-child(4){
    color:#7c3aed;
    background:#f5f3ff;
    border-color:#ddd6fe;
}

/* Mobile */
@media (max-width:768px){

    .bbtb-wrapper{
        height:36px;
    }

    .bbtb-item{
        height:36px;
        font-size:12px;
    }

    .bbtb-product-item{
        font-size:11px;
        padding:2px 7px;
    }
}