.wtb-title-trust {
    margin: 12px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wtb-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 11px;
    border: 1px solid color-mix(in srgb, var(--wtb-accent, #2f6fec) 22%, transparent);
    background: color-mix(in srgb, var(--wtb-accent, #2f6fec) 7%, #fff);
    color: var(--wtb-text, #1f2f46);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
}

.wtb-check {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wtb-accent, #2f6fec);
    border-radius: 50%;
    flex: 0 0 auto;
}

.wtb-check svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.wtb-rating-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--wtb-muted, #64748b);
}

.wtb-rating-wrap .star-rating {
    margin: 0;
}

.wtb-rating-count {
    color: var(--wtb-muted, #64748b);
    font-size: 13px;
}

.wtb-product-activity {
    margin: 12px 0 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.wtb-activity-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid var(--wtb-border, #e5e7eb);
    border-radius: 999px;
    background: #fff;
    color: var(--wtb-text, #1f2f46);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 7px 24px rgba(15, 23, 42, 0.04);
}

.wtb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wtb-accent, #2f6fec);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--wtb-accent, #2f6fec) 13%, transparent);
    flex: 0 0 auto;
}

.wtb-bars {
    width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    background: linear-gradient(to top, var(--wtb-accent, #2f6fec) 68%, transparent 68%) left bottom / 3px 100% no-repeat,
                linear-gradient(to top, var(--wtb-accent, #2f6fec) 92%, transparent 92%) center bottom / 3px 100% no-repeat,
                linear-gradient(to top, var(--wtb-accent, #2f6fec) 48%, transparent 48%) right bottom / 3px 100% no-repeat;
}

.wtb-trust-badges {
    margin-top: 14px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    clear: both;
}

.wtb-trust-badge {
    min-height: 64px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 14px;
    border: 1px solid var(--wtb-border, #e5e7eb);
    border-radius: 12px;
    background: #fff;
    color: var(--wtb-text, #1f2f46);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 7px 24px rgba(15, 23, 42, 0.04);
}

.wtb-trust-badge:hover {
    color: var(--wtb-text, #1f2f46);
    text-decoration: none;
}

.wtb-trust-badge img {
    max-width: 140px;
    max-height: 42px;
    width: auto;
    height: auto;
    display: block;
}

.wtb-trust-badge span {
    display: block;
}

.wtb-social-proof {
    position: fixed;
    bottom: 22px;
    width: min(360px, calc(100vw - 32px));
    z-index: 99999;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.wtb-social-proof.wtb-position-bottom-left {
    left: 22px;
    transform: translate(-18px, 18px) scale(0.96);
}

.wtb-social-proof.wtb-position-bottom-right {
    right: 22px;
    transform: translate(18px, 18px) scale(0.96);
}

.wtb-social-proof.wtb-position-bottom-center {
    left: 50%;
    transform: translate(-50%, 18px) scale(0.96);
}

.wtb-social-proof.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    pointer-events: auto;
}

.wtb-social-proof.wtb-position-bottom-center.is-visible {
    transform: translate(-50%, 0) scale(1);
}

.wtb-social-proof.is-entering .wtb-social-link {
    animation: wtb-social-pop 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wtb-social-link {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 38px 13px 13px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--wtb-text, #1f2f46);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
    text-decoration: none;
}


.wtb-social-link::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid color-mix(in srgb, var(--wtb-accent, #2f6fec) 35%, transparent);
    opacity: 0;
    pointer-events: none;
}

.wtb-social-proof.is-entering .wtb-social-link::before {
    animation: wtb-social-ring 760ms ease-out;
}

.wtb-social-link:hover {
    color: var(--wtb-text, #1f2f46);
    text-decoration: none;
}

.wtb-social-image {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--wtb-accent, #2f6fec) 8%, #f8fafc);
    border: 1px solid var(--wtb-border, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.wtb-social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wtb-social-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.wtb-social-text {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.wtb-social-date {
    font-size: 12px;
    color: var(--wtb-muted, #64748b);
}

#wtb-social-proof .wtb-social-close {
    all: unset;
    box-sizing: border-box !important;
    position: absolute !important;
    top: 9px !important;
    right: 9px !important;
    width: 26px !important;
    min-width: 26px !important;
    max-width: 26px !important;
    height: 26px !important;
    min-height: 26px !important;
    max-height: 26px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #334155 !important;
    cursor: pointer !important;
    z-index: 2 !important;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.12) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    line-height: 1 !important;
    font-size: 0 !important;
}

#wtb-social-proof .wtb-social-close:hover {
    background: #f8fafc !important;
    color: #0f172a !important;
}

#wtb-social-proof .wtb-social-close svg {
    width: 13px !important;
    height: 13px !important;
    display: block !important;
    fill: currentColor !important;
    pointer-events: none !important;
}

@keyframes wtb-social-pop {
    0% { transform: scale(0.92); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12); }
    45% { transform: scale(1.035); box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22); }
    100% { transform: scale(1); box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16); }
}

@keyframes wtb-social-ring {
    0% { opacity: 0.85; transform: scale(0.98); }
    100% { opacity: 0; transform: scale(1.08); }
}

@media (max-width: 767px) {
    .wtb-product-activity,
    .wtb-trust-badges {
        gap: 8px;
    }

    .wtb-activity-item,
    .wtb-trust-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .wtb-social-proof,
    .wtb-social-proof.wtb-position-bottom-left,
    .wtb-social-proof.wtb-position-bottom-right,
    .wtb-social-proof.wtb-position-bottom-center {
        left: 50%;
        right: auto;
        bottom: 14px;
        transform: translate(-50%, 18px) scale(0.96);
        width: min(360px, calc(100vw - 24px));
    }

    .wtb-social-proof.is-visible,
    .wtb-social-proof.wtb-position-bottom-center.is-visible {
        transform: translate(-50%, 0) scale(1);
    }
}
