.mobile_category_section {
    display: none;
    background: #ffffff;
    padding: 10px 0 6px;
    overflow: hidden;
}

.mobile_category_slider_outer {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mobile_category_slider_track {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.mobile_category_page {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 8px;
}

.mobile_category_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px 4px;
    align-items: start;
}

.mobile_category_item {
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile_category_icon_wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

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

.mobile_category_text {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    color: #222222;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 29px;
    max-width: 62px;
    word-break: break-word;
}

.mobile_category_item.active .mobile_category_text {
    color: #111111;
    font-weight: 600;
}

.mobile_category_dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.mobile_category_dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: #d9d9d9;
    transition: all 0.25s ease;
}

.mobile_category_dot_active {
    width: 18px;
    background: #ff4d6d;
}

@media (max-width: 768px) {
    .mobile_category_section {
        display: block;
    }
}

@media (max-width: 360px) {
    .mobile_category_icon_wrap {
        width: 52px;
        height: 52px;
    }

    .mobile_category_text {
        font-size: 11px;
        max-width: 58px;
    }
}