/* Custom App Animations for Web APK Feel */
.custom-card-animation {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
    .custom-card-animation:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
}

.product-img-hover {
    transition: transform 0.3s ease;
}

.custom-card-animation:hover .product-img-hover {
    transform: scale(1.03);
}

/* Hide scrollbars for standalone mobile display mode */
body::-webkit-scrollbar {
    display: none;
}
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-tap-highlight-color: transparent;
}
