/* Global Transitions - Scoped to shop pages only */
body:not(.admin-page) * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Animations - Scoped to shop pages only */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

body:not(.admin-page) section {
    animation: fadeIn 0.8s ease-out;
}

body:not(.admin-page) .product-card {
    animation: slideUp 0.6s ease-out forwards;
}

/* Responsive fixes - Only for shop pages, not admin */
/* These styles are now handled in individual shop page files to avoid affecting admin */
