.shark-social-proof-popup-root {
    --shark-floating-ui-bottom: calc(max(22px, env(safe-area-inset-bottom, 0px)) + 108px);
    --shark-floating-ui-bottom-mobile: calc(106px + env(safe-area-inset-bottom, 0px) + 86px);
}

.shark-social-proof-feedbacks {
    --shark-social-proof-gap: 14px;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    padding: 2px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.shark-social-proof-feedback-track {
    display: flex;
    gap: var(--shark-social-proof-gap);
    width: max-content;
    animation: shark-social-proof-loop-x 42s linear infinite;
}

.shark-social-proof-feedbacks:hover .shark-social-proof-feedback-track {
    animation-play-state: paused;
}

.shark-social-proof-feedback-card {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex: 0 0 clamp(270px, 31vw, 348px);
    min-width: 0;
    min-height: 176px;
    flex-direction: column;
    gap: 9px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    padding: 16px;
    color: #f8fafc;
    background: linear-gradient(140deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04)), rgba(5, 11, 24, .72);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

.shark-social-proof-feedback-head {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.shark-social-proof-avatar {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, .30);
    border-radius: 50%;
    color: #03111b;
    background: linear-gradient(135deg, #00f3ff, #36ffb0);
    font-weight: 800;
    object-fit: cover;
}

img.shark-social-proof-avatar {
    display: block;
}

.shark-social-proof-feedback-head strong,
.shark-social-proof-feedback-head small {
    display: block;
    overflow-wrap: anywhere;
    letter-spacing: 0;
}

.shark-social-proof-feedback-head small {
    color: rgba(226, 232, 240, .72);
    font-size: .78rem;
}

.shark-social-proof-stars {
    min-height: 18px;
    color: #facc15;
    font-size: .92rem;
    line-height: 1;
    letter-spacing: 0;
}

.shark-social-proof-feedback-card p {
    margin: 0;
    color: rgba(241, 245, 249, .88);
    font-size: .92rem;
    line-height: 1.48;
    overflow-wrap: anywhere;
}

.shark-social-proof-verified {
    align-self: flex-start;
    margin-top: auto;
    border: 1px solid rgba(54, 255, 176, .25);
    border-radius: 999px;
    padding: 4px 8px;
    color: #b7ffde;
    background: rgba(54, 255, 176, .10);
    font-size: .7rem;
    font-weight: 700;
}

.shark-social-proof-feedbacks--vertical {
    height: min(470px, 72vh);
    mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

.shark-social-proof-feedbacks--vertical .shark-social-proof-feedback-track {
    display: grid;
    width: auto;
    animation-name: shark-social-proof-loop-y;
    animation-duration: 39s;
}

.shark-social-proof-feedbacks--vertical .shark-social-proof-feedback-card {
    width: 100%;
    min-height: 164px;
}

@keyframes shark-social-proof-loop-x {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-50% - (var(--shark-social-proof-gap) / 2)), 0, 0); }
}

@keyframes shark-social-proof-loop-y {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, calc(-50% - (var(--shark-social-proof-gap) / 2)), 0); }
}

.shark-social-proof-popup-root {
    position: fixed;
    z-index: 2147482000;
    width: min(360px, calc(100vw - 24px));
    pointer-events: none;
}

.shark-social-proof-popup-root--bottom-left { bottom: var(--shark-floating-ui-bottom, 16px); left: 16px; }
.shark-social-proof-popup-root--bottom-right { right: 16px; bottom: var(--shark-floating-ui-bottom, 16px); }
.shark-social-proof-popup-root--top-right { top: 16px; right: 16px; }

.shark-social-proof-popup {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 9px;
    gap: 11px;
    align-items: center;
    width: 100%;
    min-height: 78px;
    border: 1px solid rgba(0, 243, 255, .26);
    border-radius: 8px;
    padding: 13px;
    color: #f8fafc;
    background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04)), rgba(4, 9, 22, .82);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .30);
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(.98);
    transition: opacity .32s ease, transform .4s cubic-bezier(.2, .82, .25, 1);
}

.shark-social-proof-popup-root--top-right .shark-social-proof-popup {
    transform: translate3d(0, -16px, 0) scale(.98);
}

.shark-social-proof-popup.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.shark-social-proof-popup.is-leaving {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(.97);
}

