.category-carousel-section {
    padding: 30px 0;
    background-color: #fff;
    margin-bottom: 40px;
}

.category-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.carousel-nav {
    background: none;
    border: none;
    font-size: 24px;
    color: #9e9e9e;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.carousel-nav:hover {
    color: var(--primary-color, #ff6b00);
}

.category-carousel {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    overflow: hidden;
    gap: 15px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s;
    min-width: 100px;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.category-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.category-item:hover .category-icon {
    transform: scale(1.1);
}

.category-item span {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    color: #333;
}
