.miko-products-wrapper {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    grid-template-columns: 300px 1fr;
}
.product-filter {}
.miko-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.miko-product-item {
    position: relative;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 8px;
}
.miko-product-item .avatar {
    position: relative;
    padding-top: 80%;
    overflow: hidden;
    display: block;
    border-radius: 6px;
}
.miko-product-item .avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.miko-product-item .miko-product-item-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 24px 40px;
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}
.miko-product-item:hover .miko-product-item-content{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.option-tags {
    position: absolute;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    top: 20px;
    left: 20px;
    z-index: 1;
}
.option-tags a {
    display: inline-block;
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
}
.option-tags .option-article {
    background-color: #f5f2eb;
    font-weight: 600;
    border-radius: 4px;
    padding: 0 6px;
}
.option-tags .option-edits {
    font-weight: 600;
    background-color: #000000;
    border-radius: 4px;
    padding: 0 6px;
    color: white;
}
.regions a {
    color: #777777;
    display: block;
    margin: 0.5rem 0 0;
    font-size: 14px;
}
.miko-product-item h3 a {
    font-size: 18px;
    line-height: normal;
    display: block;
    color: #2A2A2A;
    font-weight: 600;
    padding-bottom: 0.5rem;
}
.miko-product-item .miko-product-item-link span{
    padding: 0.25rem 0;
    display: inline-block;
}
.duration_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, .15);
    margin-top: 10px;
    color: #D9B26A;
    font-size: 14px;
    padding-top: 10px;
}
.duration_price.has-price {
    padding-top: 0;
}
.duration_price .price {
    font-weight: bold;
    font-size: 24px;
    margin-left: auto;
}
/*MARK: Filter*/
.filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: sans-serif;
    font-size: 14px;
}
.filter-item {
    display: inline-flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
}
.filter-item .close-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: 6px;
    font-size: 15px;
    line-height: 1;
    box-shadow: none;
    color: black;
    padding: 0;
    opacity: 1;
}
.filter-item .close-btn:hover {
    opacity: 1;
}
.group_category {
    border-top: 1px solid rgba(0, 0, 0, .15);
}
.group_category:not(:last-child) {
    margin-bottom: 18px;
}
.group_category header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
}
.group_category header .group_name {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: black;
    margin-bottom: 0;
}
.category_list {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    padding: 18px 0;
}
.tag-style input {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}
.tag-style .tag-button {
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    display: inline-block;
    font-size: 13px;
    font-weight: normal;
    cursor: pointer;
}
.tag-style .tag-input:checked+.tag-button {
    background: #000;
    color: #fff;
}
.style-checkbox .checkbox-item {
    width: 100%;
}
.el-checkbox {
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: normal;
    margin-right: 30px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.el-checkbox__input {
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    outline: none;
    position: relative;
    vertical-align: middle;
    white-space: nowrap;
}
.el-checkbox__inner {
    background-color: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 2px;
    box-sizing: border-box;
    display: inline-block;
    height: 16px;
    position: relative;
    transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
    width: 16px;
    z-index: 1;
}
.el-checkbox__inner:after {
    border: 1px solid #fff;
    border-left: 0;
    border-top: 0;
    box-sizing: content-box;
    content: "";
    height: 8px;
    left: 5px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg) scaleY(0);
    transform-origin: center;
    transition: transform .15s ease-in .05s;
    width: 4px;
}
.el-checkbox__original {
    height: 0;
    margin: 0;
    opacity: 0;
    outline: none;
    position: absolute;
    width: 0;
    z-index: -1;
}
.el-checkbox__label {
    display: inline-block;
    line-height: 19px;
    padding-left: 10px;
}
.el-checkbox__input.is-checked .el-checkbox__inner {
    background-color: #009ff3;
    border-color: #009ff3;
}
.el-checkbox__input.is-checked .el-checkbox__inner:after {
    transform: rotate(45deg) scaleY(1);
}
.no-result {
    margin: 0 auto;
    max-width: 450px;
    text-align: center;
}
.no-result p {
    margin: 0;
    color: #909399;
    font-size: 14px;
}
.no-result p strong {
    color: #111111;
    font-size: 16px;
}
.miko-product-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 20px;
}
.miko-product-pagination .page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #1a73e8;
    /* viền xanh */
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}
.miko-product-pagination .page-btn:hover {
    background-color: #e8f0fe;
}
.miko-product-pagination .page-btn.active {
    background-color: #1a73e8;
    color: #fff;
    cursor: default;
    pointer-events: none;
}
.miko-product-pagination .page-btn.prev {
    font-weight: 700;
    font-size: 18px;
}
.group-filter {
    margin-bottom: 1rem;
}
.group-filter .filter-mb {
    display: none;
}
.apply {
    display: none;
}
.sticky-close {
    display: none;
}

.elementor-widget-miko-products .swiper-button {
    position: absolute;
    top: 50%;
    z-index: 1;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.elementor-widget-miko-products .swiper-button:hover{
    background-color: transparent;
}

.elementor-widget-miko-products .swiper-button svg path {
    stroke: #fff;
}

.elementor-widget-miko-products .swiper-button:hover svg path {
    stroke: var( --e-global-color-primary );
}

.elementor-widget-miko-products .swiper-button.miko-next {
    right: 0.5rem;
}

.elementor-widget-miko-products .swiper-button.miko-prev {
    left: 0.5rem;
}

@media screen and (max-width: 1023px) {
    .sticky-close {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .sticky-close svg {
        position: absolute;
        top: 35%;
        right: 0;
        transform: translateY(-50%);
    }
    .product-filter {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 999;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease-in-out;
    }
    .product-filter.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        padding: 1rem;
        height: 100vh;
        overflow-y: scroll;
        z-index: 99999;
    }
    .product-filter button.apply {
        display: block;
        background-color: #3E6B48;
        border-radius: 6px;
        color: white;
        width: 100%;
        border-color: #3E6B48;
    }
    .miko-products-wrapper {
        display: block;
    }
    .miko-product-item h3 a {
        font-size: 16px;
    }
    .miko-products-wrapper {
        margin-top: 1rem;
    }
    .group-filter {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
    }
    .group-filter .filter-mb {
        display: block;
    }
    .group-filter .filter-mb {
        background-color: #3E6B48;
        border-color: #3E6B48;
        color: white;
    }
}