#mobile_feed_section {
    width: 100%;
    padding: 10px 10px 14px;
    box-sizing: border-box;
    background: #f3f3f5;
}

.mobile_feed_category_slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 4px 12px;
    box-sizing: border-box;
}

.mobile_feed_category_slider::-webkit-scrollbar {
    display: none;
}

.mobile_feed_category_item {
    flex: 0 0 auto;
    width: 72px !important;
    height: 72px;
    border: 1.5px solid transparent;
    border-radius: 16px;
    background: transparent;
    padding: 6px 4px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    box-sizing: border-box;
}

.mobile_feed_category_item_active {
    border-color: #ff6a3d;
    background: #ffffff;
    width: 72px !important;
    height: 72px;
}

.mobile_feed_category_icon_wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_feed_category_icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.mobile_feed_category_text {
    color: #9a9aa5;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

.mobile_feed_category_item_active .mobile_feed_category_text {
    color: #ff5b2e;
}

.mobile_feed_product_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile_feed_product_card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.mobile_feed_product_image_wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ededed;
}

.mobile_feed_product_image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mobile_feed_product_info {
    padding: 8px 10px 10px;
}

.mobile_feed_product_title {
    margin: 0 0 7px;
    color: #2a2a2a;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 33px;
}

.mobile_feed_product_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 18px;
    padding: 0 4px;
    margin-right: 5px;
    border-radius: 4px;
    background: #f47a20;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
}

.mobile_feed_product_price {
    color: #ff4b57;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 7px;
}

.mobile_feed_product_rating_row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile_feed_product_star {
    color: #f7b731;
    font-size: 12px;
    line-height: 1;
}

.mobile_feed_product_rating,
.mobile_feed_product_reviews {
    color: #8c8c99;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
}

.mobile_feed_loader_trigger {
    width: 100%;
    height: 20px;
}

@media (max-width: 420px) {
    #mobile_feed_section {
        padding: 10px 8px 14px;
    }

    .mobile_feed_category_slider {
        gap: 12px;
    }

    .mobile_feed_category_item {
        width: 62px;
    }

    .mobile_feed_product_info {
        padding: 8px 8px 10px;
    }
}

@media (max-width: 380px) {
    .mobile_feed_category_slider {
        gap: 10px;
    }

    .mobile_feed_category_item {
        width: 60px;
        border-radius: 14px;
    }

    .mobile_feed_category_icon_wrap {
        width: 36px;
        height: 36px;
    }

    .mobile_feed_category_icon {
        width: 30px;
        height: 30px;
    }

    .mobile_feed_category_text {
        font-size: 10px;
    }

    .mobile_feed_product_title {
        font-size: 12px;
    }

    .mobile_feed_product_price {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    #mobile_feed_section {
        display: none;
    }
}
