.reducer-section {
    padding: 40px 0;
}



.reducer-title {
    font-size: 32px;
    color: #1a2b4a;
    margin: 0;
    padding: 0;
    font-weight: normal;
    letter-spacing: 1px;
}

.reducer-divider {
    height: 1px;
    background: #d8d8d8;
    margin: 20px 0 30px 0;
}

.tab-group {
    /* margin-bottom: 50px; */
}

.tab-group:last-child {
    margin-bottom: 0;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #d8d8d8;
}

.tab-item {
    padding: 12px 24px;
    cursor: pointer;
    color: #333;
    margin-right: 4px;
    margin-bottom: -1px;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-item.active {
    background: #f0f0f0;
    color: #1a2b4a;
}

.tab-content {
    padding: 30px 0;
    min-height: 200px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    width: 10%;
    flex: 0 0 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-item:hover {
    transform: translateY(-3px);
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 14px;
    color: #333;
    text-align: center;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: #999;
}

.empty-icon {
    width: 60px;
    height: 50px;
    position: relative;
    margin-bottom: 20px;
}

.empty-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 8px;
    background: #f5f5f5;
    border-radius: 3px 3px 0 0;
    border: 1px solid #e8e8e8;
    border-bottom: none;
}

.empty-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.empty-text {
    font-size: 14px;
    color: #999;
}

@media screen and (max-width: 768px) {
    .product-item {
        width: 33.3%;
        flex: 0 0 33.3%;
    }
    .reducer-section{
        padding: 0;
    }
}