.social-links .txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-links .live-orders {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: #FFF;
    opacity: 0.95;
    line-height: 1.2;
}

.social-links .live-orders b {
    font-weight: 700;
    font-style: normal;
}

.social-links .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: live-dot-pulse 1.6s infinite;
    flex-shrink: 0;
}

@keyframes live-dot-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.75); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.social-links .num {
    display: inline-block;
    font-style: normal;
    font-weight: 600;
}

.social-links .num.num-pulse {
    animation: live-num-pulse 0.45s ease;
}

@keyframes live-num-pulse {
    0%   { opacity: 0.4; transform: translateY(-2px); }
    100% { opacity: 1;   transform: translateY(0); }
}
