/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Custom utility classes */
.h-screen-80 {
    height: 80vh;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Animation classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Hover effects */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.03);
}

/* Product card hover */
.product-card {
    transition: all 0.3s ease;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #c0955c;
}

/* Section spacing */
section {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 2rem;
    }
}