/* Base and custom Utilities */
body {
    -webkit-tap-highlight-color: transparent;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

/* Modals animations */
.cart-open #cartOverlay {
    opacity: 1;
    pointer-events: auto;
}
.cart-open #cartSheet {
    transform: translateY(0);
}

.product-modal-open #productOverlay {
    opacity: 1;
    pointer-events: auto;
}
.product-modal-open #productSheet {
    transform: translateY(0);
}

/* Slider animations */
.banner-slide {
    flex: 0 0 100%;
}
.dot {
    transition: all 0.3s ease;
}
.dot.active {
    background-color: #D92323;
    width: 20px;
}

/* Loader */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #D92323;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
