/* Chart & Charm — Custom Styles */

/* Category filter buttons */
.cat-btn {
    background-color: white;
    color: #364152;
    border: 1px solid #e5e7eb;
}
.cat-btn:hover {
    border-color: #6AADAA;
    color: #6AADAA;
}
.cat-btn.active {
    background-color: #6AADAA;
    color: white;
    border-color: #6AADAA;
}

/* Toast animation */
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-slide-up {
    animation: slide-up 0.3s ease-out;
}

/* Custom scrollbar for admin sidebar */
aside::-webkit-scrollbar {
    width: 4px;
}
aside::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

/* Details/summary arrow removal */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* Smooth page transitions */
main {
    animation: fade-in 0.2s ease-out;
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Product card hover lift */
.product-card {
    transition: transform 0.2s ease;
}
.product-card:hover {
    transform: translateY(-2px);
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(106, 173, 170, 0.2);
}
