@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(30,41,59,0.9) 0%, rgba(15,23,42,0.9) 100%);
}

.nav-link:hover {
    color: #B78F5A;
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tab-active {
    border-bottom: 3px solid #B78F5A;
    color: #B78F5A;
    font-weight: 600;
}

.input-field:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(183, 143, 90, 0.5);
    border-color: #B78F5A;
}