.wtcp-main-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
}

.wtcp-main-tab {
    background: #eee;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
}

.wtcp-main-tab.active {
    background: #EC7F04;
    color: #fff;
}

.wtcp-tab-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wtcp-sub-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 20%;
}

.wtcp-sub-tab {
    text-align: start;
}

.wtcp-sub-tab-group {
    display: none;
}

.wtcp-sub-tab-group:not(.d-none) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wtcp-sub-tab {
    background: #eee;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
}

.wtcp-sub-tab.active {
    background: #EC7F04;
    color: #fff;
}

.wtcp-product-area {
    flex: 1;
}

.wtcp-products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wtcp-product {
    width: 200px;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #EC7F04;
    transition: all 0.3s linear;
    FONT-VARIANT: JIS83;
}

.wtcp-product img {
    width: 100%;
    border-radius: 8px;
}

.wtcp-main-tab:hover,
.wtcp-sub-tab:hover {
    background: #EC7F04;
    color: #fff;
}

.wtcp-product-area {
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0 0 0 20px;
}

.wtcp-product h4 {
    margin: 10px;
}

.wtcp-product:hover {
    background: #ffa5007d;
}

@media screen and (max-width: 768px) {
    .wtcp-sub-tabs {
        width: 100%;
    }

    .wtcp-product-area {
        padding: 0;
    }

    .wtcp-main-tabs {
        margin-bottom: 30px;
    }

    .wtcp-product {
        width: 250px;
    }
}