/* Premium Stylesheet for Shree Annkut Foods */

/* Smooth scroll & General resets */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FCF9F2; /* brand-cream */
    overflow-x: hidden;
}

/* Custom Scrollbar for premium feel */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FCF9F2; 
}
::-webkit-scrollbar-thumb {
    background: #1E4620; /* brand-green */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37; /* brand-gold */
}

/* Premium Navigation link underline animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #D4AF37; /* brand-gold */
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover::after {
    visibility: visible;
    width: 100%;
}

/* Custom transitions and animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Tab button active state */
.tab-btn.active {
    background-color: #1E4620; /* brand-green */
    color: #FFFFFF;
    border-color: #1E4620;
}

.tab-btn:not(.active) {
    background-color: transparent;
    color: #1E4620;
    border-color: #1E4620;
}

.tab-btn:not(.active):hover {
    background-color: rgba(30, 70, 32, 0.05);
    border-color: #D4AF37;
    color: #D4AF37;
}

/* Card hover zoom effects */
.product-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Custom form control outlines */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
