/* [pliki 테마] 상품 목록 / 검색결과 */

.pk-list { padding-top: 30px; }

/* 타이틀 + 대분류 탭 */
.pk-list-hd { text-align: center; margin-bottom: 26px; }
.pk-list-title { font-size: 26px; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
.pk-list-tabs {
    display: flex; justify-content: center; gap: 26px; border-bottom: 1px solid var(--line);
    padding-bottom: 0; overflow-x: auto; scrollbar-width: none;
}
.pk-list-tabs::-webkit-scrollbar { display: none; }
.pk-list-tabs a {
    font-size: 15px; font-weight: 600; color: #555; padding: 8px 2px 12px; white-space: nowrap;
    position: relative;
}
.pk-list-tabs a.active { color: #000; font-weight: 800; }
.pk-list-tabs a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: #000;
}

/* 본문: 필터 + 그리드 */
.pk-list-body { display: flex; gap: 40px; align-items: flex-start; }
.pk-filter { width: 200px; flex-shrink: 0; position: sticky; top: 76px; }
.pk-filter h3 { font-size: 16px; font-weight: 800; padding-bottom: 14px; border-bottom: 1px solid #111; }
.pk-filter-grp { padding: 18px 0; border-bottom: 1px solid var(--line); }
.pk-filter-grp h4 { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 12px; }
.pk-filter-grp li { margin-bottom: 9px; }
.pk-filter-grp a { font-size: 13px; color: #666; }
.pk-filter-grp a.on { color: #000; font-weight: 700; }
.pk-filter-grp a:hover { color: #000; }

.pk-list-main { flex: 1; min-width: 0; }
.pk-list-bar {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.pk-list-cnt { font-size: 14px; color: #333; }
.pk-list-cnt b { font-weight: 800; }
.pk-list-sort { position: relative; }
.pk-sort-btn { font-size: 13px; font-weight: 600; color: #333; display: flex; align-items: center; gap: 6px; }
.pk-sort-menu {
    display: none; position: absolute; right: 0; top: calc(100% + 8px); z-index: 20;
    background: #fff; border: 1px solid var(--line); border-radius: 10px; min-width: 130px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08); padding: 6px;
}
.pk-list-sort.open .pk-sort-menu { display: block; }
.pk-sort-menu a { display: block; padding: 9px 12px; font-size: 13px; color: #444; border-radius: 6px; }
.pk-sort-menu a:hover { background: var(--bg-soft); }
.pk-sort-menu a.on { font-weight: 700; color: #000; }

.pk-grid-list { grid-template-columns: repeat(4, 1fr); gap: 34px 16px; }
.pk-noitem { text-align: center; color: var(--gray); padding: 90px 0; font-size: 14px; }

/* 검색결과 헤더 */
.pk-sch-result-hd { text-align: center; padding: 34px 0 6px; }
.pk-sch-result-hd h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.8px; }
.pk-sch-result-hd h2 em { font-style: normal; color: var(--red); }
.pk-sch-result-hd p { font-size: 13px; color: var(--gray); margin-top: 6px; }

/* 반응형 */
@media (max-width: 1024px) {
    .pk-grid-list { grid-template-columns: repeat(3, 1fr); }
    .pk-list-body { gap: 24px; }
    .pk-filter { width: 170px; }
}
@media (max-width: 768px) {
    .pk-list { padding-top: 18px; }
    .pk-list-title { font-size: 20px; margin-bottom: 12px; }
    .pk-list-tabs { justify-content: flex-start; gap: 18px; }
    .pk-list-body { display: block; }
    /* 필터: 가로 스크롤 칩으로 변환 */
    .pk-filter { width: auto; position: static; margin-bottom: 16px; }
    .pk-filter h3 { display: none; }
    .pk-filter-grp { border: 0; padding: 0 0 4px; }
    .pk-filter-grp h4 { display: none; }
    .pk-filter-grp ul {
        display: flex; gap: 8px; overflow-x: auto; padding: 4px 0; scrollbar-width: none;
    }
    .pk-filter-grp ul::-webkit-scrollbar { display: none; }
    .pk-filter-grp li { margin: 0; }
    .pk-filter-grp a {
        display: inline-block; padding: 7px 13px; border: 1px solid var(--line);
        border-radius: 999px; font-size: 13px; white-space: nowrap; background: #fff;
    }
    .pk-filter-grp a.on { border-color: #000; background: #000; color: #fff; }
    .pk-grid-list { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
}

/* ── 페이지 헤더 (레퍼런스: 좌측 타이틀 + 굵은 언더라인) ── */
.pk-page-hd { border-bottom: 2px solid #111; padding: 30px 0 14px; margin-bottom: 24px; }
.pk-page-hd h2 { font-size: 21px; font-weight: 800; letter-spacing: -0.6px; display: inline; }
.pk-page-hd .sub { color: #888; font-weight: 500; font-size: 17px; }
.pk-page-hd .desc { float: right; font-size: 12px; color: var(--gray); margin-top: 8px; }

/* ── 리뷰 카드 그리드 (레퍼런스: 5열 사진 카드) ── */
.pk-rvgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px 16px; }
.pk-rvgrid > .pk-rvcard { min-width: 0; }  /* 그리드 칸 초과(모바일 가로스크롤) 방지 */
.pk-rvcard-item { min-width: 0; }
.pk-rvcard-thumb { display: block; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: var(--bg-thumb); }
.pk-rvcard-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.pk-rvcard:hover .pk-rvcard-thumb img { transform: scale(1.04); }
.pk-rvcard-item { display: flex; align-items: center; gap: 6px; margin: 10px 0 4px; }
.pk-rvcard-item img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; background: var(--bg-thumb); }
.pk-rvcard-item span { font-size: 12.5px; font-weight: 700; color: #222; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pk-rvcard-score { font-size: 12px; color: #333; margin-bottom: 4px; }
.pk-rvcard-score .st { color: #f5a623; font-weight: 800; }
.pk-rvcard-txt {
    font-size: 12.5px; color: #555; line-height: 1.55; margin-bottom: 7px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pk-rvcard-stars { color: #f5a623; font-size: 12px; margin-bottom: 5px; }
.pk-rvcard-date { font-size: 11.5px; color: #999; }
.pk-rvcard-name { font-size: 11.5px; color: #999; margin-top: 2px; }

/* ── 상품문의 풀폭 테이블 ── */
.pk-qatable { width: 100%; border-top: 2px solid #111; font-size: 13px; }
.pk-qatable th { padding: 13px 8px; font-size: 12px; color: #555; border-bottom: 1px solid var(--line); text-align: center; }
.pk-qatable td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.pk-qatable .t-item { text-align: left; display: flex; align-items: center; gap: 10px; }
.pk-qatable .t-item img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; background: var(--bg-thumb); }
.pk-qatable .t-item span { font-size: 12px; color: var(--gray); }
.pk-qatable .t-subject { text-align: left; font-weight: 600; color: #222; }
.pk-qatable .t-subject .fa-lock { color: #bbb; font-size: 12px; margin-right: 4px; }
.pk-qa-state { display: inline-block; background: var(--badge-bg); color: #888; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.pk-qa-state.ok { background: #111; color: #fff; }

@media (max-width: 1024px) { .pk-rvgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .pk-rvgrid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
    .pk-page-hd { padding: 18px 0 12px; }
    .pk-page-hd h2 { font-size: 18px; }
    .pk-page-hd .desc { display: none; }
    .pk-qatable th:nth-child(1), .pk-qatable td:nth-child(1) { display: none; }
}

/* 이벤트·기획전 목록 */
.pk-evgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 20px; }
.pk-evcard { display: block; min-width: 0; }
.pk-evcard-img {
    display: block; aspect-ratio: 21/9; border-radius: 14px; overflow: hidden; position: relative;
    background: var(--bg-thumb) center/cover no-repeat;
}
.pk-evcard-hot {
    position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff;
    font-style: normal; font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px;
}
.pk-evcard-meta { display: block; padding: 12px 4px 0; }
.pk-evcard-meta b { display: block; font-size: 16px; font-weight: 800; letter-spacing: -0.4px; }
.pk-evcard-meta em { display: block; font-style: normal; font-size: 12.5px; color: var(--gray); margin-top: 3px; }
@media (max-width: 768px) { .pk-evgrid { grid-template-columns: 1fr; } }

/* 이벤트 상세(event.php) — 코어 출력 구조 스타일 */
#sev_hhtml, #sev_thtml { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
#sev_hhtml { margin-top: 26px; }
#sct_sortlst { max-width: 1200px; margin: 18px auto 6px; padding: 0 20px; }
#sct_sort h2 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
#ssch_sort { display: flex; gap: 8px; flex-wrap: wrap; list-style: none; padding: 0; }
#ssch_sort li a {
    display: inline-block; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
    font-size: 12.5px; color: #555; background: #fff;
}
#ssch_sort li a:hover { border-color: #111; color: #111; }
#container_wr > .pk-grid, #sct_sortlst ~ .pk-grid { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 8px 20px 40px; }

/* ══ 2026-09 SHOP 리스트 개편 (레퍼런스 big_section) ══ */
/* 퀵 아이콘 슬라이드 */
.pk-shopquick { position: relative; padding: 6px 44px 30px; margin: 0 0 30px; max-width: none; width: 100%; background: var(--bg-soft); border-radius: 14px; }
.pk-shopquick .swiper-wrapper { list-style: none; }
.pk-shopquick li a { display: block; text-align: center; }
.pk-shopquick-img { display: block; width: 64px; height: 64px; margin: 14px auto 8px; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.pk-shopquick-img.round { border-radius: 50%; }
.pk-shopquick-img img { width: 100%; height: 100%; object-fit: cover; }
.pk-shopquick li em { display: block; font-style: normal; font-size: 12.5px; font-weight: 600; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pk-shopquick .swiper-pagination { bottom: 8px; }
.pk-shopquick .swiper-pagination-bullet { width: 6px; height: 6px; background: #bbb; opacity: 1; }
.pk-shopquick .swiper-pagination-bullet-active { background: #111; }
.pk-shopquick-prev, .pk-shopquick-next { position: absolute; top: 50%; transform: translateY(-60%); z-index: 2; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1px solid var(--line); font-size: 16px; color: #555; display: flex; align-items: center; justify-content: center; }
.pk-shopquick-prev { left: 8px; } .pk-shopquick-next { right: 8px; }

/* 필터 사이드바 — 칩 / 체크박스 / 접힘 */
.pk-filter-chips { display: flex; gap: 6px; flex-wrap: wrap; padding: 14px 0 6px; }
.pk-filter-chips a { display: inline-flex; align-items: center; gap: 4px; padding: 7px 12px; border-radius: 999px; background: var(--bg-soft); font-size: 12.5px; color: #555; font-weight: 600; }
.pk-filter-chips a i { color: #0a8; font-size: 11px; }
.pk-filter-chips a.on { background: #111; color: #fff; }
.pk-filter-chips a.on i { color: #fff; }
.pk-filter-grp h4 { display: flex; align-items: center; justify-content: space-between; cursor: default; }
.pk-filter-tg { width: 18px; height: 18px; position: relative; color: #999; }
.pk-filter-tg::before { content: '+'; font-size: 16px; line-height: 18px; font-weight: 400; }
.pk-filter-grp.open .pk-filter-tg::before { content: '−'; }
.pk-filter-cur { font-size: 12.5px; color: var(--gray-l); margin: -4px 0 6px; }
.pk-filter-grp.open .pk-filter-cur { display: none; }
.pk-filter-checks { display: none; }
.pk-filter-grp.open .pk-filter-checks { display: block; }
.pk-filter-checks li a { display: flex; align-items: center; gap: 8px; }
.pk-filter-checks .chk { width: 15px; height: 15px; border: 1px solid #ccc; border-radius: 3px; background: #fff; flex-shrink: 0; position: relative; }
.pk-filter-checks a.on .chk { background: #111; border-color: #111; }
.pk-filter-checks a.on .chk::after { content: ''; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.pk-sort-btn .fa-sort { font-size: 12px; color: #888; }

@media (max-width: 768px) {
    .pk-shopquick { padding: 4px 8px 26px; border-radius: 10px; }
    .pk-shopquick-prev, .pk-shopquick-next { display: none; }
    .pk-shopquick-img { width: 54px; height: 54px; }
}
@media (max-width: 768px) {
    .pk-filter { width: auto; position: static; margin-bottom: 14px; }
    .pk-filter h3 { display: none; }
    .pk-filter-chips { padding: 4px 0 8px; }
    .pk-filter-grp { padding: 8px 0; border-bottom: 0; }
    .pk-filter-grp h4 { font-size: 12.5px; margin-bottom: 8px; }
    .pk-filter-grp .pk-filter-tg { display: none; }
    .pk-filter-cur { display: none; }
    .pk-filter-checks { display: flex !important; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
    .pk-filter-checks::-webkit-scrollbar { display: none; }
    .pk-filter-checks li { margin: 0; flex-shrink: 0; }
    .pk-filter-checks li a { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; white-space: nowrap; }
    .pk-filter-checks li a.on { background: #111; color: #fff; border-color: #111; }
    .pk-filter-checks .chk { display: none; }
}

/* ================================================================
   [pliki 테마] 상품유형 페이지 (listtype.php) — 히어로/탭/브랜드 칩/랭킹
   ================================================================ */
.pk-type-hero {
    position: relative; overflow: hidden; background: #f1f0e7 center/cover no-repeat;
    min-height: 380px; display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 40px 20px; margin-bottom: 0;
}
.pk-type-hero.pk-type-2 { background-color: #ece9e3; }
.pk-type-hero.pk-type-3 { background-color: #eef0ec; }
.pk-type-hero.pk-type-4 { background-color: #f3ece6; }
.pk-type-hero.pk-type-5 { background-color: #f6e9e6; }
.pk-type-hero.has-bn::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.pk-type-hero.has-bn .pk-type-hero-txt { color: #fff; }
.pk-type-hero.has-bn .pk-type-eyebrow, .pk-type-hero.has-bn .pk-type-desc { color: rgba(255,255,255,.85); }
.pk-type-hero-txt { position: relative; z-index: 2; max-width: 720px; }
.pk-type-collage { display: flex; justify-content: center; gap: 18px; margin-bottom: 22px; position: relative; z-index: 1; }
.pk-type-collage a { width: 150px; height: 150px; border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.08); transition: transform .3s ease; }
.pk-type-collage a img { width: 100%; height: 100%; object-fit: cover; }
.pk-type-collage a.c1 { transform: rotate(-6deg) translateY(10px); }
.pk-type-collage a.c2 { transform: rotate(3deg) translateY(-8px); }
.pk-type-collage a.c3 { transform: rotate(-2deg) translateY(6px); }
.pk-type-collage a.c4 { transform: rotate(5deg) translateY(-4px); }
.pk-type-collage a:hover { transform: rotate(0) translateY(-6px) scale(1.04); }
.pk-type-hero .pk-type-collage + .pk-type-hero-txt { margin-top: 0; }
.pk-type-hero { flex-direction: column; }
.pk-type-eyebrow { font-size: 14px; color: #666; letter-spacing: -0.3px; margin-bottom: 8px; }
.pk-type-title { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.pk-type-desc { font-size: 14px; color: #555; margin-top: 12px; }
.pk-type-cta {
    display: inline-block; margin-top: 18px; background: #111; color: #fff; font-size: 13px; font-weight: 700;
    padding: 11px 24px; border-radius: 6px; transition: background .2s, transform .2s;
}
.pk-type-cta:hover { background: #333; transform: translateY(-1px); }

.pk-typelist { padding-top: 26px; }
.pk-type-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.pk-type-tabs a {
    font-size: 14px; font-weight: 600; color: #444; border: 1px solid var(--line); border-radius: 999px;
    padding: 9px 20px; background: #fff; transition: all .2s;
}
.pk-type-tabs a:hover { border-color: #111; color: #111; }
.pk-type-tabs a.active { background: #111; color: #fff; border-color: #111; }
.pk-type-bar { padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.pk-type-brands { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.pk-type-brands a { font-size: 12px; font-weight: 600; color: #555; padding: 6px 12px; border-radius: 999px; background: var(--bg-soft); transition: all .2s; }
.pk-type-brands a:hover { background: #e9e9ea; color: #111; }
.pk-type-brands a.on { background: #111; color: #fff; }

/* 랭킹 뱃지 (카드 썸네일 좌상단) */
.pk-rank {
    position: absolute; top: 0; left: 0; z-index: 3; min-width: 34px; height: 34px; padding: 0 8px;
    background: rgba(255,255,255,.94); color: #111; font-size: 15px; font-weight: 800; line-height: 34px; text-align: center;
    border-radius: var(--radius) 0 10px 0; font-variant-numeric: tabular-nums;
}
.pk-rank.top { background: #111; color: #fff; }
.pk-card-thumb:has(.pk-rank) .pk-badge-new { left: auto; right: 10px; }

.pk-empty .pk-btn-line { display: inline-block; margin-top: 16px; padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; }

@media (max-width: 768px) {
    .pk-type-hero { min-height: 0; padding: 30px 20px 32px; }
    .pk-type-collage { gap: 10px; margin-bottom: 16px; }
    .pk-type-collage a { width: 76px; height: 76px; border-radius: 12px; }
    .pk-type-title { font-size: 28px; }
    .pk-type-eyebrow { font-size: 12px; }
    .pk-type-desc { font-size: 12px; margin-top: 8px; }
    .pk-type-cta { margin-top: 14px; padding: 9px 18px; font-size: 12px; }
    .pk-typelist { padding-top: 18px; }
    .pk-type-tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 0 -14px 22px; padding: 0 14px; }
    .pk-type-tabs::-webkit-scrollbar { display: none; }
    .pk-type-tabs a { flex: 0 0 auto; padding: 8px 16px; font-size: 13px; }
    .pk-type-brands { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin: 0 -14px 18px; padding: 0 14px; }
    .pk-type-brands::-webkit-scrollbar { display: none; }
    .pk-type-brands a { flex: 0 0 auto; }
    .pk-rank { min-width: 28px; height: 28px; line-height: 28px; font-size: 13px; }
}

/* ================================================================
   [pliki 테마] 쿠폰존 (couponzone.php) — 히어로/탭/티켓
   ================================================================ */
.pk-cz-hero {
    position: relative; overflow: hidden; background: #141414 center/cover no-repeat; color: #fff;
    min-height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px;
}
.pk-cz-hero:not(.has-bn)::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.10), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,48,48,.25), transparent 45%);
}
.pk-cz-hero.has-bn::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.pk-cz-hero-txt { position: relative; z-index: 2; }
.pk-cz-hero .pk-type-eyebrow { color: rgba(255,255,255,.7); letter-spacing: .12em; font-size: 12px; font-weight: 600; }
.pk-cz-hero .pk-type-desc { color: rgba(255,255,255,.8); }
.pk-cz-tabs { display: flex; border-bottom: 1px solid var(--line); }
.pk-cz-tabs a { flex: 1; text-align: center; padding: 16px 10px; font-size: 14px; font-weight: 700; color: #555; background: #fff; transition: background .2s, color .2s; }
.pk-cz-tabs a:hover { color: #111; }
.pk-cz-tabs a.active { background: #111; color: #fff; }

.pk-couponzone { padding-top: 40px; }
.pk-cz-sec { margin-bottom: 56px; }
.pk-cz-sec-hd { margin-bottom: 20px; }
.pk-cz-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--red); }
.pk-cz-sec-hd h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.8px; margin-top: 4px; }
.pk-cz-sec-hd p { font-size: 13px; color: var(--gray); margin-top: 6px; }
.pk-cz-sec-hd p b { color: #111; }
.pk-cz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pk-tk {
    display: flex; background: #141414; color: #fff; border-radius: 14px; overflow: hidden; min-height: 150px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.pk-tk:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.pk-tk-main { flex: 1; padding: 22px 22px 18px; position: relative; min-width: 0; }
.pk-tk-img { position: absolute; right: 16px; top: 16px; width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.pk-tk-val { display: block; font-size: 34px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.pk-tk-val small { font-size: 16px; font-weight: 700; margin-left: 2px; letter-spacing: 0; }
.pk-tk-name { font-size: 15px; font-weight: 700; margin-top: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pk-tk-meta { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 5px; }
.pk-tk-meta a { color: rgba(255,255,255,.85); text-decoration: underline; }
.pk-tk-date { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 8px; }
.pk-tk-date b { color: #ffe500; }
.pk-tk-btn {
    flex: 0 0 84px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    border: 0; border-left: 1px dashed rgba(255,255,255,.28); background: transparent; color: #fff; cursor: pointer;
    font-size: 12px; font-weight: 700; position: relative; transition: background .2s;
}
.pk-tk-btn i { font-size: 20px; }
.pk-tk-btn::before, .pk-tk-btn::after { content: ""; position: absolute; left: -9px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.pk-tk-btn::before { top: -9px; } .pk-tk-btn::after { bottom: -9px; }
.pk-tk-btn:hover { background: rgba(255,255,255,.08); }
.pk-tk-btn.disabled, .pk-tk-btn:disabled { cursor: default; color: rgba(255,255,255,.45); }
.pk-tk-btn.disabled:hover { background: transparent; }
.pk-tk.is-down { background: #3a3a3a; }
.pk-tk.is-point { background: #fff; color: #111; border: 1px solid var(--line); }
.pk-tk.is-point .pk-tk-meta { color: #777; } .pk-tk.is-point .pk-tk-meta a { color: #333; }
.pk-tk.is-point .pk-tk-date { color: #999; } .pk-tk.is-point .pk-tk-date b { color: var(--red); }
.pk-tk.is-point .pk-tk-btn { color: #111; border-left-color: #ddd; }
.pk-tk.is-point .pk-tk-btn:hover { background: var(--bg-soft); }
.pk-tk.is-point .pk-tk-btn::before, .pk-tk.is-point .pk-tk-btn::after { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.pk-tk.is-point.is-down { background: var(--bg-soft); }
.pk-tk.is-common { background: #fff8e0; color: #111; }
.pk-tk.is-common .pk-tk-meta { color: #8a7a3a; } .pk-tk.is-common .pk-tk-date { color: #a09060; }
.pk-tk.is-common .pk-tk-btn { color: #111; border-left-color: #e5d9a8; }
.pk-tk.is-common .pk-tk-btn::before, .pk-tk.is-common .pk-tk-btn::after { background: #fff; }

.pk-cz-guide { background: var(--bg-soft); border-radius: 16px; padding: 30px 34px; margin-bottom: 30px; }
.pk-cz-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 24px; border-bottom: 1px solid #e3e3e5; margin-bottom: 20px; }
.pk-cz-steps > div { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; }
.pk-cz-steps b { grid-row: 1 / 3; font-size: 22px; font-weight: 800; color: #111; letter-spacing: -1px; }
.pk-cz-steps strong { font-size: 14px; font-weight: 700; }
.pk-cz-steps span { font-size: 12px; color: var(--gray); }
.pk-cz-rules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; }
.pk-cz-rules > div { display: flex; gap: 14px; font-size: 13px; }
.pk-cz-rules dt { flex: 0 0 72px; color: var(--gray); }
.pk-cz-rules dd { color: #333; }
.pk-cz-link { font-weight: 700; color: #111; }

@media (max-width: 1024px) { .pk-cz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .pk-cz-hero { min-height: 0; padding: 34px 20px; }
    .pk-cz-tabs a { padding: 13px 8px; font-size: 13px; }
    .pk-couponzone { padding-top: 28px; }
    .pk-cz-sec { margin-bottom: 40px; }
    .pk-cz-sec-hd h3 { font-size: 19px; }
    .pk-cz-grid { grid-template-columns: 1fr; gap: 12px; }
    .pk-tk { min-height: 0; }
    .pk-tk-main { padding: 18px 18px 16px; }
    .pk-tk-val { font-size: 28px; }
    .pk-tk-btn { flex-basis: 72px; }
    .pk-cz-guide { padding: 22px 20px; }
    .pk-cz-steps { grid-template-columns: 1fr; gap: 14px; }
    .pk-cz-rules { grid-template-columns: 1fr; }
}
/* 고객센터 레이아웃 안의 후기/문의 목록 폭 보정 */
.pk-cs .pk-rvgrid { grid-template-columns: repeat(4, 1fr); }
.pk-cs .pk-qatable th:first-child { width: 260px; }
@media (max-width: 1024px) { .pk-cs .pk-rvgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .pk-cs .pk-rvgrid { grid-template-columns: repeat(2, 1fr); } }
/* 고객센터 레이아웃 안에서는 제목 바 밑선(2px)이 있으므로 표/목록의 굵은 윗선 제거 → 이중선 방지 */
.pk-cs .pk-qatable { border-top: 0; }
.pk-cs .pk-qatable thead th { padding-top: 16px; }
