/* =========================================
   BBB TRUST CARD (UPGRADED)
========================================= */

.bbb-wrap {
    padding: 22px 0;
    display: flex;
    justify-content: center;
}

/* MAIN CARD */
.bbb-card {
    max-width: 1100px;
    width: 100%;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 22px;

    border-radius: 12px;

    background: transparent;

    transition: all 0.25s ease;
}

/* HOVER */
.bbb-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* ICON */
.bbb-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bbb-icon img {
    height: 110px;
    width: auto;
    object-fit: contain;
}

/* CONTENT */
.bbb-content {
    flex: 1;
    text-align: left;
}

.bbb-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
}

/* TAG LINE */
.bbb-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    margin-top: 4px;

    font-size: 12.5px;
    font-weight: 700;
    color: #0d7c99;
    letter-spacing: 0.3px;
    gap: 10px;
}

/* RATING BLOCK */
.bbb-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bbb-stars {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;

    color: #f5c542; /* fallback gold */

    background: linear-gradient(
        90deg,
        #f5c542 0%,
        #ffd86b 50%,
        #f5c542 100%
    );

    background-size: 200% 100%;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: starShine 2.8s ease-in-out infinite;
}

/* SCORE TEXT */
.bbb-score {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

/* DESCRIPTION */
.bbb-content p {
    margin: 6px 0 0;

    font-size: 13.8px;
    line-height: 1.5;

    color: #64748b;
    max-width: 720px;
}

/* SHIMMER ANIMATION */
@keyframes starShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* BUTTON */
.bbb-btn {
    flex-shrink: 0;

    padding: 10px 16px;
    border-radius: 10px;

    background: #0d7c99;
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}

.bbb-btn:hover {
    background: #0a5f75;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .bbb-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .bbb-content {
        text-align: center;
    }

    .bbb-btn {
        width: 100%;
        text-align: center;
    }
}