/* spark-store modal styles — extracted from includes/spark-store-modal.php */
/* Hide scrollbar on spark store modal */
.spark-store-modal-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.spark-store-modal-content::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar on horizontal scroll rows */
.spark-store-scroll-row {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.spark-store-scroll-row::-webkit-scrollbar {
    display: none;
}

/* Store item hover */
#sparkStoreModal .store-item {
    transform: translateY(0);
}
#sparkStoreModal .store-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.15) !important;
}
#sparkStoreModal .store-item:active {
    transform: translateY(0);
}

/* Mobile fullscreen */
@media (max-width: 900px) {
    #sparkStoreModal {
        padding: 0 !important;
    }
    #sparkStoreModal > .spark-store-modal-content {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        height: 100svh !important;
        max-height: 100vh !important;
        max-height: 100svh !important;
        border-radius: 0 !important;
    }
}
