/* 카테고리 페이지 스타일 */
body {
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
}

/* 헤더 스타일 */
.category-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-title {
    font-size: 20px;
    font-weight: 600;
}

/* 카테고리 컨테이너 */
.category-container {
    display: flex;
    position: fixed;
    top: 56px;
    bottom: 50px;
    left: 0;
    right: 0;
    background: #fff;
    max-width: 500px;
    margin: 0 auto;
}

/* 왼쪽 메뉴 */
.category-menu {
    width: 112px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f5f5f5;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.category-menu-item {
    padding: 12px 10px;
    font-size: 14px;
    color: #666;
    text-align: left;
    cursor: pointer;
    word-break: keep-all;
    line-height: 1.3;
    border-bottom: 1px solid #ebebeb;
}

.category-menu-item.active {
    background: #fff;
    color:#ef552b;
    position: relative;
    border-left: 2.5px solid #ef552b;
}

/* 오른쪽 콘텐츠 */
.category-content {
    flex: 1;
    overflow-y: auto;
    padding:12px 16px;
    background: #fff;
}

/* 카테고리 섹션 */
.category-section {
    margin-bottom: 36px;
}

.category-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

/* 상품 그리드 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 15px 0;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 8px;
}

.product-image img {
    width: 85%;
    height: auto;
    object-fit: cover;
}

.hit-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #ef552b;
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 4px;
    border-radius: 2px;
    z-index: 1;
}

.product-name {
    font-size: 13px;
    color: #333;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
}

/* 스크롤바 스타일 */
.category-menu::-webkit-scrollbar,
.category-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}


/* body 스크롤 잠금 */
body.no-scroll {
    overflow: hidden;
    touch-action: none;
}

.sr-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 9998; display: none;
}
#categoryPanel {
    position: fixed; top: 0; left: 0;
    width: 100%; max-width: 500px; height: 100%;
    background: #fff; z-index: 9999; overflow: hidden; /* ★ 랩퍼 스크롤 금지 */
    will-change: transform;
}

/* 실제 스크롤 컨테이너 */
#categoryPanel .category-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
