@charset "utf-8";
/* =========================================================================
   pliki8 테마 — 메인 페이지 전용 스타일 (M3)
   ---------------------------------------------------------------------------
   출처: design/pliki-canvas/Main.dc.html       (PC 1280 실측)
        design/pliki-canvas/MobileHome.dc.html (모바일 390 실측)
        docs/pliki8-analysis/02-main-page.md
        docs/PRD.md FR-01 / FR-13 / NFR-01

   방침
     - 모바일 퍼스트. 좌우 스크롤(가로 넘침) 금지 — 가로 진열은 항상
       자기 컨테이너 안에서만 스크롤한다.
     - 디자인 토큰(--c-*, --fs-*, --pad-*)은 css/theme.css 것을 그대로 쓴다.
     - Swiper 는 진행형 향상. 이 CSS만으로도(=JS 없이도) 가로 스크롤 스트립이
       정상 동작하며, Swiper 가 붙으면 그때부터 스와이퍼로 승격된다.
   ========================================================================= */

/* -------------------------------------------------------------------------
   0. Swiper 최소 호환 스타일
   swiper-bundle.min.css 를 따로 받지 않고 필요한 규칙만 직접 갖는다.
   (CDN CSS 를 늦게 주입하면 .swiper-slide{width:100%} 가 카드 폭을 덮어써
    레이아웃이 튀기 때문에, 우선순위를 이 파일 안에서 통제한다 — NFR-03)
   ------------------------------------------------------------------------- */
.swiper { position: relative; z-index: 1; display: block; overflow: hidden; padding: 0; list-style: none; }
.swiper-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    transition-property: transform;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper { transform: translate3d(0, 0, 0); }
.swiper-horizontal { touch-action: pan-y; }
.swiper-slide {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    transition-property: transform;
}
/* fade 효과 (히어로 배너) */
.swiper-fade .swiper-slide { pointer-events: none; transition-property: opacity; }
.swiper-fade .swiper-slide-active { pointer-events: auto; }

/* -------------------------------------------------------------------------
   1. 메인 래퍼
   ------------------------------------------------------------------------- */
.pk-main { display: block; }

/* 섹션 사이 여백은 .pk-sect(theme.css)가 이미 갖고 있으므로 여기서는
   메인에서만 필요한 보정만 한다.
   배너가 0개라 퀵메뉴가 맨 위로 올라오는 경우 위쪽 여백이 겹쳐 보이지 않게 한다. */
.pk-main > .pk-quick:first-child { padding-top: 0; }

/* -------------------------------------------------------------------------
   2. 메인 비주얼 배너 (히어로) — FR-13
   PC   1240×480 가로형 / 모바일 1:1
   .pk-inner(최대 1280 · 좌우 패딩) 안에 있으므로 패딩만큼 밖으로 빼서 풀블리드로 만든다.
   (viewport 단위를 쓰지 않으므로 어떤 화면에서도 가로 스크롤이 생기지 않는다)
   ------------------------------------------------------------------------- */
.pk-hero {
    position: relative;
    /* .pk-page 의 상단 패딩(모바일 24px)을 상쇄해 헤더에 붙인다 */
    margin: -24px calc(var(--pad-mobile) * -1) 0;
    background: #191a1c;
}

@media (min-width: 768px) {
    .pk-hero { margin-top: -40px; }
}

@media (min-width: 1024px) {
    .pk-hero {
        left: 50%;
        width: calc(100% + (var(--content-pad) * 2));
        max-width: 1240px;
        margin-left: 0;
        margin-right: 0;
        transform: translateX(-50%);
    }
}

/* 히어로 폭 정책
   PC는 디자인 시스템의 배너 권장 규격(1240×480)을 상한으로 삼고 콘텐츠
   중앙에 정렬한다. 1024px에서는 뷰포트 너비까지만 확장된다.
   레퍼런스처럼 화면 끝까지 채우려면 아래 3줄의 주석을 풀면 된다.
   (body 에 overflow-x:hidden 이 걸려 있어 100vw 로 인한 가로 스크롤은 생기지 않는다)

.pk-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
*/

.pk-hero__view {
    position: relative;
    overflow: hidden;
    background: #191a1c;
}

/* 트랙/슬라이드 — Swiper 초기화 전에는 첫 장만 보인다 */
.pk-hero__track { display: flex; width: 100%; height: 100%; margin: 0; padding: 0; }
.pk-hero .pk-hero__slide { flex: 0 0 100%; width: 100%; height: 100%; }

.pk-hero__link { display: block; width: 100%; height: 100%; }
.pk-hero__picture { display: block; width: 100%; height: 100%; }
.pk-hero__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pk-hero__img.is-border { border: 1px solid rgba(255, 255, 255, .25); }

/* 배너 이미지는 무문자 원본으로 운영하고, 관리자 bn_alt 의 `제목 · 설명`을
   HTML 로 올린다. 레티나에서도 선명하며 교체 시 타이포가 흔들리지 않는다. */
.pk-hero__shade,
.pk-hero__copy { display: none; }

@media (min-width: 768px) {
    .pk-hero__shade {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: block;
        background: linear-gradient(90deg, rgba(7, 8, 10, .62) 0%, rgba(7, 8, 10, .42) 34%, rgba(7, 8, 10, 0) 70%);
        pointer-events: none;
    }
    .pk-hero__copy {
        position: absolute;
        top: 50%;
        left: 40px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        max-width: min(48%, 560px);
        color: #fff;
        transform: translateY(-50%);
        pointer-events: none;
    }
    .pk-hero__copy strong {
        font-size: clamp(36px, 4vw, 52px);
        line-height: 1.08;
        font-weight: 600;
        letter-spacing: .015em;
        text-shadow: 0 2px 18px rgba(0, 0, 0, .2);
        word-break: keep-all;
    }
    .pk-hero__copy span {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.5;
        color: rgba(255, 255, 255, .82);
    }
}

@media (min-width: 1280px) {
    /* 1240px 히어로의 시작점보다 20px 안쪽 = 1200px 본문 시작선 */
    .pk-hero__copy { left: 20px; }
}

/* 비율 — 권장 규격(PC 1240×480 / 모바일 1:1)을 기본값으로 두되,
   실제 업로드한 배너의 비율(--pk-hero-ar, 스킨이 첫 배너 크기로 인라인 지정)이
   있으면 그것을 쓴다. 규격과 다른 이미지를 올려도 심하게 잘리지 않는다. */
