.mobile-quick-menu-section {
    width: 100%;
    background: #ffffff;
    margin: 10px 0;
    padding: 0;
}

.mobile-quick-menu {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.mobile-quick-menu-scroll {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 8px 10px;
    box-sizing: border-box;
}

.mobile-quick-menu-item {
    flex: 1 1 0;
    min-width: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mobile-quick-menu-image-wrapper {
    width: 82%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-quick-menu-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mobile-quick-menu-text {
    width: 100%;
    margin-top: 6px;
    font-size: clamp(10px, 2.5vw, 14px);
    line-height: 1.1;
    font-weight: 500;
    font-family: "Open Sans";
    color: #1a1a1a;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .mobile-quick-menu-scroll {
        padding: 10px 6px 8px;
    }

    .mobile-quick-menu-image-wrapper {
        width: 84%;
    }

    .mobile-quick-menu-text {
        margin-top: 5px;
        font-size: clamp(9px, 2.8vw, 13px);
    }
}

@media (max-width: 360px) {
    .mobile-quick-menu-scroll {
        padding: 8px 4px 7px;
    }

    .mobile-quick-menu-image-wrapper {
        width: 86%;
    }

    .mobile-quick-menu-text {
        font-size: 9px;
    }
}

@media (min-width: 768px) {
    .mobile-quick-menu-section {
        display: none;
    }
}