/* ═══════════════════════════════════════════════════
   RSD Visitor Counter — Footer Widget
   Designed for ravinder4jind.in v5 theme
   Uses exact theme CSS variables
   ═══════════════════════════════════════════════════ */

.rsd-visitor-counter-strip {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.rsd-vc-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255,153,51,.06) 0%, rgba(19,136,8,.06) 100%);
    border: 1px solid rgba(255,153,51,.18);
    border-radius: 60px;
    padding: 10px 30px 10px 16px;
    position: relative;
    transition: all .3s ease;
}

.rsd-vc-inner:hover {
    border-color: rgba(255,153,51,.35);
    background: linear-gradient(135deg, rgba(255,153,51,.09) 0%, rgba(19,136,8,.09) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.rsd-vc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9933, #E88520);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(255,153,51,.3);
}

.rsd-vc-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.rsd-vc-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rsd-vc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.rsd-vc-label {
    font-family: 'Noto Sans Devanagari', 'Open Sans', sans-serif;
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .5px;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
    text-transform: uppercase;
}

.rsd-vc-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}

.rsd-vc-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255,153,51,.3), transparent);
    flex-shrink: 0;
}

.rsd-vc-live {
    position: absolute;
    top: 11px;
    right: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1AAF0A;
    box-shadow: 0 0 6px #1AAF0A;
    animation: rsd-vc-pulse 2s ease-in-out infinite;
}

@keyframes rsd-vc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .35; transform: scale(.7); }
}

@media (max-width: 600px) {
    .rsd-vc-inner {
        padding: 8px 24px 8px 12px;
        gap: 10px;
    }
    .rsd-vc-icon {
        width: 30px;
        height: 30px;
    }
    .rsd-vc-icon svg {
        width: 15px;
        height: 15px;
    }
    .rsd-vc-number {
        font-size: 1.1rem;
    }
    .rsd-vc-stats {
        gap: 14px;
    }
}