.pk-hero__view--mo  { aspect-ratio: var(--pk-hero-ar, 1 / 1); }
.pk-hero__view--pc  { aspect-ratio: var(--pk-hero-ar, 1240 / 480); }
.pk-hero__view--all { aspect-ratio: var(--pk-hero-ar, 1240 / 480); }

.pk-hero__view--pc { display: none; }

@media (min-width: 768px) {
    .pk-hero__view--mo { display: none; }
    .pk-hero__view--pc { display: block; }
}

/* 하단 중앙 진행 인디케이터 (바 + n / total) */
.pk-hero__ui {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: none;
}
.pk-hero__bar {
    display: block;
    position: relative;
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
}
.pk-hero__bar i {
    display: block;
    height: 2px;
    background: #fff;
    transition: width .3s ease;
}
.pk-hero__count { font-size: 11px; color: rgba(255, 255, 255, .7); }
.pk-hero__count b { font-weight: 600; color: #fff; }

@media (min-width: 768px) {
    .pk-hero__ui { bottom: 28px; gap: 12px; }
    .pk-hero__bar { width: 200px; }
    .pk-hero__count { font-size: 12px; }
}

/* 좌우 이동 버튼 — PC 전용(모바일은 swipe) */
.pk-hero__nav {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .28);
    color: #fff;
    align-items: center;
    justify-content: center;
}
.pk-hero__nav:hover { background: rgba(0, 0, 0, .5); color: #fff; }
.pk-hero__nav[hidden] { display: none; }
.pk-hero__nav--prev { left: 16px; }
.pk-hero__nav--next { right: 16px; }

@media (min-width: 1024px) {
    .pk-hero__nav:not([hidden]) { display: flex; }
    .pk-hero__nav--prev { left: 24px; }
    .pk-hero__nav--next { right: 24px; }
}

/* -------------------------------------------------------------------------
   3. 퀵메뉴
   모바일 : 5열 원형 아이콘 + 11px 라벨 (MobileHome.dc.html)
   PC     : 5열 × 2행 카드(높이 110px) + 13px 라벨 (Main.dc.html)
   ------------------------------------------------------------------------- */
.pk-quick { padding: 20px 0; }

.pk-quick__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pk-quick__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: var(--c-text);
}

.pk-quick__fig {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(56px, 13vw, 72px);
    height: clamp(56px, 13vw, 72px);
    max-width: 100%;
    border-radius: 50%;
    background: var(--c-thumb-bg);
    color: #4a4a4f;
    box-shadow: inset 0 0 0 1px rgba(49, 39, 28, .1), 0 4px 12px rgba(49, 39, 28, .06);
    overflow: hidden;
}
.pk-quick__fig picture {
    display: block;
    width: 100%;
    height: 100%;
}
.pk-quick__fig img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.pk-quick__svg { display: block; }

.pk-quick__label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--c-text);
    text-align: center;
    word-break: keep-all;
}

