@media(min-width: 768px) {
    .home-product-categories .top-area .svg-wrapper {
        padding: 12px;
        height: 64px;
    }

    .home-product-categories .top-area .svg-wrapper svg {
        height: 40px;
    }

    .home-product-categories .top-area .title-wrapper {
        padding: 11px 16px;
        flex: 1;
        height: 64px;
        justify-content: start;
    }

    .home-product-categories .bottom-area {
        padding: 24px 40px 40px;
        display: flex;
        column-gap: 24px;
    }

    .home-product-categories .bottom-area .bottom-left-area {
        flex: 1;
        line-height: 1;
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper {
        border-radius: 4px;
        border: 1px solid #e1e2e4;
        background: linear-gradient(180deg, #E1E2E4 0%, #FEFEFE 100%);
        padding: 15px 16px;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper .muti-link-top-area {
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 8%;
        cursor: pointer;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper .sub-link-wrapper {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        row-gap: 8px;
        line-height: 1.2;
        max-height: 0;
        box-sizing: border-box !important;
        transition: all .3s ease-in-out;
        overflow: hidden;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper .sub-link-wrapper svg {
        transition: all .3s ease-in-out;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper.active .sub-link-wrapper {
        max-height: 80px;
        padding-top: 8px;
        margin-top: 8px;
        border-top: 1px solid #bdbdbd;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper.active svg {
        transform: rotate(90deg);
    }

    .home-product-categories .bottom-area .bottom-right-area {
        flex: 4.4;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .home-product-categories .bottom-area .bottom-right-area .img-item {
        position: relative;
        display: flex;
    }
    .home-product-categories .bottom-area .bottom-right-area .img-item img{
        object-fit: cover;
       border-radius: 4px;
    }
    .home-product-categories .bottom-area .bottom-right-area .img-item .text-wrapper {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 60%;
    }

    .home-product-categories .bottom-area .bottom-right-area .img-item .text-wrapper .pc-text-content {
        width: 90%;
        margin-top: 8px;
    }
}

@media(max-width: 768px) {
    .home-product-categories {
        background-color: #F2F2F2;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: unset !important;
    }
    .home-product-categories .top-area{
        width: 100%;
    }
    .home-product-categories .top-area .svg-wrapper {
        padding: 10px;
        height: 40px;
    }

    .home-product-categories .top-area .svg-wrapper svg {
        height: 20px;
        width: 20px;
    }

    .home-product-categories .top-area .title-wrapper {
        padding: 10px 8px;
        flex: 1;
        height: 40px;
        justify-content: start;
    }

    .home-product-categories .bottom-area {
        width: 100%;
        
        display: flex;
        column-gap: 24px;
        padding: 20px 15px 40px !important;
    }

    .home-product-categories .bottom-area .bottom-left-area {
        flex: 1;
        line-height: 1;
        display: flex;
        flex-direction: column;
        row-gap: 12px;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper {
        border-radius: 4px;
        border: 1px solid #e1e2e4;
        background: linear-gradient(180deg, #E1E2E4 0%, #FEFEFE 100%);
        padding: 15px 16px;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper .muti-link-top-area {
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 8%;
        cursor: pointer;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper .sub-link-wrapper {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        row-gap: 8px;
        line-height: 1.2;
        max-height: 0;
        box-sizing: border-box !important;
        transition: all .3s ease-in-out;
        overflow: hidden;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper .sub-link-wrapper svg {
        transition: all .3s ease-in-out;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper.active .sub-link-wrapper {
        max-height: 80px;
        padding-top: 8px;
        margin-top: 8px;
        border-top: 1px solid #bdbdbd;
    }

    .home-product-categories .bottom-area .bottom-left-area .link-wrapper.active svg {
        transform: rotate(90deg)
    }

    .home-product-categories .bottom-area .bottom-right-area {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .home-product-categories .bottom-area .bottom-right-area .img-item {
        position: relative;
        display: flex;
    }

    .home-product-categories .bottom-area .bottom-right-area .img-item .text-wrapper {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 60%;
    }

    .home-product-categories .bottom-area .bottom-right-area .img-item .text-wrapper .pc-text-content {
        width: 75%;
        margin-top: 4px;
    }
}