/* =====================================================
   SUBLIMOLDES PRODUCT TRUST BLOCK PRO V3 FINAL
===================================================== */

.sptb-wrapper{
    margin:55px 0;
    padding:38px 34px 34px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    box-shadow:0 14px 35px rgba(0,0,0,0.035);
    overflow:hidden;
}

/* ================= TOP RIBBON ================= */

.sptb-top-ribbon{
    text-align:center;
    font-size:13px;
    font-weight:600;
    color:#1d4ed8;
    background:#f4f8ff;
    border:1px solid #d9e8ff;
    border-radius:30px;
    padding:10px 18px;
    margin-bottom:28px;
    line-height:1.5;
}

/* ================= HEADER ================= */

.sptb-header{
    text-align:center;
    margin-bottom:30px;
}

.sptb-header h3{
    margin:0 0 8px;
    font-size:34px;
    font-weight:700;
    color:#111;
    letter-spacing:-0.3px;
}

.sptb-header p{
    margin:0;
    font-size:15px;
    color:#6d6d6d;
}

.sptb-social-line{
    margin-top:10px;
    font-size:13px;
    color:#5d6b82;
    font-weight:500;
}

/* ================= GRID ================= */

.sptb-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.sptb-card{
    position:relative;
    background:linear-gradient(180deg,#ffffff,#fcfcfc);
    border:1px solid #ebebeb;
    border-radius:20px;
    padding:22px 18px 20px;
    transition:all .28s ease;
    min-height:160px;
}

.sptb-card:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 28px rgba(0,0,0,0.055);
    border-color:#d8e7ff;
}

.sptb-card.highlight{
    background:linear-gradient(180deg,#ffffff,#f8fbff);
    border-color:#dceaff;
}

.sptb-badge{
    position:absolute;
    top:12px;
    right:12px;
    background:#eff6ff;
    color:#1d4ed8;
    border:1px solid #dbeafe;
    font-size:10px;
    font-weight:700;
    padding:5px 10px;
    border-radius:30px;
    letter-spacing:0.2px;
}

.sptb-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#edf4ff;
    color:#1d4ed8;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
}

.sptb-icon svg{
    width:22px;
    height:22px;
}

.sptb-title{
    font-size:16px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:7px;
}

.sptb-description{
    font-size:13px;
    color:#666;
    line-height:1.55;
}

/* ================= PAYMENT STRIP ================= */

.sptb-payment-strip{
    margin-top:28px;
    padding-top:22px;
    border-top:1px solid #ececec;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.pay-item{
    padding:7px 14px;
    border-radius:30px;
    background:#f7f9fc;
    border:1px solid #e2e8f0;
    font-size:12px;
    font-weight:700;
    color:#334155;
}

.pay-note{
    font-size:12px;
    color:#64748b;
    margin-left:10px;
}

/* ================= TABLET ================= */

@media(max-width:1024px){
    .sptb-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ================= MOBILE ================= */

@media(max-width:640px){

    .sptb-wrapper{
        margin:35px 0;
        padding:24px 16px;
        border-radius:18px;
    }

    .sptb-top-ribbon{
        font-size:11px;
        padding:9px 12px;
    }

    .sptb-header h3{
        font-size:24px;
    }

    .sptb-header p{
        font-size:14px;
        line-height:1.5;
    }

    .sptb-grid{
        grid-template-columns:1fr;
        gap:13px;
    }

    .sptb-card{
        min-height:auto;
        padding:18px 16px;
    }

    .sptb-payment-strip{
        gap:8px;
    }

    .pay-note{
        width:100%;
        text-align:center;
        margin-left:0;
        margin-top:8px;
        line-height:1.5;
    }
}