.pk-quick__link:hover .pk-quick__fig { background: #e9e9ec; }

@media (min-width: 768px) {
    .pk-quick { padding: 40px 0; }
    .pk-quick__list { column-gap: 20px; row-gap: 24px; }

    .pk-quick__link { gap: 0; }

    /* PC 는 개별 2:1 원본 비율을 그대로 쓰고, 이미지가 없는 항목만 SVG 아이콘으로 대체한다. */
    .pk-quick__fig {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        border-radius: var(--radius-thumb);
        background: linear-gradient(135deg, #e8e9ec 0%, #c9cbd0 100%);
        box-shadow: inset 0 0 0 1px rgba(49, 39, 28, .08);
        transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    }
    .pk-quick__svg {
        width: 34px;
        height: 34px;
        opacity: .78;
        transition: transform .25s ease;
    }
    .pk-quick__item:nth-child(5n + 1) .pk-quick__fig {
        background: linear-gradient(135deg, #1b1c20 0%, #55585f 100%);
        color: #fff;
    }
    .pk-quick__item:nth-child(5n + 2) .pk-quick__fig {
        background: linear-gradient(135deg, #ece8e3 0%, #bab2a9 100%);
    }
    .pk-quick__item:nth-child(5n + 3) .pk-quick__fig {
        background: linear-gradient(135deg, #e1e5ea 0%, #aeb5bd 100%);
    }
    .pk-quick__item:nth-child(5n + 4) .pk-quick__fig {
        background: linear-gradient(135deg, #f1f1f2 0%, #c9c9cc 100%);
    }
    .pk-quick__item:nth-child(5n) .pk-quick__fig {
        background: linear-gradient(135deg, #303137 0%, #85878d 100%);
        color: #fff;
    }
    .pk-quick__link:hover .pk-quick__fig {
        box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
        filter: brightness(1.04);
        transform: translateY(-2px);
    }
    .pk-quick__link:hover .pk-quick__svg { transform: scale(1.08); }
    .pk-quick__label { margin-top: 8px; font-size: 13px; }
}

/* -------------------------------------------------------------------------
   4. 상품 스와이퍼 스트립
   카드 200px / 간격 10px (PC) · 카드 150px (모바일) — 02-main-page.md 실측
   Swiper 가 붙기 전에는 native 가로 스크롤로 동작한다.
   ------------------------------------------------------------------------- */
.pk-strip { position: relative; }

.pk-strip__view {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* 모바일은 화면 오른쪽 끝까지 흘려 다음 카드가 살짝 보이게 한다 (캔버스) */
    margin-right: calc(var(--pad-mobile) * -1);
    padding-right: var(--pad-mobile);
}
.pk-strip__view::-webkit-scrollbar { display: none; height: 0; }

/* Swiper 초기화 이후에는 Swiper 가 위치를 제어한다.
   음수 마진(오른쪽 흘림)은 그대로 두고 padding 만 없앤다 — 그래야 모바일에서
   다음 카드가 화면 끝에 살짝 걸쳐 보이는 캔버스 그대로의 모습이 된다. */
.pk-strip__view.swiper-initialized {
    overflow: hidden;
    padding-right: 0;
}

.pk-strip__track {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pk-strip__view.swiper-initialized .pk-strip__track { gap: 0; } /* spaceBetween 이 대신한다 */

/* 카드 폭/레이아웃 — 위 .swiper-slide 기본값(width:100% · display:block)을
   반드시 덮어야 하므로 선택자를 한 단계 더 구체적으로 쓴다. */
.pk-strip .pk-strip__item {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 150px;
    height: auto;
}

@media (min-width: 768px) {
    .pk-strip__view,
    .pk-strip__view.swiper-initialized { margin-right: 0; padding-right: 0; }
    .pk-strip .pk-strip__item { width: 200px; }
}

/* PC 메인에서는 다섯 카드가 콘텐츠 폭을 정확히 채우도록 한다.
   고정 200px은 1024~1280 구간에서 우측에 어색한 빈 공간 또는 잘린 카드를 만든다. */
@media (min-width: 1024px) {
    .pk-strip .pk-strip__item { width: calc((100% - 40px) / 5); }
}

/* 좌우 이동 버튼 — PC 전용 */
.pk-strip__nav {
    display: none;
    position: absolute;
    top: 82px;             /* 200px 정사각 썸네일의 세로 중앙 (100 - 18) */
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .16);
    color: var(--c-text-strong);
    align-items: center;
    justify-content: center;
}
.pk-strip__nav[hidden] { display: none; }
.pk-strip__nav--prev { left: -18px; }
.pk-strip__nav--next { right: -18px; }
/* main.js 가 Swiper navigation 에 넘기는 상태 클래스 */
.pk-strip__nav.is-off { opacity: .28; cursor: default; }
.pk-strip__nav.is-lock { display: none !important; } /* 스크롤할 것이 없으면 감춘다 */

@media (min-width: 1024px) {
    .pk-strip__nav:not([hidden]) { display: flex; }
}

/* 스트립 섹션은 카드 그리드보다 아래 여백을 조금 줄인다 */
.pk-sect--strip { padding-bottom: 20px; }

@media (min-width: 768px) {
    .pk-sect--strip { padding-bottom: 32px; }
}

@media (min-width: 768px) {
    .pk-sect--category,
    .pk-sect--brand:not(.pk-sect--foryou) {
        border-top: 1px solid var(--c-border);
    }
    .pk-sect--category .pk-sect__title { font-size: 22px; }
}

/* -------------------------------------------------------------------------
   5. For You
   모바일 1묶음(3열×2행) / PC 2묶음 동시 노출 — pliki8.com 실측
   ------------------------------------------------------------------------- */
.pk-sect--foryou,
.pk-sect--brand {
    width: 100%;
    max-width: none;
}

.pk-sect--foryou {
    padding-top: 20px;
    padding-bottom: 30px;
    background: #fff;
}

.pk-foryou__panel {
    padding: 16px;
    border-radius: var(--radius-thumb);
    background: var(--c-section-highlight);
}

.pk-foryou__view {
    min-width: 0;
    overflow: hidden;
}

.pk-foryou__track {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.pk-foryou__slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 0 12px 24px;
    border-radius: var(--radius-thumb);
    background: #fff;
}

.pk-foryou__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    color: var(--c-text);
}
.pk-foryou__intro p {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    font-size: 13px;
    line-height: 20px;
}
.pk-foryou__intro strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-text-strong);
}
.pk-foryou__intro a {
    font-size: 11px;
    color: var(--c-text-gray);
}

.pk-foryou__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pk-foryou__item {
    position: relative;
    min-width: 0;
}
.pk-foryou__views {
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 4;
    padding: 2px 5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    color: #6f7075;
    font-size: 9px;
    line-height: 13px;
    white-space: nowrap;
    pointer-events: none;
}
.pk-foryou__item .pk-thumb { border-radius: var(--radius-thumb); }
.pk-foryou__item .pk-card__info { padding-top: 6px; }
.pk-foryou__item .pk-card__brand {
    margin-bottom: 1px;
    font-size: 10px;
    line-height: 14px;
}
.pk-foryou__item .pk-card__name {
    height: 32px;
    font-size: 11px;
    line-height: 16px;
}
.pk-foryou__item .pk-card__price {
    gap: 3px;
    padding-top: 4px;
}
.pk-foryou__item .pk-card__sale,
.pk-foryou__item .pk-card__now {
    font-size: 12px;
    line-height: 15px;
}

@media (min-width: 768px) {
    .pk-sect--foryou {
        padding-top: 24px;
        padding-bottom: 40px;
    }
    .pk-foryou__panel { padding: 24px; }
    .pk-foryou__slide {
        flex-basis: calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
        padding: 0 21px 48px;
    }
    .pk-foryou__intro { height: 85px; }
    .pk-foryou__intro p { font-size: 14px; }
    .pk-foryou__intro strong { font-size: 19px; }
    .pk-foryou__grid { column-gap: 16px; row-gap: 16px; }
    .pk-foryou__item { min-height: 240px; }
    .pk-foryou__item .pk-card__info { padding-top: 8px; }
    .pk-foryou__item .pk-card__brand { font-size: 11px; line-height: 15px; }
    .pk-foryou__item .pk-card__name { height: 34px; font-size: 12px; line-height: 17px; }
    .pk-foryou__item .pk-card__price { padding-top: 6px; }
    .pk-foryou__item .pk-card__sale,
    .pk-foryou__item .pk-card__now { font-size: 13px; line-height: 17px; }
}

/* -------------------------------------------------------------------------
   6. Top Brand
   모바일 400×400 원형 / PC 525×230 비율의 개별 스튜디오 이미지
   ------------------------------------------------------------------------- */
.pk-sect--brand {
    padding-top: 20px;
    padding-bottom: 0;
    border-top: 0 !important;
}
.pk-topbrand__head { min-height: 53px; margin-bottom: 0; }
.pk-topbrand {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pk-topbrand__item { min-width: 0; }
.pk-topbrand__link {
    display: block;
    color: var(--c-text);
    text-align: center;
}
.pk-topbrand__media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    background-color: #f6f6f6;
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.pk-topbrand__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pk-topbrand__name {
    display: block;
    height: 21px;
    overflow: hidden;
    padding-top: 5px;
    font-size: 10px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pk-topbrand__link:hover .pk-topbrand__media {
    filter: brightness(1.04);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

@media (min-width: 768px) {
    .pk-sect--brand { padding-top: 24px; }
    .pk-topbrand__head { min-height: 60px; }
    .pk-topbrand { row-gap: 16px; }
    .pk-topbrand__media {
        height: auto;
        aspect-ratio: 525 / 230;
        border-radius: 9px;
    }
    .pk-topbrand__name {
        height: 26px;
        padding-top: 6px;
        font-size: 12px;
        line-height: 20px;
    }
}

/* -------------------------------------------------------------------------
   7. 접근성 / 모션 최소화
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .swiper-wrapper,
    .swiper-slide,
    .pk-hero__bar i { transition: none !important; }
}

/* -------------------------------------------------------------------------
   8. 중간 배너 (출력위치 중간 / 중간모바일)
   레퍼런스 PC: 590×120 두 장 + 20px 간격. 모바일: 한 장.
   한글 글리프가 잘리지 않도록 제목/캡션은 overflow:visible.
   ------------------------------------------------------------------------- */
.pk-mid {
    position: relative;
    width: calc(100% + (var(--pad-mobile) * 2));
    margin: 8px calc(var(--pad-mobile) * -1) 8px;
    overflow: hidden;
    background: #191a1c;
}
.pk-mid__view {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* 와이드 라인(히어로가 아님). 업로드가 1240×480 이어도 잘라 쓴다. */
    aspect-ratio: 390 / 140;
}
.pk-mid__track { display: flex; width: 100%; height: 100%; margin: 0; padding: 0; }
.pk-mid .pk-mid__slide { position: relative; flex: 0 0 100%; width: 100%; height: 100%; overflow: hidden; }
.pk-mid__view.swiper-initialized .pk-mid__slide { flex-basis: auto; }
.pk-mid .pk-mid__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(8, 8, 9, .58) 0%, rgba(8, 8, 9, .18) 46%, rgba(8, 8, 9, 0) 72%);
    pointer-events: none;
}
.pk-mid__link { display: block; width: 100%; height: 100%; }
.pk-mid__img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.pk-mid__view--pc { display: none; }

@media (min-width: 768px) {
    .pk-mid { width: 100%; margin: 24px 0; }
    /* pliki8 PC 실측: 본문선 1200px 안의 낮은 120px 라인 배너 */
    .pk-mid__view { aspect-ratio: 10 / 1; }
    .pk-mid__view--mo { display: none; }
    .pk-mid__view--pc,
    .pk-mid__view--all { display: block; }
}

.pk-mid__copy {
    display: flex;
    position: absolute;
    top: 50%;
    left: 58px;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    max-width: calc(65% - 58px);
    color: #fff;
    transform: translateY(-50%);
    pointer-events: none;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .28);
}
.pk-mid__copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: .02em;
}
.pk-mid__copy span { font-size: 12px; line-height: 1.35; }

.pk-mid__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    color: #fff;
    background: rgba(10, 10, 12, .46);
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(5px);
}
.pk-mid__nav--prev { left: 10px; }
.pk-mid__nav--next { right: 10px; }
.pk-mid__nav.is-off { opacity: .35; cursor: default; }
.pk-mid__nav.is-lock { display: none; }

.pk-mid__pagination {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    z-index: 4;
    display: flex;
    gap: 5px;
    justify-content: center;
    pointer-events: none;
}
.pk-mid__bullet {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .52);
    cursor: pointer;
    pointer-events: auto;
}
.pk-mid__bullet.is-active { width: 16px; border-radius: 999px; background: #fff; }

@media (min-width: 768px) {
    .pk-mid__copy { left: 64px; gap: 6px; max-width: calc(62% - 64px); }
    .pk-mid__copy strong { font-size: 18px; }
    .pk-mid__copy span { font-size: 13px; }
}

/* -------------------------------------------------------------------------
   9. 카테고리 HIGHEND + Most Popular 페어
   PC 2열 · 모바일 스택. 열 안에서만 가로 스크롤. 페이지 넘침 금지.
   ------------------------------------------------------------------------- */
.pk-sect--pair {
    overflow: hidden; /* 페이지 가로 스크롤 차단. 제목은 아래 overflow:visible */
}
.pk-pair {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}
.pk-pair__new,
.pk-pair__hot { min-width: 0; }
.pk-pair__head { align-items: flex-end; margin-bottom: 12px; }
.pk-pair__title,
.pk-sect--event .pk-sect__title,
.pk-sect--pair .pk-sect__title {
    overflow: visible;
    line-height: 1.35;
    word-break: keep-all;
}

/* 페어 열에서는 화면 밖으로 흘리는 음수 마진/좌우 버튼을 끈다 */
.pk-sect--pair .pk-strip__view,
.pk-sect--pair .pk-strip__view.swiper-initialized {
    margin-right: 0;
    padding-right: 0;
}
.pk-sect--pair .pk-strip__nav { display: none !important; }
.pk-sect--pair .pk-strip .pk-strip__item { width: 140px; }

@media (min-width: 768px) {
    .pk-pair {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 32px;
    }
    .pk-pair:has(> :only-child) { grid-template-columns: minmax(0, 1fr); }
    .pk-sect--pair .pk-strip .pk-strip__item { width: calc((100% - 20px) / 3); }
}


/* 이벤트 룩 배너 — 와이드 라인, 히어로가 아님 */
.pk-event__look {
    display: block;
    overflow: hidden;
    margin: 0 0 14px;
    background: #111;
}
.pk-event__img { display: block; width: 100%; height: auto; object-fit: cover; }
.pk-event__img--pc { display: none; }
.pk-event__img--mo { display: block; max-height: 180px; object-fit: cover; }
@media (min-width: 768px) {
    .pk-event__look { margin-bottom: 18px; }
    .pk-event__img--mo { display: none; }
    .pk-event__img--pc { display: block; max-height: 220px; }
}

/* -------------------------------------------------------------------------
   10. 퀵 미리보기 다이얼로그
   모바일 바텀시트 / PC 중앙 720px. 한글 글리프 클립 없음.
   ------------------------------------------------------------------------- */
.pk-preview {
    position: fixed;
    inset: 0;
    z-index: 1600;
}
.pk-preview[hidden] { display: none !important; }
.pk-preview__dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .46);
}
.pk-preview__panel {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    max-height: min(88vh, 720px);
    overflow: auto;
    padding: 20px 16px calc(20px + var(--safe-b, 0px));
    border-radius: 16px 16px 0 0;
    background: #fff;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .16);
}
.pk-preview__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--c-text-strong);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}
.pk-preview__media {
    overflow: hidden;
    border-radius: 8px;
    background: var(--c-thumb-bg);
    aspect-ratio: 1 / 1;
}
.pk-preview__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pk-preview__body { padding-top: 16px; min-width: 0; }
.pk-preview__brand {
    overflow: visible;
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    word-break: keep-all;
}
.pk-preview__name {
    overflow: visible;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--c-text-strong);
    word-break: keep-all;
}
.pk-preview__cust {
    margin: 0 0 4px;
    color: var(--c-text-sub);
    font-size: 12px;
    line-height: 1.4;
}
.pk-preview__price {
    overflow: visible;
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--c-text-strong);
}
.pk-preview__sold {
    display: inline-flex;
    align-items: center;
    margin: 0 0 12px;
    padding: 6px 10px;
    border-radius: 4px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}
