.miko-product-swiper .swiper-slide{
    display: none;
}
.miko-product-swiper.swiper-initialized .swiper-slide{
    display: block;
    height: auto;
}

.miko-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.miko-tab-btn {
    padding: 12px 24px;
    background: #fff;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: none;
}

.miko-tab-btn.active {
    background: #2E3192;
    color: #fff;
}

.miko-tab-panel {
    display: none;
}

.miko-tab-panel.active {
    display: block;
}

.miko-card {
    display: block;
    position: relative;
    text-decoration: none;
    height: 100%;
}

.miko-card-image img {
    width: 100%;
}

.miko-card .miko-rating {
    background-color: white;
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 12px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-weight: 600;
    color: #1A1C1C;
    display: flex;
    align-items: center;
    gap: 4px;
}
.miko-card .miko-card-title{
    color: #262626;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.miko-card .miko-meta{
    margin-bottom: 8px;
    color: var( --e-global-color-accent );
    font-size: 12px;
}
.miko-card .miko-desc{
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(191, 201, 195, 0.3);
}
.miko-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #676767;
    font-size: 12px;
}
.miko-bottom .miko-duration{
    display: flex;
    align-items: center;
    gap: 4px;
}
.miko-bottom .miko-price{
    color: var( --e-global-color-accent );
    font-size: 18px;
    font-weight: 600;
}