ul.item_list{
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.item_list li{
    min-height: 100px;
    background-color: #f5f5f5;
    border: 1px solid #e9e9e9;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 12px;
    transition: all 0.2s;
}
ul.item_list li div.item_title{
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
ul.item_list li div.item_price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: calc(100% - 150px);
}
ul.item_list li div.item_price span.item_price{    font-size: 15px;
    color: #1f2937;
    font-weight: 700;
}
ul.item_list li div.item_price span.item_price::before {
    margin-right: 5px;
    content: "₩";
}
ul.item_list li div.item_price .hidden{
    visibility: hidden;
    width: 15px;
}
ul.item_list li div.item_price i{
    cursor:pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
    margin-left: auto;
}
ul.item_list li div.item_controller{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}
ul.item_list li:hover{
    border-color: #9ca3af;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
span.option-box button{
    width: 36px;
    height: 36px;
    border: none;
    background-color: #fff;
    cursor: pointer;
    font-size: 12px;
    color: #6b7280;
    transition: all 0.2s;
    font-weight: 600;
}
span.option-box button:hover{
    background-color: #f3f4f6;
}
span.option-box input[type=text]{
    width: 60px;
    height: 36px;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: center;
    font-size: 15px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    border-radius: 0;
    padding: 0;
}
.option-box{
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    max-width: 150px;
}