.pk-preview__sold[hidden] { display: none !important; }
.pk-preview__hold {
    display: inline-flex;
    align-items: center;
    margin: 0 0 12px;
    padding: 6px 10px;
    border-radius: 4px;
    background: #8B6914;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.pk-preview__hold[hidden] { display: none !important; }
.pk-preview__detail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: var(--radius-btn);
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .pk-preview__panel {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        flex-direction: row;
        width: min(720px, calc(100vw - 48px));
        max-height: min(80vh, 560px);
        padding: 24px;
        border-radius: 12px;
        transform: translate(-50%, -50%);
        box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
    }
    .pk-preview__media {
        flex: 0 0 300px;
        width: 300px;
        max-height: 300px;
    }
    .pk-preview__body {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-width: 0;
        padding: 8px 8px 0 24px;
    }
    .pk-preview__name { font-size: 18px; padding-right: 28px; }
    .pk-preview__detail { margin-top: auto; width: 180px; }
}

body.pk-preview-lock {
    overflow: hidden;
}

/* -------------------------------------------------------------------------
   10b. CELEB PICK — 착장 포즈 + 얼굴 프로필 + 연결 상품
   모바일 290px 자동 슬라이드 / PC 4열(1200px 기준 292.5px)
   ------------------------------------------------------------------------- */
