/* Custom Styles for A & H Discount Store */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a192f;
}

::-webkit-scrollbar-thumb {
    background: #64ffda;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4cdbc4;
}

/* Navigation Active State */
nav.scrolled {
    box-shadow: 0 4px 20px rgba(100, 255, 218, 0.1);
}

/* Hero Gradient Animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Product Card Hover Effect */
.group:hover img {
    filter: brightness(1.1);
}

/* Button Focus States */
button:focus,
a:focus {
    outline: 2px solid #64ffda;
    outline-offset: 2px;
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

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

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Intersection Observer Animations */
.observe {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.observe.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .font-serif {
        line-height: 1.2;
    }
}

/* Print Styles */
@media print {
    nav,
    button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .text-mint {
        color: #000;
    }
}
