/* Custom smooth styling classes for Editorial Aesthetic */
html {
    scroll-behavior: smooth;
}

.border-warm {
    border-color: rgba(44, 41, 36, 0.1);
}

.oval-shape {
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;

}

.gold-gradient-bg {
    background: linear-gradient(135deg, #D9A05B 0%, #C68940 100%);
}

.cream-gradient-bg {
    background: linear-gradient(180deg, #FDFCF9 0%, #F5F2EA 100%);
}

/* Header styles */
#site-header {
    transition: all 0.3s ease;
}

/* Default state (at top with video background) */
#site-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

#site-header:not(.scrolled) .nav-link:hover {
    color: #ffffff;
}

#site-header:not(.scrolled) .nav-link.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

#site-header:not(.scrolled) span.block.font-serif {
    color: #ffffff !important;
}

/* Scrolled state */
header.scrolled {
    background-color: rgba(253, 252, 249, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(44, 41, 36, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

header.scrolled .nav-link {
    color: rgba(44, 41, 36, 0.7);
}

header.scrolled .nav-link:hover {
    color: #D9A05B;
}

header.scrolled .nav-link.active {
    color: #2C2924;
    border-bottom: 1px solid #2C2924;
}

header.scrolled span.block.font-serif {
    color: #2C2924 !important;
}

/* Nav link base */
.nav-link {
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Product Card Hover */
.product-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #trusted-ticker {
        display: none !important;
    }
}