.pk-sect--celeb { overflow: hidden; }
.pk-celeb { min-width: 0; }
.pk-celeb__view {
    margin-right: calc(var(--pad-mobile) * -1);
    padding-right: var(--pad-mobile);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.pk-celeb__view::-webkit-scrollbar { display: none; height: 0; }
.pk-celeb__view.swiper-initialized { padding-right: 0; overflow: hidden; }
.pk-celeb__track {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pk-celeb__view.swiper-initialized .pk-celeb__track { gap: 0; }
.pk-celeb .pk-celeb__item {
    flex: 0 0 auto;
    width: min(290px, 82vw);
    height: auto;
    min-width: 0;
}
.pk-celeb__card {
    display: flex;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-thumb);
    background: #fff;
    color: var(--c-text);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pk-celeb__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 13 / 16;
    background: linear-gradient(150deg, #eeeae5 0%, #cfc7be 100%);
}
.pk-celeb__media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .4s ease;
}
.pk-celeb__shade {
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .2));
}
.pk-celeb__identity {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 28px;
    gap: 10px;
    align-items: end;
    min-width: 0;
    margin-top: -36px;
    padding: 0 14px;
}
.pk-celeb__profile {
    display: flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #ece8e2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .14);
}
.pk-celeb__profile img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pk-celeb__profile--empty > span { color: #68625b; font-size: 22px; font-weight: 700; }
.pk-celeb__person { min-width: 0; padding-bottom: 5px; }
.pk-celeb__person strong,
.pk-celeb__person small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pk-celeb__person strong { color: var(--c-text-strong); font-size: 15px; font-weight: 700; }
.pk-celeb__person small { margin-top: 2px; color: var(--c-text-gray); font-size: 11px; }
.pk-celeb__arrow {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    color: #111;
    font-size: 13px;
}
.pk-celeb__product {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 14px 14px 16px;
}
.pk-celeb__product small,
.pk-celeb__product strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pk-celeb__product small { color: #767676; font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.pk-celeb__product strong { margin-top: 3px; color: var(--c-text-strong); font-size: 13px; font-weight: 500; }
.pk-celeb__product b { margin-top: 10px; color: #111; font-size: 14px; font-weight: 700; }

@media (hover: hover) {
    .pk-celeb__card:hover { border-color: #cbc4ba; box-shadow: 0 12px 30px rgba(27, 24, 20, .09); transform: translateY(-2px); }
    .pk-celeb__card:hover .pk-celeb__media > img { transform: scale(1.025); }
}

@media (min-width: 768px) {
    .pk-celeb__view,
    .pk-celeb__view.swiper-initialized { margin-right: 0; padding-right: 0; }
    .pk-celeb .pk-celeb__item { width: calc((100% - 30px) / 4); }
    .pk-celeb__identity { grid-template-columns: 84px minmax(0, 1fr) 30px; margin-top: -42px; padding: 0 16px; }
    .pk-celeb__profile { width: 84px; height: 84px; }
    .pk-celeb__person strong { font-size: 16px; }
    .pk-celeb__product { padding: 15px 16px 18px; }
    .pk-celeb__product strong { font-size: 14px; }
    .pk-celeb__product b { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    .pk-celeb__card,
    .pk-celeb__media > img { transition: none; }
}


/* -------------------------------------------------------------------------
   11. WEEKLY BEST 탭
   모바일: 탭만 가로 스크롤. 페이지 overflow 금지.
   ------------------------------------------------------------------------- */
.pk-weekly__tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 0 14px;
    padding: 0 0 2px;
    max-width: 100%;
}
.pk-weekly__tabs::-webkit-scrollbar { display: none; height: 0; }
.pk-weekly__tab {
    flex: 0 0 auto;
    height: 32px;
    padding: 0 14px;
    border-radius: 16px;
    background: var(--c-field-bg);
    color: var(--c-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 32px;
    white-space: nowrap;
}
.pk-weekly__tab.is-on {
    background: var(--c-tab-active);
    color: #fff;
}
.pk-weekly__panel[hidden] { display: none !important; }
.pk-weekly__panel { min-width: 0; }
.pk-sect--weekly .pk-sect__title,
.pk-sect--timesale .pk-sect__title,
.pk-sect--shorts .pk-sect__title,
.pk-sect--inspect .pk-sect__title,
.pk-sect--story .pk-sect__title {
    overflow: visible;
    line-height: 1.35;
    word-break: keep-all;
}

/* -------------------------------------------------------------------------
   12. TIME SALE — 활성 상품 집중형 Swiper
   모바일 1-card / PC active 378px · near 227px · far 136px
   ------------------------------------------------------------------------- */
.pk-sect--timesale {
    position: relative;
    overflow: hidden;
    padding-top: 36px;
    padding-bottom: 42px;
    border-top: 1px solid var(--c-border);
    background: #fff;
}
.pk-timesale__head {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 78px;
    text-align: center;
}
.pk-timesale__heading { min-width: 0; }
.pk-timesale__eyebrow {
    margin: 0 0 5px;
    color: #85817b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}
.pk-timesale__title {
    margin: 0;
    color: var(--c-text-strong);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
}
.pk-timesale__sub {
    margin: 8px 0 0;
    color: var(--c-text-gray);
    font-size: 12px;
}
.pk-timesale__more {
    align-items: center;
    justify-content: center;
    color: var(--c-text-strong);
    font-size: 12px;
    font-weight: 600;
}
.pk-timesale__more--pc { display: none; }

.pk-timesale__clock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 46px;
    margin-top: 15px;
    color: var(--c-text-strong);
    font-variant-numeric: tabular-nums;
}
.pk-timesale__clock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1px;
}
.pk-timesale__clock-label {
    margin-right: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}
.pk-timesale__clock-value {
    display: grid;
    grid-template-rows: 23px 9px;
    min-width: 30px;
    text-align: center;
}
.pk-timesale__clock-value b {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: -.03em;
}
.pk-timesale__clock-value small {
    color: #aaa7a1;
    font-size: 7px;
    font-weight: 700;
    line-height: 9px;
    letter-spacing: .08em;
}
.pk-timesale__clock-colon {
    align-self: flex-start;
    margin-top: 3px;
    color: #aaa7a1;
    font-size: 16px;
}
.pk-timesale__clock-status {
    margin-left: 5px;
    padding: 4px 8px;
    border-radius: var(--radius-btn);
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.pk-timesale__stage {
    position: relative;
    margin-top: 18px;
}
.pk-timesale__stage::before {
    position: absolute;
    top: 36%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ece9e5;
    content: '';
}
.pk-timesale__view {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 430px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}
.pk-timesale__view::-webkit-scrollbar { display: none; }
.pk-timesale__view.swiper-initialized { overflow: hidden; }
.pk-timesale__track {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pk-timesale__slide {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    width: 100%;
    height: auto;
    opacity: .56;
    transition: opacity .42s ease;
}
.pk-timesale__slide.swiper-slide-active,
.pk-sect--timesale:not(.is-ready) .pk-timesale__slide:first-child { opacity: 1; }
.pk-timesale__card {
    flex: 0 0 auto;
    width: min(267px, 76vw);
    margin: 0 auto;
    transition: width .42s ease;
}
.pk-timesale__card .pk-card__media,
.pk-timesale__card .pk-thumb {
    overflow: hidden;
    border-radius: var(--radius-thumb);
    background: #fff;
}
.pk-timesale__card .pk-card__media {
    border: 1px solid #e7e4df;
    box-shadow: 0 10px 30px rgba(29, 26, 23, .07);
}
.pk-timesale__card .pk-thumb img {
    object-fit: contain;
    transform: none;
}
.pk-timesale__card:hover .pk-thumb img { transform: none; }
.pk-timesale__card .pk-card__info {
    min-height: 128px;
    padding-top: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease;
}
.pk-timesale__slide.swiper-slide-active .pk-card__info,
.pk-sect--timesale:not(.is-ready) .pk-timesale__slide:first-child .pk-card__info {
    opacity: 1;
    visibility: visible;
}
.pk-timesale__card .pk-card__brand { font-size: 12px; }
.pk-timesale__card .pk-card__name {
    height: auto;
    min-height: 38px;
    font-size: 14px;
    line-height: 19px;
}
.pk-timesale__card .pk-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 8px;
}
.pk-timesale__card .pk-card__sale { font-size: 21px; }
.pk-timesale__card .pk-card__now { font-size: 17px; }
.pk-timesale__slide:not(.swiper-slide-active) .pk-card__acts {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.pk-timesale__slide.swiper-slide-active .pk-card__acts,
.pk-sect--timesale:not(.is-ready) .pk-timesale__slide:first-child .pk-card__acts {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}
.pk-timesale__nav { display: none; }
.pk-timesale__mobile-foot {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 5px;
}
.pk-timesale__count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #a19d97;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}
.pk-timesale__count b { color: var(--c-text-strong); font-weight: 700; }
.pk-timesale__more--mobile {
    display: inline-flex;
    min-width: 220px;
    height: 44px;
    padding: 0 22px;
    border: 1px solid #111;
    border-radius: 22px;
    background: #111;
    color: #fff;
}

@media (min-width: 768px) {
    .pk-sect--timesale { padding-top: 48px; padding-bottom: 52px; }
    .pk-timesale__head { min-height: 82px; }
    .pk-timesale__eyebrow { font-size: 11px; }
    .pk-timesale__title { font-size: 38px; }
    .pk-timesale__sub { font-size: 13px; }
    .pk-timesale__more--pc {
        position: absolute;
        right: 0;
        bottom: 5px;
        display: inline-flex;
    }
    .pk-timesale__clock { gap: 9px; margin-top: 17px; }
    .pk-timesale__clock-label { font-size: 12px; }
    .pk-timesale__clock-value { grid-template-rows: 30px 10px; min-width: 38px; }
    .pk-timesale__clock-value b { font-size: 27px; line-height: 30px; }
    .pk-timesale__clock-value small { font-size: 8px; line-height: 10px; }
    .pk-timesale__clock-colon { margin-top: 5px; font-size: 18px; }
    .pk-timesale__stage { margin-top: 24px; }
    .pk-timesale__view { min-height: 500px; padding-top: 22px; }
    .pk-timesale__slide { flex-basis: 210px; width: 210px; }
    .pk-timesale__card { width: 120px; }
    .pk-timesale__slide.swiper-slide-prev .pk-timesale__card,
    .pk-timesale__slide.swiper-slide-next .pk-timesale__card { width: 190px; }
    .pk-timesale__slide.swiper-slide-active .pk-timesale__card,
    .pk-sect--timesale:not(.is-ready) .pk-timesale__slide:first-child .pk-timesale__card { width: 320px; }
    .pk-timesale__mobile-foot { display: none; }
    .pk-timesale__nav {
        position: absolute;
        top: 175px;
        z-index: 4;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid #dedad4;
        border-radius: 50%;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 7px 22px rgba(27, 24, 20, .1);
        color: #111;
    }
    .pk-timesale__nav:not([hidden]) { display: flex; }
    .pk-timesale__nav--prev { left: 0; }
    .pk-timesale__nav--next { right: 0; }
    .pk-timesale__nav:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
}

@media (min-width: 1024px) {
    .pk-timesale__view { min-height: 555px; padding-top: 28px; }
    .pk-timesale__slide { flex-basis: 240px; width: 240px; }
    .pk-timesale__card { width: 136px; }
    .pk-timesale__slide.swiper-slide-prev .pk-timesale__card,
    .pk-timesale__slide.swiper-slide-next .pk-timesale__card { width: 227px; }
    .pk-timesale__slide.swiper-slide-active .pk-timesale__card,
    .pk-sect--timesale:not(.is-ready) .pk-timesale__slide:first-child .pk-timesale__card { width: 378px; }
    .pk-timesale__nav { top: 218px; }
}

@media (prefers-reduced-motion: reduce) {
    .pk-timesale__slide,
    .pk-timesale__card,
    .pk-timesale__card .pk-card__info { transition: none; }
}

/* 공통 카드 렌더러의 명시적 timer 옵션을 쓰는 다른 화면을 위한 레거시 스타일. */
.pk-card__timer {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 5px 8px;
    border-radius: 0 0 var(--radius-thumb) var(--radius-thumb);
    background: rgba(17, 17, 17, .82);
    color: #fff;
    pointer-events: none;
}
.pk-card:has(.pk-card__timer) .pk-card__flags { bottom: 32px; }
.pk-card__timer-txt {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.02em;
    white-space: nowrap;
}

/* -------------------------------------------------------------------------
   13. Shorts — 9:16, 모바일 2장 / PC 5장
   ------------------------------------------------------------------------- */
.pk-sect--shorts { padding-bottom: 20px; overflow: hidden; }
.pk-shorts { position: relative; min-width: 0; }
.pk-shorts__view {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: calc(var(--pad-mobile) * -1);
    padding-right: var(--pad-mobile);
}
.pk-shorts__view::-webkit-scrollbar { display: none; height: 0; }
.pk-shorts__view.swiper-initialized {
    overflow: hidden;
    padding-right: 0;
}
.pk-shorts__track {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pk-shorts__view.swiper-initialized .pk-shorts__track { gap: 0; }
.pk-shorts .pk-shorts__item {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: calc((100% - 10px) / 2);
    height: auto;
    min-width: 0;
}
.pk-shorts__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: var(--radius-thumb);
    background: #191a1c;
    color: #fff;
    padding: 0;
}
.pk-shorts__thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pk-shorts__none { display: block; width: 100%; height: 100%; background: #2a2b2e; }
.pk-shorts__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .46);
    color: #fff;
    pointer-events: none;
}
.pk-shorts__meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: 8px;
}
.pk-shorts__brand {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pk-shorts__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 32px;
    margin-top: 2px;
    font-size: 12px;
    line-height: 16px;
    color: var(--c-text);
    word-break: keep-all;
}
.pk-shorts__price {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--c-text-strong);
}

@media (min-width: 768px) {
    .pk-sect--shorts { padding-bottom: 32px; }
    .pk-shorts__view,
    .pk-shorts__view.swiper-initialized { margin-right: 0; padding-right: 0; }
    .pk-shorts .pk-shorts__item { width: calc((100% - 30px) / 4); }
}
@media (min-width: 1024px) {
    .pk-shorts .pk-shorts__item { width: calc((100% - 40px) / 5); }
}

/* Shorts 재생 레이어 */
.pk-shortplay {
    position: fixed;
    inset: 0;
    z-index: 1610;
}
.pk-shortplay[hidden] { display: none !important; }
.pk-shortplay__dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}
.pk-shortplay__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    width: min(390px, calc(100vw - 32px));
    max-height: min(88vh, 780px);
    transform: translate(-50%, -50%);
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}
.pk-shortplay__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #111;
}
.pk-shortplay__stage {
    position: relative;
    width: 100%;
    max-height: min(72vh, 640px);
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
}
.pk-shortplay__stage .video-js,
.pk-shortplay__video.video-js {
    width: 100%;
    height: 100%;
    padding: 0;
}
.pk-shortplay.is-loading .pk-shortplay__stage::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border: 2px solid rgba(255, 255, 255, .28);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pk-shortplay-spin .8s linear infinite;
    content: "";
}
@keyframes pk-shortplay-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .pk-shortplay.is-loading .pk-shortplay__stage::after { animation: none; }
}
.pk-shortplay__stage .vjs-tech {
    object-fit: contain;
}
.pk-shortplay__go {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
}
.pk-shortplay__go[hidden] { display: none !important; }

