﻿/* ... existing styles ... */
body { 
    font-family: 'Outfit', sans-serif; 
}

.glass-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main-gradient {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@keyframes fadeInSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSlideInLeft {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-in.fade-in.slide-in-from-top-2 {
    animation: fadeInSlideIn 0.2s ease-out forwards;
}

.animate-in.fade-in.slide-in-from-left-2 {
    animation: fadeInSlideInLeft 0.2s ease-out forwards;
}

.group:hover > ul,
.group\/item:hover > ul {
    display: block !important;
}

/* Product Detail Specifics */
#thumbnail-carousel .splide__slide.is-active .aspect-square {
    border-color: #641ae6; /* primary color */
}

.prose img {
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.prose h3 {
    color: #1e293b;
    font-weight: 800;
}
