/* BASIC css start */
/* ½½¶óÀÌµå ¸Þ´º - °¡·Î ½ºÅ©·Ñ Ä«µå ÇüÅÂ */
.smenu-warp {
    margin: 10px auto;
    padding: 20px 0 10px 0; /* ½ºÅ©·Ñ¹Ù°¡ »ý±â¹Ç·Î ÇÏ´Ü ¿©¹é »ìÂ¦ Á¶Àý */
    background-color: #fff;
    overflow-x: auto;
    overflow-y: hidden;
}

/* ¡Ú Ä¿½ºÅÒ ½ºÅ©·Ñ¹Ù Ãß°¡ ¡Ú */
.smenu-warp::-webkit-scrollbar {
    height: 3px; /* ½ºÅ©·Ñ¹Ù µÎ²² (¾ã°Ô) */
}
.smenu-warp::-webkit-scrollbar-track {
    background: #f0f0f0; /* ½ºÅ©·Ñ¹Ù µÞ ¹è°æ (Æ®·¢) */
    border-radius: 3px;
    margin: 0 15px; /* ÁÂ¿ì ³¡¿¡ »ìÂ¦ ¿©¹é ÁÖ±â */
}
.smenu-warp::-webkit-scrollbar-thumb {
    background: #c1c1c1; /* ½ºÅ©·Ñ¹Ù ¼ÕÀâÀÌ »ö»ó (È¸»ö) */
    border-radius: 3px;
}
.smenu-warp::-webkit-scrollbar-thumb:hover {
    background: #a5a5a5; /* ¸¶¿ì½º ¿Ã·ÈÀ» ¶§ »ìÂ¦ ÁøÇÏ°Ô */
}

/* inner ºÎºÐ¿¡´Â Áßº¹ ½ºÅ©·Ñ ¼Ó¼º Á¦°Å */
.smenu-warp-inner {
    display: flex;
    gap: 12px;
    flex-direction: row;
    padding: 0 15px 15px 15px; /* ½ºÅ©·Ñ¹Ù¿Í ¾ÆÀÌÅÛ °£°Ý À§ÇØ ÇÏ´Ü ÆÐµù Ãß°¡ */
    overflow: visible; /* ºÎ¸ð¿¡¼­ ½ºÅ©·ÑÇÏ¹Ç·Î ¿©±â¼± Á¦°Å */
}

.smenu-warp-inner-box {
    display: flex;
    gap: 12px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.smenu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 80px;
    text-align: center;
}

.smenu-box-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smenu-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smenu-box-txt {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    color: #333;
    font-weight: 500;
    word-break: keep-all;
    white-space: nowrap;
}

.smenu-txt {
    /* ÅØ½ºÆ® ³»ºÎ ½ºÅ¸ÀÏ */
}

/* BASIC css end */

