.category-icons {
    margin: 20px 0;
    background-color: #fff;
}

.category-icon {
    display: block;
    text-align: center;
    margin-bottom: 25px;
    text-decoration: none !important;

    /* เตรียม animation */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ตัวรูป */
.category-icon img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 10px;

    /* Animation */
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* ชื่อหมวด */
.category-icon-name {
    font-size: 16px;
    line-height: 1.4;
    color: #333;

    transition: color 0.25s ease;
}


/* =========================
   HOVER EFFECT
   ========================= */

.category-icon:hover {
    transform: translateY(-6px);
}

.category-icon:hover img {
    transform: scale(1.06);

    /* เพิ่มความโดดเด่นเล็กน้อย */
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.18));
}

.category-icon:hover .category-icon-name {
    color: #e74c3c;
}