.shop_header {
    position: sticky;
    top: -95px;
    z-index: 100;
    transform: translateZ(0);
    will-change: transform;
}

.shop-head-logo {
    height: 15px;
    padding-left: 10px;
}

#search-section {
    padding: 2px 0 12px 0;
    margin: 0 5px 0 5px;
}

.fake-search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    padding: 4px 8px;
    box-shadow: 0 0 0 1px #e5e5e5;
    text-decoration: none;
}

.search-placeholder {
    color: #777;
    font-size: 14px;
}

.search-icon {
    font-size: 18px;
    color: #ccc;
}

/* 전체 화면 검색 모달 */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* 열릴 때 */
.search-modal.open {
    display: flex;
}

/* 모달 박스 */
.search-modal-inner {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 16px 24px;
    margin: 0 12px;
}

/* 내용 스크롤 여유 */
.search-modal-body {
    max-height: 80vh;
    overflow-y: auto;
}

/* 닫기 버튼 */
.search-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 1;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}