body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #111;
    scroll-behavior: smooth;
}

h1, h2, h3, .heading-font {
    font-family: 'Montserrat', sans-serif;
}

/* Scroll Reveal Effect */
.product-card {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(40px);
}

.product-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.wool-gradient-overlay {
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Active State */
.mobile-desc-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
