.top-btn-box {
    display:flex; justify-content: center;
    margin-bottom: 50px;
}
.top-btn-box button {
    margin-right: 10px;
}
.top-btn-box button:last-of-type {
    margin-right: 0;
}
.stay-address-box {
    display:flex; align-items: start;
    margin-top: 5px; margin-bottom: 15px;
}
.stay-address-box img {
    margin-right: 8px;
}
.stay-address-title {
    font-size: 13px; font-weight: 400; color: #333333;
}







/*######################## media ######################*/
@media screen and (max-width: 1023px) {
    .product-list-box {
        grid-template-columns : repeat(3, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .top-btn-box {
        margin-bottom: 0;
    }
    .category-btn {
        display: none;
    }
    .top-banner-box {
        height: 120px;
    }
    .detail-section-inner-box {
        padding: 0 15px;
    }
    .product-search-box {
        display: block;
        padding: 48px 0 2px 0;
        border: none;
    }
    .product-list-box {
        display:unset;
        grid-template-columns: unset;
        padding-bottom: unset;
    }
    .product-image-box {
        max-width: unset;
        margin-bottom: 35px;
    }
    .product-search-right-box label {
        width: 100%;
    }
    .product-search-right-box input {
        max-width: unset;
    }
}