.navbar-brand img {
    filter: drop-shadow(0 0 8px rgba(255,77,143,.5));
    transition: filter .3s ease;
}
.navbar-brand img:hover {
    filter: drop-shadow(0 0 14px rgba(255,77,143,.9));
}

.shop-title {
    font-weight: 900 !important;
    font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    /* Основная анимация дрожания */
    animation: glitch-skew 3s infinite linear alternate-reverse;
}

/* Слой красного смещения */
.shop-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: -2px;
    width: 100%;
    height: 100%;
    text-shadow: 2px 0 #ff2d55; /* Красный неон */
    background: transparent;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

/* Слой синего смещения */
.shop-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 2px;
    width: 100%;
    height: 100%;
    text-shadow: -2px 0 #00fff2; /* Бирюзовый неон */
    background: transparent;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

/* Анимация "разрезания" текста полосами */
@keyframes glitch-anim-1 {
    0% { clip: rect(10px, 9999px, 20px, 0); }
    20% { clip: rect(80px, 9999px, 90px, 0); }
    40% { clip: rect(30px, 9999px, 40px, 0); }
    60% { clip: rect(60px, 9999px, 70px, 0); }
    80% { clip: rect(10px, 9999px, 100px, 0); }
    100% { clip: rect(50px, 9999px, 60px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(60px, 9999px, 70px, 0); }
    20% { clip: rect(20px, 9999px, 30px, 0); }
    40% { clip: rect(90px, 9999px, 100px, 0); }
    60% { clip: rect(10px, 9999px, 20px, 0); }
    80% { clip: rect(50px, 9999px, 60px, 0); }
    100% { clip: rect(30px, 9999px, 40px, 0); }
}

/* Легкое искажение по горизонтали */
@keyframes glitch-skew {
    0%, 90% { transform: skew(0deg); }
    93% { transform: skew(3deg); }
    95% { transform: skew(-5deg); }
    97% { transform: skew(1deg); }
    100% { transform: skew(0deg); }
}

/* Базовое состояние колонки */
.col-xl-4.col-md-6.filter-item {
    position: relative;
    z-index: 1;
}

/* Состояние при наведении: только вывод на передний план */
.col-xl-4.col-md-6.filter-item:hover {
    z-index: 10;
}

/* Эффект обводки и свечения для карточки внутри колонки */
.col-xl-4.col-md-6.filter-item:hover .product-card {
    border-color: #fa5252 !important;
    box-shadow: 0 0 25px rgba(250, 82, 82, 0.4) !important;
    filter: brightness(1.1); /* Легкий эффект "подсветки" контента */
    transition: all 0.3s ease; /* Чтобы обводка появлялась плавно */
}