/* 1. АНИМАЦИЯ ПОЯВЛЕНИЯ СТРАНИЦЫ (Эффект расфокусировки) */
@keyframes pageBlurIn {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: scale(0.98); /* Легкое увеличение */
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

body {
    animation: pageBlurIn 0.7s ease-out;
}

/* 2. СКРЫТИЕ ВКЛАДКИ «ВСЕ ТОВАРЫ» */
.shop-categories .nav-item:first-child,
.shop-nav .nav-item:first-child,
.categories-list a:first-child,
.nav-tabs .nav-item:first-child {
    display: none !important;
}