/* Add custom CSS styles below */ 
/* views */
.store-view-now {
    position: fixed;
    bottom: 20px;
    left: 20px; 
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 14px;
    padding: 16px 22px;
    z-index: 999999;
    width: fit-content;
}


.close-store-view-now {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e63946;
    color: #fff;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
}


.store-view-now-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.visitors-number {
    background: #1f1f1f;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.visitor-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.3s infinite;
}

.row-visitors {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-view-now .label {
    color: #444;
    font-size: 13px;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}


@media (max-width: 768px) {
    .store-view-now {
        bottom: 15px;
        left: 10px;
        padding: 14px 18px;
    }
}