/* -------------------------------------------------------------------------
   14. 실시간 REVIEW — 미디어 우선 카드 / 모바일 가로 탐색 / PC 4열
   ------------------------------------------------------------------------- */
.pk-sect--review { padding-top: 32px; padding-bottom: 36px; overflow: hidden; }
.pk-review-live__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    min-height: 64px;
    padding-bottom: 16px;
    border-bottom: 1px solid #111;
}
.pk-review-live__title h2 {
    margin: 0;
    color: var(--c-text-strong);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.pk-review-live__title p { margin: 5px 0 0; color: var(--c-text-gray); font-size: 12px; }
.pk-review-live__more { flex: 0 0 auto; color: #111; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.pk-review-live__filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.pk-review-live__filters::-webkit-scrollbar,
.pk-review-live__list::-webkit-scrollbar { display: none; }
.pk-review-live__filters button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    background: #fff;
    color: #777;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
}
.pk-review-live__filters button.is-active { border-color: #111; background: #111; color: #fff; font-weight: 700; }
.pk-review-live__list {
    display: flex;
    gap: 10px;
    margin: 0 calc(var(--pad-mobile) * -1) 0 0;
    padding: 0 var(--pad-mobile) 4px 0;
    overflow-x: auto;
    list-style: none;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}
.pk-review-live__item { display: block; flex: 0 0 min(82vw, 320px); min-width: 0; scroll-snap-align: start; }
.pk-review-live__item.is-overflow { display: none; }
.pk-review-live[data-filter-mode="media"] .pk-review-live__item { display: none; }
.pk-review-live[data-filter-mode="media"] .pk-review-live__item.is-filter-visible { display: block; }
.pk-review-live__card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e7e5e1;
    border-radius: var(--radius-card, 8px);
    background: #fff;
}
.pk-review-live__cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--c-thumb-bg);
}
.pk-review-live__cover img,
.pk-review-live__cover video { display: block; width: 100%; height: 100%; object-fit: cover; }
.pk-review-live__cover-shade {
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,.38), transparent);
    pointer-events: none;
}
.pk-review-live__badges { position: absolute; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; }
.pk-review-live__badges b,
.pk-review-live__badges em {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    background: rgba(0,0,0,.52);
    color: #fff;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .07em;
}
.pk-review-live__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    background: rgba(0,0,0,.62);
    transform: translate(-50%, -50%);
}
.pk-review-live__play::after {
    position: absolute;
    top: 14px;
    left: 19px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 12px solid #fff;
    content: "";
}
.pk-review-live__body { padding: 16px; }
.pk-review-live__eyeline { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 22px; }
.pk-review-live__new {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
}
.pk-review-live__score { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.pk-review-live__score i { color: #f3b31c; font-size: 11px; font-style: normal; letter-spacing: .5px; }
.pk-review-live__score b { color: #555; font-size: 11px; font-weight: 700; }
.pk-review-live__product {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    min-width: 0;
    margin-top: 13px;
    color: var(--c-text);
}
.pk-review-live__product-thumb { display: block; width: 42px; height: 42px; overflow: hidden; border-radius: var(--radius-thumb); background: var(--c-thumb-bg); }
.pk-review-live__product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pk-review-live__product-copy { min-width: 0; }
.pk-review-live__product-copy > strong { display: block; overflow: hidden; color: #555; font-size: 11px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.pk-review-live__product-copy > span { display: block; margin-top: 2px; color: #999; font-size: 10px; }
.pk-review-live__copy { margin-top: 15px; }
.pk-review-live__copy h3 { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.45; }
.pk-review-live__copy h3 a { color: var(--c-text-strong); }
.pk-review-live__copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    min-height: 60px;
    margin: 7px 0 0;
    color: #666;
    font-size: 12px;
    line-height: 1.65;
    word-break: keep-all;
}
.pk-review-live__author { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--c-border); color: #999; font-size: 10px; }
.pk-review-live__author strong { color: #444; font-weight: 700; }
.pk-review-live__empty { margin: 0; padding: 48px 16px; border-bottom: 1px solid #111; color: var(--c-text-gray); font-size: 13px; text-align: center; }

@media (min-width: 768px) {
    .pk-sect--review { padding-top: 48px; padding-bottom: 56px; }
    .pk-review-live__head { min-height: 80px; padding-bottom: 20px; }
    .pk-review-live__title h2 { font-size: 28px; }
    .pk-review-live__title p,
    .pk-review-live__more { font-size: 13px; }
    .pk-review-live__filters { padding: 20px 0; }
    .pk-review-live__filters button { min-height: 38px; font-size: 13px; }
    .pk-review-live__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-right: 0; padding: 0; overflow: visible; scroll-snap-type: none; }
    .pk-review-live__item,
    .pk-review-live[data-filter-mode="media"] .pk-review-live__item.is-filter-visible { display: block; width: auto; }
    .pk-review-live__body { padding: 17px; }
    .pk-review-live__cover { aspect-ratio: 4 / 5; }
    .pk-review-live__copy p { -webkit-line-clamp: 2; min-height: 40px; }
}

@media (hover:hover) {
    .pk-review-live__card { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
    .pk-review-live__cover img,
    .pk-review-live__cover video { transition: transform .35s ease; }
    .pk-review-live__card:hover { border-color: #cbc7c1; box-shadow: 0 12px 30px rgba(20,17,14,.08); transform: translateY(-2px); }
    .pk-review-live__card:hover .pk-review-live__cover img,
    .pk-review-live__card:hover .pk-review-live__cover video { transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
    .pk-review-live__card,
    .pk-review-live__cover img,
    .pk-review-live__cover video { transition: none; }
}

/* -------------------------------------------------------------------------
   15. 브랜드 스토리 — 모바일 스와이프 / PC 5열
   ------------------------------------------------------------------------- */
.pk-sect--story { padding-bottom: 28px; overflow: hidden; }
.pk-story { min-width: 0; }
.pk-story__view {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: calc(var(--pad-mobile) * -1);
    padding-right: var(--pad-mobile);
}
.pk-story__view::-webkit-scrollbar { display: none; height: 0; }
.pk-story__view.swiper-initialized {
    overflow: hidden;
    padding-right: 0;
}
.pk-story__track {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.pk-story__view.swiper-initialized .pk-story__track { gap: 0; }
.pk-story .pk-story__item {
    flex: 0 0 auto;
    width: min(220px, 72vw);
    height: auto;
    min-width: 0;
}
.pk-story__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: var(--c-text);
}
.pk-story__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-thumb);
    background: linear-gradient(160deg, #ece8e3 0%, #c4bbb3 100%);
}
.pk-story__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pk-story__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: 10px;
}
.pk-story__brand {
    overflow: visible;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #767676;
    word-break: keep-all;
}
.pk-story__name {
    overflow: visible;
    margin-top: 3px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--c-text-strong);
    word-break: keep-all;
}
.pk-story__copy {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--c-text-gray);
    word-break: keep-all;
}

@media (min-width: 768px) {
    .pk-sect--story { padding-bottom: 40px; }
    .pk-story__view,
    .pk-story__view.swiper-initialized { margin-right: 0; padding-right: 0; }
    .pk-story .pk-story__item { width: calc((100% - 32px) / 5); }
    .pk-story__name { font-size: 17px; }
}
