/* Custom Styles for Suministros Impregan */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'OPSZ' 24;
}

.asymmetric-block-left {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

html {
    scroll-behavior: smooth;
}

/* Animations for future growth */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Infinite Carousel Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    animation: scroll 60s linear infinite;
}

.pause-on-hover:hover {
    animation-play-state: paused;
}


/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Responsive fix for email input */
@media (max-width: 600px) {
    input[type="email"] {
        width: 100% !important; /* Using !important to ensure override */
        box-sizing: border-box;
    }
}

/* Hide scrollbar for catalog nav */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Prevent layout shift while header loads */
#header-placeholder {
    min-height: 80px;
}