.shark-social-proof-popup--glass {
    border-color: rgba(255, 255, 255, .24);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.shark-social-proof-popup--minimal {
    border-color: rgba(148, 163, 184, .30);
    background: rgba(15, 23, 42, .94);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

.shark-social-proof-popup-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: #03111b;
    background: linear-gradient(135deg, #00f3ff, #36ffb0);
    font-size: 1rem;
    font-weight: 800;
}

.shark-social-proof-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shark-social-proof-popup-body,
.shark-social-proof-popup-body strong,
.shark-social-proof-popup-body span {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    letter-spacing: 0;
}

.shark-social-proof-popup-body strong {
    color: #fff;
    font-size: .92rem;
    line-height: 1.22;
}

.shark-social-proof-popup-body span {
    margin-top: 4px;
    color: rgba(226, 232, 240, .83);
    font-size: .84rem;
    line-height: 1.35;
}

.shark-social-proof-popup-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #36ffb0;
}

@media (max-width: 600px) {
    .shark-social-proof-feedback-card { flex-basis: min(84vw, 312px); }
    .shark-social-proof-feedbacks--vertical { height: 430px; }
    .shark-social-proof-popup-root { right: 12px; bottom: var(--shark-floating-ui-bottom-mobile, calc(112px + env(safe-area-inset-bottom, 0px))); left: 12px; width: auto; }
    .shark-social-proof-popup-root--top-right { top: 12px; bottom: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .shark-social-proof-feedback-track {
        animation: none !important;
        transform: none !important;
    }
    .shark-social-proof-feedbacks {
        overflow-x: auto;
        mask-image: none;
    }
    .shark-social-proof-feedbacks--vertical {
        overflow-y: auto;
    }
    .shark-social-proof-popup {
        transition: none;
    }
}

.sc-proof-widget,
.sc-proof-widget * {
    box-sizing: border-box;
}

.sc-proof-widget {
    --widget-width: 392px;
    --card-height: 82px;
    --radius: 14px;
    --default-accent: #7c4dff;
    position: fixed !important;
    left: 18px !important;
    right: auto !important;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
    top: auto !important;
    width: min(var(--widget-width), calc(100vw - 24px)) !important;
    z-index: 2147483000 !important;
    margin: 0 !important;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    pointer-events: none !important;
    transform: none !important;
}

.sc-proof-widget--bottom-right {
    right: 18px !important;
    left: auto !important;
}

.sc-proof-widget--top-right {
    top: 18px !important;
    right: 18px !important;
    bottom: auto !important;
    left: auto !important;
}

.sc-proof-stage {
    position: relative;
    width: 100%;
    height: var(--card-height);
    margin-bottom: 0;
}

.sc-proof-item {
    --accent: var(--default-accent);
    --accent-rgb: 124, 77, 255;
    --accent-2: #2f7cff;
    --avatar: none;
    --cover: none;
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 56px 28px;
    align-items: center;
    gap: 11px;
    min-height: var(--card-height);
    padding: 12px 10px 12px 14px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-rgb), .78);
    border-radius: var(--radius);
    color: #fff;
    text-decoration: none;
    background:
        radial-gradient(circle at 0% 50%, rgba(var(--accent-rgb), .18), transparent 42%),
        linear-gradient(135deg, rgba(13, 20, 35, .94), rgba(7, 10, 20, .92) 55%, rgba(18, 24, 39, .90));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
    contain: layout paint style;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-8px, 8px, 0);
    transition: opacity .22s ease, transform .22s ease, border-color .16s ease;
    cursor: pointer;
}

.sc-proof-item.sc-proof-item--no-avatar {
    grid-template-columns: minmax(0, 1fr) 56px 28px;
}

.sc-proof-item::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.sc-proof-item::after {
    display: none;
}

.sc-proof-item.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.sc-proof-item.is-active:hover {
    border-color: rgba(var(--accent-rgb), .98);
    transform: translate3d(0, 0, 0);
}

.sc-proof-item.is-leaving,
.sc-proof-item.is-soft-hidden {
    opacity: 0;
    transform: translate3d(-4px, -4px, 0);
}

.sc-proof-avatar {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.90);
    border-radius: 50%;
    color: #101827;
    background:
        var(--avatar) center / cover no-repeat,
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(205,211,222,.86));
    box-shadow: none;
    font-size: 13px;
    font-weight: 900;
}

.sc-proof-item--no-avatar .sc-proof-avatar {
    display: none;
}

.sc-proof-avatar::before {
    content: attr(data-initial);
}

.sc-proof-avatar::after {
    display: none;
}

.sc-proof-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.sc-proof-content strong,
.sc-proof-content em,
.sc-proof-content small {
    letter-spacing: 0;
}

