.header_menu__img {
    height: 15px;
    margin-right: 5px;
    margin-top: -0.75px;
}

.header_menu__img-container {
    display: flex;
    align-items: center;
}

.catalog-tab.active {
    color: #ffffff !important; /* Белый текст */
    border-color: #ffffff !important; /* Белое подчеркивание */
}

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

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.product-card {
    background-color: #111; /* Темный фон */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Еле заметная рамка */
    transition: all 0.3s ease;
}

.product-card:hover {
    background-color: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.3); /* Светло-серая рамка при наведении */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.product-card img {
    transition: transform 0.5s ease-out;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Линия в карточке - теперь БЕЛАЯ */
.product-line {
    width: 2rem;
    height: 0.125rem; /* 2px */
    background-color: #ffffff; /* Белая линия */
    margin: 0.75rem auto 0;
    transform: scaleX(0); 
    transition: transform 0.3s ease;
}

.product-card:hover .product-line {
    transform: scaleX(1); 
}