/* Artis'Bois Trust Badges  v1.0.5 */

.atb-trust-block {
    margin: 16px 0 20px;
    font-family: inherit;
}

/* Promo line */
.atb-promo-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    justify-content: center;
}
.atb-regular-price { font-size:1rem; color:#999; text-decoration:line-through; font-weight:400; }
.atb-sale-price    { font-size:1.35rem; color:#e53e3e; font-weight:700; }
.atb-saving        { font-size:0.82rem; color:#2ecc71; font-weight:600; background:#eafaf1; border-radius:4px; padding:2px 7px; }

/* Shop name */
.atb-shop-name  { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:16px; }
.atb-shop-label { font-size:1.05rem; font-weight:700; color:#c0392b; text-transform:uppercase; letter-spacing:0.04em; }
.atb-flag       { font-size:2rem; line-height:1; }

/* 4 badges en ligne - desktop et mobile */
.atb-badges-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}
.atb-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
}
.atb-badge-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(46,204,113,0.35);
}
.atb-badge-text  { display:flex; flex-direction:column; align-items:center; text-align:center; gap:2px; width:100%; }
.atb-badge-line1 { font-size:0.62rem; font-weight:700; color:#2ecc71; text-transform:uppercase; letter-spacing:0.03em; line-height:1.2; }
.atb-badge-line2 { font-size:0.58rem; font-weight:600; color:#27ae60; text-transform:uppercase; letter-spacing:0.02em; line-height:1.2; }

/* Mobile : cercles et textes reduits pour tenir en une ligne */
@media screen and (max-width: 480px) {
    .atb-badges-row  { gap: 4px; }
    .atb-badge-circle { width:46px; height:46px; }
    .atb-badge-circle svg { width:22px !important; height:22px !important; }
    .atb-badge-line1 { font-size:0.52rem; }
    .atb-badge-line2 { font-size:0.48rem; }
}