.sc-proof-content strong {
    display: block;
    max-width: 100%;
    margin-bottom: 2px;
    overflow: hidden;
    color: rgba(255,255,255,.94);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-proof-content strong b {
    font-weight: 850;
}

.sc-proof-content em {
    display: block;
    max-width: 100%;
    margin-bottom: 4px;
    overflow: hidden;
    color: var(--accent);
    font-size: 14px;
    font-style: normal;
    font-weight: 850;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-proof-content small {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(222, 229, 245, .75);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.sc-clock {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(222,229,245,.70);
    border-radius: 50%;
}

.sc-clock::before,
.sc-clock::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 99px;
    background: rgba(222,229,245,.80);
    transform-origin: left center;
}

.sc-clock::before {
    width: 5px;
    height: 2px;
    transform: translate(-1px, -1px);
}

.sc-clock::after {
    width: 2px;
    height: 6px;
    transform: translate(-1px, -5px);
}

.sc-proof-cover {
    position: relative;
    z-index: 1;
    display: block;
    width: 52px;
    height: 52px;
    justify-self: end;
    border: 1px solid rgba(var(--accent-rgb), .55);
    border-radius: 8px;
    background:
        var(--cover) center / cover no-repeat,
        linear-gradient(135deg, rgba(var(--accent-rgb), .18), rgba(0,0,0,.30));
    box-shadow: none;
}

.sc-proof-check {
    position: absolute;
    right: -4px;
    bottom: -4px;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #8c5cff);
    box-shadow: 0 0 0 2px rgba(5, 8, 18, .96);
}

.sc-proof-check::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 1px;
    transform: rotate(-45deg);
}

.sc-proof-close {
    position: relative;
    z-index: 2;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.12);
    cursor: pointer;
    pointer-events: auto;
    font-size: 18px;
    line-height: 1;
}

.sc-proof-close:hover,
.sc-proof-close:focus-visible {
    outline: 0;
    background: rgba(255,255,255,.22);
}

.sc-proof-counter {
    display: none;
    align-items: center;
    max-width: 100%;
    min-height: 54px;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid rgba(162, 91, 255, .50);
    border-radius: 16px;
    color: rgba(236, 241, 255, .82);
    text-decoration: none;
    background:
        radial-gradient(circle at 0% 50%, rgba(162, 91, 255, .22), transparent 46%),
        linear-gradient(135deg, rgba(15, 20, 34, .95), rgba(8, 10, 20, .92));
    box-shadow: 0 10px 22px rgba(0,0,0,.32);
    pointer-events: auto;
    contain: layout paint style;
    transition: transform .18s ease, border-color .18s ease;
}

.sc-proof-counter:hover {
    border-color: rgba(162, 91, 255, .85);
    transform: translateY(-2px);
}

.sc-proof-counter b {
    color: #b45cff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.sc-proof-counter span:last-child {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

.sc-proof-people {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 25px;
    height: 18px;
}

.sc-proof-people::before,
.sc-proof-people::after {
    content: "";
    position: absolute;
    background: #a855f7;
}

.sc-proof-people::before {
    top: 0;
    left: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.sc-proof-people::after {
    bottom: 0;
    left: 0;
    width: 25px;
    height: 10px;
    border-radius: 12px 12px 4px 4px;
}

@media (max-width: 991.98px) {
    .sc-proof-widget {
        --card-height: 74px;
        left: 12px !important;
        right: auto !important;
        bottom: calc(118px + env(safe-area-inset-bottom, 0px)) !important;
        width: min(368px, calc(100vw - 24px)) !important;
        transform: none !important;
    }

    .sc-proof-widget--top-right {
        top: 12px !important;
        bottom: auto !important;
    }

    .sc-proof-item {
        grid-template-columns: 38px minmax(0, 1fr) 46px 28px;
        gap: 9px;
        padding: 10px 8px 10px 12px;
        border-radius: 12px;
    }

    .sc-proof-item.sc-proof-item--no-avatar {
        grid-template-columns: minmax(0, 1fr) 46px 28px;
    }

    .sc-proof-avatar {
        width: 36px;
        height: 36px;
        border-width: 2px;
        font-size: 11px;
    }

    .sc-proof-cover {
        width: 44px;
        height: 44px;
    }

    .sc-proof-content strong {
        font-size: 12px;
    }

    .sc-proof-content em {
        margin-bottom: 3px;
        font-size: 13px;
    }

    .sc-proof-content small {
        font-size: 9px;
    }

    .sc-clock {
        width: 13px;
        height: 13px;
        border-width: 1.5px;
    }

    .sc-proof-counter {
        min-height: 44px;
        padding: 0 14px;
        border-radius: 14px;
    }

    .sc-proof-counter b {
        font-size: 19px;
    }

    .sc-proof-counter span:last-child {
        font-size: 13px;
        white-space: normal;
    }
}
