.jds-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
    margin: 12px 0;
    padding: 10px 20px 10px 16px;
    position: relative;
    cursor: default;
    user-select: none;
    background: linear-gradient(135deg,
            rgba(255, 92, 0, 0.08) 0%,
            rgba(255, 160, 50, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 120, 30, 0.25);
    border-radius: 100px;
    box-shadow:
        0 0 0 0 rgba(255, 100, 20, 0),
        0 4px 20px rgba(255, 100, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    font-size: 13.5px;
    font-weight: 700;
    color: #c44a00;
    letter-spacing: 0.01em;
    line-height: 1;
    animation:
        jds-sp-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both,
        jds-sp-breathe 4s ease-in-out 0.8s infinite;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jds-social-proof:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
        0 8px 30px rgba(255, 100, 20, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.jds-sp-dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.jds-sp-dot::after {
    content: '';
    position: relative;
    z-index: 2;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ff8c42, #e63e00);
    box-shadow:
        0 0 0 2px rgba(230, 62, 0, 0.2),
        0 0 8px rgba(230, 62, 0, 0.5),
        0 0 16px rgba(230, 62, 0, 0.25);
    animation: jds-sp-core-pulse 2s ease-in-out infinite;
}

.jds-sp-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(230, 62, 0, 0.6);
    animation: jds-sp-ring1 2s ease-out infinite;
}

.jds-sp-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(230, 62, 0, 0.35);
    animation: jds-sp-ring2 2s ease-out 0.5s infinite;
}

.jds-sp-text {
    position: relative;
    transition: opacity 0.35s ease;
    white-space: nowrap;
}

.jds-sp-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(230, 62, 0, 0.45),
            transparent);
    animation: jds-sp-shimmer 3s ease-in-out infinite;
}

@keyframes jds-sp-enter {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.9);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes jds-sp-breathe {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 100, 20, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    50% {
        box-shadow: 0 4px 28px rgba(255, 100, 20, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }
}

@keyframes jds-sp-core-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 6px rgba(230, 62, 0, 0.4);
    }

    50% {
        transform: scale(1.18);
        box-shadow: 0 0 14px rgba(230, 62, 0, 0.7);
    }
}

@keyframes jds-sp-ring1 {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

@keyframes jds-sp-ring2 {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes jds-sp-shimmer {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.products .jds-social-proof {
    font-size: 12px;
    padding: 7px 14px 7px 11px;
    gap: 7px;
}

.products .jds-sp-dot {
    width: 11px;
    height: 11px;
}

.products .jds-sp-dot::after {
    width: 7px;
    height: 7px;
}

@media (max-width: 600px) {
    .jds-social-proof {
        font-size: 12px;
        padding: 8px 14px 8px 11px;
    }

    .jds-sp-text::after {
        display: none;
    }
}

@media (prefers-color-scheme: dark) {
    .jds-social-proof {
        background: linear-gradient(135deg,
                rgba(255, 92, 0, 0.12) 0%,
                rgba(255, 160, 50, 0.07) 100%);
        border-color: rgba(255, 130, 50, 0.3);
        color: #ffb580;
        box-shadow:
            0 4px 24px rgba(255, 100, 20, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
}