.category-card.disabled {
    cursor: not-allowed;
}
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
}

.btn-prev {
    left: 30px;
}

.btn-next {
    right: 30px;
}

.category-card {
    margin-top: 0 !important;
}

.slider-img-box {
    background: white;
    padding: 5px;
    border-radius: 15px;
}

.img-carousel-header {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-carousel .row {
    align-items: center !important;
}

@media (max-width: 768px) {
    .right-cards-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 20px !important;
    }

    .category-card {
        height: 140px !important;
    }
}

.visitor-card-simple {
    border-radius: 20px;
    background: linear-gradient(135deg, #f5f8ff 0%, #e7edff 100%);
}


.visitor-stats-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media(max-width: 768px) {
    .visitor-stats-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.visitor-item {
    background: linear-gradient(135deg, #0A2770, #123499);
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    transition: 0.25s ease;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.visitor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(18,52,153,0.55);
}

.icon-circle-light {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #fff !important;
}

.stat-label {
    font-size: 12px;
    color: #fff !important;
    opacity: 0.9;
}

@keyframes visitorIconBounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}
.visitor-item:hover .icon-circle-light {
    animation: visitorIconBounce 0.4s ease;
}

.item-blue {
    background: linear-gradient(135deg, #1E5BFF, #4287FF);
    box-shadow: 0 0 12px rgba(66,135,255,0.5);
}

.item-green {
    background: linear-gradient(135deg, #00C28A, #2AE8A9);
    box-shadow: 0 0 12px rgba(42,232,169,0.5);
}

.item-amber {
    background: linear-gradient(135deg, #F7B500, #FFD450);
    box-shadow: 0 0 12px rgba(255,212,80,0.6);
}

.item-purple {
    background: linear-gradient(135deg, #7A3CFF, #B084FF);
    box-shadow: 0 0 12px rgba(122,60,255,0.5);
}

.item-red {
    background: linear-gradient(135deg, #E63946, #FF7A83);
    box-shadow: 0 0 12px rgba(255,122,131,0.5);
}

.item-cyan {
    background: linear-gradient(135deg, #00C9C8, #32F1F0);
    box-shadow: 0 0 12px rgba(50,241,240,0.5);
}