/* 카테고리 전체보기 (shop/category_main.php) */
.cm-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0 80px;
    background: #fafafa;
    min-height: 100vh;
}
.cm-top-bar {
    display: flex;
    align-items: center;
    padding: 14px 16px 12px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.cm-top-bar h1 {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
}
.cm-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    padding: 0;
    width: 36px;
}
.cm-top-bar-spacer {
    width: 36px;
    flex-shrink: 0;
}
.cm-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #8B5CF6;
    padding: 18px 16px 10px;
    letter-spacing: 0.03em;
}
.cm-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 16px 16px;
}
.cm-cat-card {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 14px;
    padding: 11px 12px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0ecff;
    transition: transform 0.18s, box-shadow 0.18s;
}
.cm-cat-card:hover,
.cm-cat-card:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.13);
    border-color: #c4b5fd;
}
.cm-cat-img-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f0ff;
    border: 2px solid #ede9fe;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cm-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cm-cat-info {
    flex: 1;
    min-width: 0;
}
.cm-cat-label {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    word-break: keep-all;
}
.cm-cat-arrow {
    font-size: 18px;
    color: #c4b5fd;
}
