.section-2{
   width: 100%;
   
}

.category-section {
    position: relative;
    background: #f7f6f6;
    width: 100%;
    height: 120px;
    border: none;
    z-index: 1000; /* Đảm bảo nằm trên các phần tử khác */
    margin-bottom: 10px;
}

.category-section .container {
    height: 100%;
    justify-content: center; /* căn giữa */
    align-items: center; /* căn giữa */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); /* Tạo bóng */
    padding: 10px;
}

.category-items {
    display: flex;
    align-items: center;
    justify-content: center; /* căn giữa */
    gap: 20px; /* khoảng cách giữa các mục */
}

.category-item {
    text-align: center;
    width: 100px;
    height: 95px;
}

.category-item:hover {
    border: #c5c5c5 0.1px solid;
    box-shadow: 0 0 15px rgba(194, 194, 194, 0.3);
}

.category-item .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 10px auto;
    margin-bottom: 10px;
    background: #fad6b2;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.icon-circle img {
    transition: filter 0.3s ease;
}

/* Hover effect */
.category-item:hover .icon-circle {
    background: #ffbf80; /* đổi màu nền */
}

.category-item:hover .icon-circle img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.item-a {
    text-decoration: none;
    color: #3b3b3b;
    font-size: 13px;
}

.item-a:hover {
    color: #ffbf80;
    font-weight: 300;
}

