.subcategory-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 220px;
    display: flex;
    align-items: stretch;
}

.subcategory-card:hover {
    transform: scale(1.05); /* увеличиваем карточку */
    box-shadow: 0 10px 22px rgba(0,0,0,0.25); /* добавляем более глубокую тень */
}

.subcategory-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.back-btn {
    background: linear-gradient(135deg, #e67e22, #d35400);
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.back-btn:hover {
    background:  linear-gradient(135deg, #f39c12, #e67e22);
    transform: scale(1.08);
    color: #fff;
    text-decoration: none;
}