/* Custom styles for Asian Pacific Market */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a0f14;
    color: #e5e7eb;
}

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

::-webkit-scrollbar-track {
    background: #1a0f14;
}

::-webkit-scrollbar-thumb {
    background: #4a2c3a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b3f52;
}

/* Navbar scroll effect */
.navbar-scrolled {
    background-color: rgba(26, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for cards */
.product-card:hover img {
    transform: scale(1.1);
}

/* Button glow effect */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}
