/* Ofertas Por Un Dia - Custom Styles */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar scroll effect */
#navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#navbar.scrolled .nav-logo {
    height: 2.5rem;
}

/* Nav link active state */
.nav-link.active {
    color: #ffa256;
}

/* Countdown boxes */
.countdown-box {
    text-align: center;
    min-width: 80px;
}

/* Product card hover */
.group:hover .absolute.bg-red-500,
.group:hover .absolute.bg-green-600 {
    transform: translateY(0);
}

/* Video hero fallback */
section video {
    min-width: 100%;
    min-height: 100%;
}

/* Selection color */
::selection {
    background-color: #ffa256;
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffa256;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.show {
    display: block !important;
}
