/* V2 상품 설명 구조화 */

.v2-about-item {
    margin: 64px auto 36px;
    padding: 0 20px;
    max-width: 1240px;
}

.v2-about-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #111;
}

.v2-about-head small,
.v2-related-slider-head small {
    display: block;
    margin-bottom: 7px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.v2-about-head h2,
.v2-related-slider-head h2 {
    margin: 0;
    color: #111;
    font-size: clamp(23px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.v2-about-code {
    color: #999;
    font-size: 12px;
    font-weight: 700;
}

.v2-about-summary {
    padding: 25px 0;
}

.v2-about-summary p {
    margin: 0;
    max-width: 920px;
    color: #222;
    font-size: 16px;
    line-height: 1.85;
    word-break: keep-all;
}

.v2-about-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
}

.v2-about-specs > div {
    min-width: 0;
    padding: 17px 18px;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.v2-about-specs dt {
    margin-bottom: 7px;
    color: #999;
    font-size: 11px;
    font-weight: 700;
}

.v2-about-specs dd {
    margin: 0;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    word-break: keep-all;
}

.v2-about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.v2-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 18px;
    border-radius: 16px;
    background: #f7f7f7;
}

.v2-about-feature > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.v2-about-feature strong {
    display: block;
    margin-bottom: 5px;
    color: #111;
    font-size: 14px;
}

.v2-about-feature p {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.65;
    word-break: keep-all;
}

.v2-about-more {
    margin-top: 20px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.v2-about-more summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 2px;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.v2-about-more summary::-webkit-details-marker {
    display: none;
}

.v2-about-more[open] summary span {
    transform: rotate(180deg);
}

.v2-about-more-body {
    padding: 0 2px 20px;
}

.v2-about-more-body p {
    margin: 0 0 10px;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
    word-break: keep-all;
}

/* V2 하단 상품 슬라이더 */

.v2-related-slider-section {
    max-width: 1240px;
    margin: 70px auto 42px;
    padding: 0 20px;
    overflow: hidden;
}

.v2-related-slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.v2-related-slider-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v2-related-slider-actions > a {
    margin-left: 7px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.v2-related-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.v2-related-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.v2-related-arrow:disabled {
    opacity: .3;
    cursor: default;
}

.v2-related-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.v2-related-slider::-webkit-scrollbar {
    display: none;
}

.v2-related-slide {
    flex: 0 0 calc((100% - 56px) / 5);
    min-width: 0;
    color: #111;
    text-decoration: none;
    scroll-snap-align: start;
}

.v2-related-slide-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.18;
    border-radius: 3px;
    background: #f3f3f3;
}

.v2-related-slide-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.v2-related-slide:hover img {
    transform: scale(1.025);
}

.v2-related-slide-view {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(4px);
    transition: .2s ease;
}

.v2-related-slide:hover .v2-related-slide-view {
    opacity: 1;
    transform: translateY(0);
}

.v2-related-slide-info {
    padding: 12px 1px 4px;
}

.v2-related-slide-info small {
    display: block;
    overflow: hidden;
    margin-bottom: 6px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-related-slide-info strong {
    display: -webkit-box;
    overflow: hidden;
    min-height: 40px;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.v2-related-slide-info b {
    display: block;
    margin-top: 8px;
    color: #111;
    font-size: 14px;
}

.v2-related-progress {
    height: 2px;
    margin-top: 22px;
    overflow: hidden;
    background: #e9e9e9;
}

.v2-related-progress span {
    display: block;
    width: 20%;
    height: 100%;
    background: #111;
    transform-origin: left center;
    transition: transform .15s linear;
}

@media (max-width: 1024px) {
    .v2-about-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-related-slide {
        flex-basis: calc((100% - 28px) / 3);
    }
}

@media (max-width: 640px) {
    .v2-about-item {
        margin-top: 42px;
        padding: 0 16px;
    }

    .v2-about-head {
        align-items: center;
    }

    .v2-about-summary {
        padding: 20px 0;
    }

    .v2-about-summary p {
        font-size: 14px;
        line-height: 1.8;
    }

    .v2-about-specs {
        grid-template-columns: 1fr 1fr;
    }

    .v2-about-specs > div {
        padding: 14px 13px;
    }

    .v2-about-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .v2-about-feature {
        padding: 15px;
    }

    .v2-related-slider-section {
        margin-top: 52px;
        padding: 0 16px;
    }

    .v2-related-slider-actions .v2-related-arrow {
        display: none;
    }

    .v2-related-slider {
        gap: 10px;
        margin-right: -16px;
        padding-right: 16px;
    }

    .v2-related-slide {
        flex-basis: 44%;
    }

    .v2-related-slide-info strong {
        min-height: 38px;
        font-size: 12px;
    }

    .v2-related-slide-view {
        display: none;
    }
}

/* BT V2 SIMPLE ABOUT ITEM */
.v2-about-simple {
    width: 100%;
    max-width: 1240px;
    margin: 58px auto 34px;
    padding: 0 20px;
    box-sizing: border-box;
}

.v2-about-simple-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 17px;
    border-bottom: 1px solid #111;
}

.v2-about-simple-head small {
    display: block;
    margin-bottom: 7px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.v2-about-simple-head h2 {
    margin: 0;
    color: #111;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.v2-about-simple-head > span {
    color: #999;
    font-size: 11px;
    font-weight: 700;
}

.v2-about-simple-body {
    padding: 23px 0 4px;
}

.v2-about-simple-body p {
    max-width: 980px;
    margin: 0;
    color: #222;
    font-size: 15px;
    line-height: 1.9;
    word-break: keep-all;
    white-space: normal;
}

@media (max-width: 640px) {
    .v2-about-simple {
        margin: 40px auto 25px;
        padding: 0 16px;
    }

    .v2-about-simple-head {
        align-items: center;
    }

    .v2-about-simple-head h2 {
        font-size: 25px;
    }

    .v2-about-simple-body {
        padding-top: 18px;
    }

    .v2-about-simple-body p {
        font-size: 14px;
        line-height: 1.8;
    }
}
/* /BT V2 SIMPLE ABOUT ITEM */

/* =====================================================
   BT V2 FOUR PRODUCT SLIDERS
===================================================== */

.v2-product-slider-section {
    width: 100%;
    max-width: 1240px;
    margin: 64px auto 0;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.v2-product-slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.v2-product-slider-head small {
    display: block;
    margin-bottom: 7px;
    color: #999;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.v2-product-slider-head h2 {
    margin: 0;
    color: #111;
    font-size: clamp(23px, 3vw, 31px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.v2-product-slider-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v2-product-slider-actions > a {
    margin-left: 6px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.v2-product-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #111;
    cursor: pointer;
}

.v2-product-slider-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.v2-product-slider-arrow:disabled {
    opacity: .25;
    cursor: default;
}

.v2-product-slider-track {
    display: flex;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.v2-product-slider-track::-webkit-scrollbar {
    display: none;
}

.v2-product-slider-card {
    flex: 0 0 calc((100% - 56px) / 5);
    min-width: 0;
    color: #111;
    text-decoration: none;
    scroll-snap-align: start;
}

.v2-product-slider-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1.12;
    border-radius: 3px;
    background: #f4f4f4;
}

.v2-product-slider-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.v2-product-slider-card:hover img {
    transform: scale(1.025);
}

.v2-product-slider-info {
    padding: 11px 1px 3px;
}

.v2-product-slider-info small {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-product-slider-info strong {
    display: -webkit-box;
    overflow: hidden;
    min-height: 40px;
    color: #222;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.v2-product-slider-info b {
    display: block;
    margin-top: 7px;
    color: #111;
    font-size: 14px;
}

.v2-product-slider-progress {
    width: 100%;
    height: 2px;
    margin-top: 20px;
    overflow: hidden;
    background: #e9e9e9;
}

.v2-product-slider-progress span {
    display: block;
    width: 20%;
    height: 100%;
    background: #111;
    transform-origin: left center;
    transition: transform .12s linear;
}

@media (max-width: 1024px) {
    .v2-product-slider-card {
        flex-basis: calc((100% - 28px) / 3);
    }
}

@media (max-width: 640px) {
    .v2-product-slider-section {
        margin-top: 48px;
        padding: 0 16px;
    }

    .v2-product-slider-head {
        align-items: center;
        margin-bottom: 15px;
    }

    .v2-product-slider-head h2 {
        font-size: 23px;
    }

    .v2-product-slider-arrow {
        display: none;
    }

    .v2-product-slider-actions > a {
        margin-left: 0;
        font-size: 11px;
    }

    .v2-product-slider-track {
        gap: 10px;
        margin-right: -16px;
        padding-right: 16px;
    }

    .v2-product-slider-card {
        flex-basis: 43%;
    }

    .v2-product-slider-info strong {
        min-height: 37px;
        font-size: 12px;
    }

    .v2-product-slider-info b {
        font-size: 13px;
    }
}

/* 기존 1개 추천 슬라이더 스타일이 남아도 출력은 하지 않음 */

/* =====================================================
   V2 안내 사항 / 상품 정보 / 상품 보증 / 사이즈 문의
   PC + TABLET + MOBILE RESPONSIVE FINAL
   ===================================================== */

.v2-bottom-guide,
.v2-product-guide,
.v2-guide-wrap,
.v2-item-guide {
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
    margin-inline:auto;
}

/* 안내 사항 카드 */
.v2-guide-notice,
.v2-notice-box,
.v2-product-notice {
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
    padding:clamp(16px, 2.2vw, 26px);
    border-radius:clamp(14px, 1.8vw, 22px);
    overflow:hidden;
}

/* 안내 제목 */
.v2-guide-notice-title,
.v2-notice-title,
.v2-product-notice-title {
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
    margin:0 0 clamp(12px, 1.7vw, 18px);
    font-size:clamp(15px, 1.5vw, 18px);
    line-height:1.4;
    font-weight:800;
}

/* 안내 문장 */
.v2-guide-notice p,
.v2-guide-notice li,
.v2-notice-box p,
.v2-notice-box li,
.v2-product-notice p,
.v2-product-notice li {
    max-width:100%;
    margin:0;
    font-size:clamp(13px, 1.25vw, 15px);
    line-height:1.75;
    overflow-wrap:anywhere;
    word-break:keep-all;
}

/* 여러 문장 간격 */
.v2-guide-notice p + p,
.v2-notice-box p + p,
.v2-product-notice p + p {
    margin-top:5px;
}

/* 상품 정보 / 상품 보증 아코디언 */
.v2-guide-accordion,
.v2-product-accordion,
.v2-guide-details,
.v2-bottom-guide details {
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
}

.v2-guide-accordion summary,
.v2-product-accordion summary,
.v2-guide-details summary,
.v2-bottom-guide details > summary {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    width:100%;
    min-height:clamp(52px, 6vw, 64px);
    padding:0 clamp(16px, 2.2vw, 24px);
    box-sizing:border-box;
    font-size:clamp(14px, 1.4vw, 17px);
    line-height:1.4;
    font-weight:750;
    cursor:pointer;
    list-style:none;
}

.v2-guide-accordion summary::-webkit-details-marker,
.v2-product-accordion summary::-webkit-details-marker,
.v2-guide-details summary::-webkit-details-marker,
.v2-bottom-guide details > summary::-webkit-details-marker {
    display:none;
}

/* 펼쳐진 내용 */
.v2-guide-accordion-content,
.v2-product-accordion-content,
.v2-guide-details-content,
.v2-bottom-guide details > div {
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
    padding:
        0
        clamp(16px, 2.2vw, 24px)
        clamp(18px, 2.6vw, 28px);
    font-size:clamp(13px, 1.25vw, 15px);
    line-height:1.75;
    overflow-wrap:anywhere;
    word-break:keep-all;
}

/* 사이즈 문의 카드 */
.v2-size-help,
.v2-guide-size-help,
.v2-size-consult,
.v2-product-size-help {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:clamp(12px, 2vw, 22px);
    width:100%;
    max-width:100%;
    min-width:0;
    padding:clamp(16px, 2.2vw, 24px);
    box-sizing:border-box;
    border-radius:clamp(14px, 1.8vw, 22px);
    overflow:hidden;
}

.v2-size-help > *,
.v2-guide-size-help > *,
.v2-size-consult > *,
.v2-product-size-help > * {
    min-width:0;
}

.v2-size-help strong,
.v2-guide-size-help strong,
.v2-size-consult strong,
.v2-product-size-help strong {
    display:block;
    font-size:clamp(14px, 1.5vw, 18px);
    line-height:1.4;
    overflow-wrap:anywhere;
    word-break:keep-all;
}

.v2-size-help p,
.v2-guide-size-help p,
.v2-size-consult p,
.v2-product-size-help p {
    margin:5px 0 0;
    font-size:clamp(12px, 1.2vw, 14px);
    line-height:1.55;
    overflow-wrap:anywhere;
    word-break:keep-all;
}

/* 문의 버튼 */
.v2-size-help a,
.v2-guide-size-help a,
.v2-size-consult a,
.v2-product-size-help a {
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 clamp(14px, 2vw, 20px);
    box-sizing:border-box;
    white-space:nowrap;
    font-size:clamp(12px, 1.2vw, 14px);
    font-weight:800;
    text-decoration:none;
}

/* 태블릿 */
@media (max-width:1024px) {
    .v2-bottom-guide,
    .v2-product-guide,
    .v2-guide-wrap,
    .v2-item-guide {
        padding-inline:clamp(14px, 2.4vw, 24px);
    }
}

/* 모바일 */
@media (max-width:640px) {
    .v2-bottom-guide,
    .v2-product-guide,
    .v2-guide-wrap,
    .v2-item-guide {
        padding-inline:12px;
    }

    .v2-guide-notice,
    .v2-notice-box,
    .v2-product-notice {
        padding:16px 15px;
        border-radius:16px;
    }

    .v2-guide-notice p,
    .v2-guide-notice li,
    .v2-notice-box p,
    .v2-notice-box li,
    .v2-product-notice p,
    .v2-product-notice li {
        line-height:1.7;
    }

    .v2-guide-accordion summary,
    .v2-product-accordion summary,
    .v2-guide-details summary,
    .v2-bottom-guide details > summary {
        min-height:54px;
        padding-inline:15px;
    }

    .v2-size-help,
    .v2-guide-size-help,
    .v2-size-consult,
    .v2-product-size-help {
        align-items:flex-start;
        flex-direction:column;
        padding:16px 15px;
        border-radius:16px;
    }

    .v2-size-help a,
    .v2-guide-size-help a,
    .v2-size-consult a,
    .v2-product-size-help a {
        width:100%;
        min-height:46px;
    }
}

/* 아주 작은 화면 */
@media (max-width:360px) {
    .v2-bottom-guide,
    .v2-product-guide,
    .v2-guide-wrap,
    .v2-item-guide {
        padding-inline:9px;
    }

    .v2-guide-notice,
    .v2-notice-box,
    .v2-product-notice,
    .v2-size-help,
    .v2-guide-size-help,
    .v2-size-consult,
    .v2-product-size-help {
        padding-inline:13px;
    }
}

/* V2 PRODUCT TRUST RESPONSIVE START */

.v2-proof-block {
    width:100%;
    min-width:0;
    margin:clamp(14px, 1.5vw, 20px) 0;
    box-sizing:border-box;
}

.v2-proof-stats {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:clamp(6px, .8vw, 10px);
    width:100%;
    min-width:0;
    padding:
        clamp(11px, 1.1vw, 14px)
        clamp(12px, 1.4vw, 18px);
    box-sizing:border-box;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.v2-proof-stat {
    display:inline-flex;
    align-items:center;
    gap:5px;
    min-width:0;
    color:#222;
    text-decoration:none;
}

.v2-proof-stat i {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:10px;
    font-style:normal;
    line-height:1;
}

.v2-proof-review i {
    background:transparent;
    color:#e6a400;
    font-size:14px;
}

.v2-proof-stat strong {
    display:block;
    font-size:clamp(12px, 1vw, 14px);
    line-height:1.45;
    font-weight:700;
    white-space:normal;
    word-break:keep-all;
}

.v2-proof-dot {
    color:#aaa;
    font-size:15px;
    line-height:1;
}

.v2-model-guide {
    width:100%;
    min-width:0;
    margin-top:10px;
    border:1px solid #e7e7e7;
    border-radius:clamp(10px, 1vw, 14px);
    background:#fff;
    overflow:hidden;
    box-sizing:border-box;
}

.v2-model-guide summary {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    width:100%;
    min-height:clamp(48px, 4.5vw, 56px);
    padding:
        0
        clamp(13px, 1.4vw, 18px);
    box-sizing:border-box;
    cursor:pointer;
    list-style:none;
}

.v2-model-guide summary::-webkit-details-marker {
    display:none;
}

.v2-model-guide-title {
    display:flex;
    align-items:center;
    gap:8px;
    min-width:0;
}

.v2-model-guide-title i {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    width:18px;
    height:18px;
    border:1px solid #b8c6d8;
    border-radius:50%;
    color:#376da8;
    font-size:11px;
    font-style:normal;
    font-weight:800;
}

.v2-model-guide-title strong {
    min-width:0;
    color:#222;
    font-size:clamp(13px, 1.15vw, 15px);
    line-height:1.4;
    font-weight:750;
    word-break:keep-all;
}

.v2-model-guide summary > b {
    flex:0 0 auto;
    color:#777;
    font-size:15px;
    transition:transform .2s ease;
}

.v2-model-guide[open] summary > b {
    transform:rotate(180deg);
}

.v2-model-guide-body {
    padding:
        0
        clamp(13px, 1.4vw, 18px)
        clamp(14px, 1.5vw, 18px);
    color:#666;
    font-size:clamp(12px, 1vw, 14px);
    line-height:1.7;
    word-break:keep-all;
    overflow-wrap:anywhere;
}

/* 태블릿 */
@media (max-width:1024px) {
    .v2-proof-stats {
        gap:7px;
    }

    .v2-proof-stat strong {
        font-size:13px;
    }
}

/* 모바일 */
@media (max-width:640px) {
    .v2-proof-block {
        margin:14px 0;
    }

    .v2-proof-stats {
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:8px 12px;
        padding:12px 2px;
        border-bottom:0;
    }

    .v2-proof-stat {
        width:100%;
    }

    .v2-proof-stat:last-of-type {
        grid-column:1 / -1;
    }

    .v2-proof-dot {
        display:none;
    }

    .v2-proof-stat strong {
        font-size:12px;
        line-height:1.4;
    }

    .v2-model-guide {
        margin-top:0;
        border-radius:12px;
    }

    .v2-model-guide summary {
        min-height:50px;
        padding:0 13px;
    }

    .v2-model-guide-title strong {
        font-size:13px;
    }

    .v2-model-guide-body {
        padding:0 13px 14px;
        font-size:12px;
        line-height:1.65;
    }
}

/* 작은 모바일 */
@media (max-width:380px) {
    .v2-proof-stats {
        grid-template-columns:1fr;
    }

    .v2-proof-stat:last-of-type {
        grid-column:auto;
    }
}

/* V2 PRODUCT TRUST RESPONSIVE END */

/* V2 DUELLO ORDER AND AUTO COLOR START */

.v2-auto-color-row dd {
    display:flex;
    align-items:center;
    gap:8px;
    min-width:0;
}

.v2-auto-color-dot {
    display:inline-block;
    flex:0 0 auto;
    width:16px;
    height:16px;
    border:1px solid rgba(0,0,0,.12);
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #f5f0e8 0%,
        #c7b69b 100%
    );
}

.v2-proof-block,
.v2-model-guide,
.v2-information,
.v2-size-options,
.v2-item-tabs,
.v2-about-item {
    width:100%;
    min-width:0;
    max-width:100%;
    box-sizing:border-box;
}

@media (min-width:1025px) {
    .v2-proof-stats {
        display:flex;
        align-items:center;
        flex-wrap:wrap;
        gap:8px;
    }
}

@media (max-width:1024px) {
    .v2-proof-stats {
        display:flex;
        align-items:center;
        flex-wrap:wrap;
        gap:7px;
    }
}

@media (max-width:640px) {
    .v2-proof-stats {
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:8px 12px;
    }

    .v2-proof-stat:last-of-type {
        grid-column:1 / -1;
    }

    .v2-proof-dot {
        display:none;
    }
}

/* V2 DUELLO ORDER AND AUTO COLOR END */

/* =========================================================
   V2 PRODUCT DETAIL — DESKTOP MOBILE-FIRST FINAL
   PC도 모바일처럼 중앙 1열
   ========================================================= */

:root {
    --v2-detail-mobile-width:620px;
    --v2-detail-page-bg:#f3f3f3;
    --v2-detail-content-bg:#fff;
}

/* 페이지 전체 배경 */
html,
body {
    max-width:100%;
    overflow-x:hidden;
}

body:has(.v2-item-page),
body:has(.v2-product-page),
body:has(.v2-item-wrap),
body:has(.v2-item-detail) {
    background:var(--v2-detail-page-bg) !important;
}

/* 상세페이지 최상위 폭 */
.v2-item-page,
.v2-product-page,
.v2-item-wrap,
.v2-item-detail,
.v2-item-container,
.v2-product-detail {
    width:100% !important;
    max-width:var(--v2-detail-mobile-width) !important;
    min-width:0 !important;
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:0 !important;
    padding-right:0 !important;
    box-sizing:border-box !important;
    background:var(--v2-detail-content-bg) !important;
}

/* PC용 2단 레이아웃 완전 해제 */
.v2-item-main,
.v2-item-layout,
.v2-product-layout,
.v2-item-content,
.v2-product-content,
.v2-detail-layout,
.v2-detail-main {
    display:flex !important;
    flex-direction:column !important;
    grid-template-columns:none !important;
    grid-template-areas:none !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    gap:0 !important;
    margin:0 !important;
    padding:0 !important;
    box-sizing:border-box !important;
}

/* 갤러리와 상품정보 모두 한 줄 전체 사용 */
.v2-item-gallery,
.v2-gallery,
.v2-product-gallery,
.v2-item-visual,
.v2-item-info,
.v2-item-summary,
.v2-product-summary,
.v2-summary,
.v2-item-side,
.v2-product-side {
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    flex:0 0 auto !important;
    grid-column:auto !important;
    grid-row:auto !important;
    margin:0 !important;
    box-sizing:border-box !important;
}

/* PC sticky 상품정보 제거 */
.v2-item-info,
.v2-item-summary,
.v2-product-summary,
.v2-summary,
.v2-item-side,
.v2-product-side,
.v2-item-gallery,
.v2-gallery,
.v2-product-gallery {
    position:relative !important;
    inset:auto !important;
    transform:none !important;
}

/* 각 콘텐츠는 모바일식 여백 */
.v2-summary,
.v2-item-summary,
.v2-product-summary,
.v2-information,
.v2-product-information,
.v2-size-options,
.v2-option-section,
.v2-ai-section,
.v2-item-tabs,
.v2-about-item,
.v2-bottom-guide {
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    padding-left:clamp(15px, 4vw, 22px) !important;
    padding-right:clamp(15px, 4vw, 22px) !important;
    box-sizing:border-box !important;
}

/* 대표 이미지 */
.v2-gallery,
.v2-item-gallery,
.v2-product-gallery,
.v2-gallery-main,
.v2-main-image {
    width:100% !important;
    max-width:100% !important;
}

.v2-gallery img,
.v2-item-gallery img,
.v2-product-gallery img,
.v2-gallery-main img,
.v2-main-image img {
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    object-fit:contain !important;
}

/* 상세 이미지도 본문 폭에 맞춤 */
.v2-detail-images,
.v2-item-detail-images,
.v2-description-images,
.v2-tab-detail,
.v2-about-item + * {
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
}

.v2-detail-images img,
.v2-item-detail-images img,
.v2-description-images img,
.v2-tab-detail img,
.v2-item-tabs img {
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/* 긴 텍스트와 버튼 넘침 방지 */
.v2-item-page *,
.v2-product-page *,
.v2-item-wrap *,
.v2-item-detail * {
    box-sizing:border-box;
}

.v2-item-page p,
.v2-item-page strong,
.v2-item-page span,
.v2-item-page dd,
.v2-item-page dt,
.v2-product-page p,
.v2-product-page strong,
.v2-product-page span,
.v2-product-page dd,
.v2-product-page dt {
    max-width:100%;
    overflow-wrap:anywhere;
}

.v2-item-page button,
.v2-item-page select,
.v2-item-page input,
.v2-item-page textarea,
.v2-product-page button,
.v2-product-page select,
.v2-product-page input,
.v2-product-page textarea {
    max-width:100%;
}

/* 추천상품: 모바일형 가로 슬라이더 */
.v2-product-slider-section {
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    padding:
        clamp(22px, 5vw, 32px)
        clamp(15px, 4vw, 22px) !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
}

.v2-product-slider-track {
    display:flex !important;
    grid-template-columns:none !important;
    gap:12px !important;
    width:100% !important;
    max-width:100% !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    scroll-snap-type:x mandatory !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
}

.v2-product-slider-track::-webkit-scrollbar {
    display:none !important;
}

.v2-product-slider-card {
    flex:0 0 clamp(148px, 43vw, 205px) !important;
    width:clamp(148px, 43vw, 205px) !important;
    min-width:0 !important;
    scroll-snap-align:start !important;
}

/* 하단 구매 바도 중앙 620px */
.v2-buy-bar,
.v2-bottom-buy-bar,
.v2-fixed-buy-bar,
.v2-item-buy-bar {
    position:fixed !important;
    left:50% !important;
    right:auto !important;
    bottom:0 !important;
    width:100% !important;
    max-width:var(--v2-detail-mobile-width) !important;
    transform:translateX(-50%) !important;
    box-sizing:border-box !important;
    z-index:1000 !important;
}

/* 구매 바가 내용을 가리지 않게 */
.v2-item-page,
.v2-product-page,
.v2-item-wrap,
.v2-item-detail {
    padding-bottom:calc(82px + env(safe-area-inset-bottom)) !important;
}

/* PC에서 중앙 모바일 페이지 경계 */
@media (min-width:621px) {
    .v2-item-page,
    .v2-product-page,
    .v2-item-wrap,
    .v2-item-detail,
    .v2-item-container,
    .v2-product-detail {
        min-height:100vh;
        box-shadow:
            0 0 0 1px rgba(0,0,0,.035),
            0 8px 40px rgba(0,0,0,.06);
    }

    /* PC에서도 모바일 글자 크기 유지 */
    .v2-summary,
    .v2-item-summary,
    .v2-product-summary {
        font-size:14px !important;
    }

    .v2-product-title,
    .v2-item-title,
    .v2-summary h1 {
        font-size:clamp(20px, 2vw, 25px) !important;
        line-height:1.35 !important;
    }

    .v2-product-price,
    .v2-item-price,
    .v2-summary-price {
        font-size:clamp(23px, 2.2vw, 28px) !important;
    }
}

/* 실제 모바일은 외곽 그림자와 회색 여백 제거 */
@media (max-width:620px) {
    body:has(.v2-item-page),
    body:has(.v2-product-page),
    body:has(.v2-item-wrap),
    body:has(.v2-item-detail) {
        background:#fff !important;
    }

    .v2-item-page,
    .v2-product-page,
    .v2-item-wrap,
    .v2-item-detail,
    .v2-item-container,
    .v2-product-detail {
        max-width:100% !important;
        box-shadow:none !important;
    }

    .v2-buy-bar,
    .v2-bottom-buy-bar,
    .v2-fixed-buy-bar,
    .v2-item-buy-bar {
        max-width:100% !important;
    }
}

/* =========================================================
   V2 PRODUCT DETAIL — DESKTOP MOBILE-FIRST END
   ========================================================= */

/* V2 ALL DEVICE SINGLE COLUMN START */

/*
 * 모바일 / 태블릿 / PC 모두 같은 단일열 구조
 * 화면 폭에 따라 자연스럽게 늘어나되 760px까지만 확장
 */

:root{
    --max:760px !important;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

.v2-page{
    width:100% !important;
    max-width:760px !important;
    min-width:0 !important;
    margin:0 auto !important;
    border-radius:0 !important;
    overflow:hidden !important;
    background:#fff !important;
}

/* 모든 기기에서 상단은 단일열 */
.v2-top{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    padding:0 !important;
}

.v2-left,
.v2-right{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
    padding:0 !important;
}

/* PC용 sticky / grid 완전 해제 */
.v2-right,
.v2-summary,
.v2-information,
.v2-options{
    position:relative !important;
    top:auto !important;
    right:auto !important;
    bottom:auto !important;
    left:auto !important;
    transform:none !important;
}

/* 갤러리 */
.v2-gallery,
.v2-gallery-track,
.v2-gallery-slide{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
}

.v2-gallery-track{
    height:auto !important;
}

.v2-gallery-slide{
    height:auto !important;
    aspect-ratio:1 / 1 !important;
}

.v2-gallery-slide img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

/* 본문 전체 자동 폭 */
.v2-summary,
.v2-information,
.v2-options,
.v2-about,
.v2-detail,
.v2-inspection,
.v2-review,
.v2-delivery,
.v2-related,
.v2-product-slider-section{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    box-sizing:border-box !important;
}

/* 헤더와 탭도 본문 폭에 맞춤 */
.v2-header,
.v2-tabs{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
}

/* 하단 구매바 */
.v2-buy-bar{
    right:auto !important;
    left:50% !important;
    width:100% !important;
    max-width:760px !important;
    margin:0 !important;
    transform:translateX(-50%) !important;
}

/* 모달과 시트도 본문 폭 기준 */
.v2-sheet-panel,
.v2-size-panel{
    width:100% !important;
    max-width:760px !important;
}

/* 모바일 */
@media (max-width:699px){

    :root{
        --max:100% !important;
    }

    html,
    body{
        background:#fff !important;
    }

    .v2-page{
        width:100% !important;
        max-width:100% !important;
        margin:0 !important;
        border-radius:0 !important;
        box-shadow:none !important;
    }

    .v2-buy-bar,
    .v2-sheet-panel,
    .v2-size-panel{
        max-width:100% !important;
    }
}

/* 태블릿 */
@media (min-width:700px) and (max-width:899px){

    :root{
        --max:760px !important;
    }

    .v2-page{
        width:100% !important;
        max-width:760px !important;
        margin:0 auto !important;
        border-radius:0 !important;
        box-shadow:none !important;
    }
}

/* PC도 모바일과 동일한 단일열 */
@media (min-width:900px){

    :root{
        --max:760px !important;
    }

    html,
    body{
        background:#ececea !important;
    }

    .v2-page{
        width:100% !important;
        max-width:760px !important;
        margin:18px auto !important;
        border-radius:18px !important;
        box-shadow:0 0 34px rgba(0,0,0,.08) !important;
    }

    .v2-top{
        display:block !important;
        width:100% !important;
        max-width:none !important;
        margin:0 !important;
        padding:0 !important;
    }

    .v2-left,
    .v2-right{
        width:100% !important;
        max-width:none !important;
    }

    .v2-buy-bar{
        max-width:760px !important;
    }
}

/* V2 ALL DEVICE SINGLE COLUMN END */

/* =========================================================
   V2 DETAIL IMAGE GAP + ROUND FINAL
   상세이미지 사이 여백 / 살짝 라운드
   ========================================================= */

.v2-detail{
    padding-right:0 !important;
    padding-left:0 !important;
    background:#fff !important;
}

/* 상세 이미지 제목은 기존 좌우 여백 유지 */
.v2-detail > .v2-section-head{
    padding-right:16px !important;
    padding-left:16px !important;
}

/* 이미지 사이에 일정한 간격 */
.v2-detail-list{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
    gap:14px !important;

    width:100% !important;
    max-width:100% !important;

    margin:0 !important;
    padding:0 12px 18px !important;

    background:#fff !important;
    box-sizing:border-box !important;
}

/* 개별 상세이미지 카드 */
.v2-detail-image{
    display:block !important;

    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;

    margin:0 !important;
    padding:0 !important;

    overflow:hidden !important;

    border:0 !important;
    border-radius:12px !important;

    background:#f5f5f5 !important;

    box-shadow:
        0 1px 0 rgba(0,0,0,.025) !important;
}

/* 숨김 이미지는 더보기 전까지 계속 숨김 */
.v2-detail-image.v2-detail-hidden{
    display:none !important;
}

/* 더보기 후 숨김 이미지 표시 */
.v2-detail-list.open
.v2-detail-image.v2-detail-hidden{
    display:block !important;
}

/* 이미지 자체도 버튼 라운드를 따라감 */
.v2-detail-image img{
    display:block !important;

    width:100% !important;
    max-width:100% !important;
    height:auto !important;

    margin:0 !important;
    padding:0 !important;

    border-radius:12px !important;

    object-fit:contain !important;
}

/* 상세 이미지 더보기 버튼 */
.v2-detail-more{
    width:calc(100% - 24px) !important;
    margin:0 12px 24px !important;
}

/* 작은 모바일에서는 여백만 살짝 축소 */
@media(max-width:380px){

    .v2-detail-list{
        gap:10px !important;
        padding-right:8px !important;
        padding-left:8px !important;
    }

    .v2-detail-image,
    .v2-detail-image img{
        border-radius:10px !important;
    }

    .v2-detail-more{
        width:calc(100% - 16px) !important;
        margin-right:8px !important;
        margin-left:8px !important;
    }
}

/* =========================================================
   V2 DETAIL IMAGE GAP + ROUND END
   ========================================================= */

/* =========================================================
   V2 IMAGE MENU RESPONSIVE FINAL
   돋보기 / 홈 / 공유 — 대표 이미지 기준 반응형
   ========================================================= */

/* 혹시 과거 헤더가 렌더링돼도 완전히 차단 */
.v2-preview,
.v2-header,
.v2-header-actions,
.v2-logo{
    display:none !important;
}

/* 대표 이미지 영역을 기준점으로 사용 */
.v2-left{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
}

.v2-gallery{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
}

/* 이미지 위 메뉴 */
.v2-image-header{
    position:absolute !important;

    top:clamp(10px, 2.3vw, 16px) !important;
    right:clamp(10px, 2.3vw, 16px) !important;

    z-index:250 !important;

    display:flex !important;
    align-items:center !important;

    gap:clamp(5px, 1.2vw, 9px) !important;

    width:auto !important;
    height:auto !important;

    margin:0 !important;
    padding:0 !important;

    pointer-events:auto !important;
}

/* 아이콘 버튼 크기도 화면 폭에 맞춤 */
.v2-image-header-button{
    flex:0 0 auto !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:clamp(36px, 7vw, 43px) !important;
    height:clamp(36px, 7vw, 43px) !important;

    min-width:36px !important;
    min-height:36px !important;

    margin:0 !important;
    padding:0 !important;

    border:1px solid rgba(0,0,0,.08) !important;
    border-radius:50% !important;

    background:rgba(255,255,255,.94) !important;
    color:#111 !important;

    box-shadow:
        0 3px 12px rgba(0,0,0,.12) !important;

    backdrop-filter:blur(10px) !important;
    -webkit-backdrop-filter:blur(10px) !important;

    transform:none !important;
}

.v2-image-header-button svg{
    display:block !important;

    width:clamp(18px, 3.7vw, 22px) !important;
    height:clamp(18px, 3.7vw, 22px) !important;

    margin:0 !important;
    padding:0 !important;

    fill:none !important;
    stroke:currentColor !important;
    stroke-width:1.8 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
}

.v2-image-header-button:active{
    transform:scale(.94) !important;
}

/* 아주 작은 모바일 */
@media(max-width:360px){

    .v2-image-header{
        top:9px !important;
        right:8px !important;
        gap:5px !important;
    }

    .v2-image-header-button{
        width:34px !important;
        height:34px !important;
        min-width:34px !important;
        min-height:34px !important;
    }

    .v2-image-header-button svg{
        width:17px !important;
        height:17px !important;
    }
}

/* 일반 모바일 */
@media(min-width:361px) and (max-width:699px){

    .v2-image-header{
        top:11px !important;
        right:10px !important;
    }

    .v2-image-header-button{
        width:38px !important;
        height:38px !important;
    }
}

/* 태블릿 */
@media(min-width:700px) and (max-width:899px){

    .v2-image-header{
        top:14px !important;
        right:14px !important;
        gap:8px !important;
    }

    .v2-image-header-button{
        width:41px !important;
        height:41px !important;
    }
}

/* PC 중앙 모바일형 */
@media(min-width:900px){

    .v2-image-header{
        top:15px !important;
        right:15px !important;
        gap:8px !important;
    }

    .v2-image-header-button{
        width:42px !important;
        height:42px !important;
    }
}

/* V2 IMAGE MENU RESPONSIVE END */

/* =========================================================
   BT V2 IMAGE ACTIONS — CONTAINER RESPONSIVE FINAL
   대표이미지 폭 기준 돋보기 / 홈 / 공유
   ========================================================= */

.v2-left{
    position:relative !important;
    container-type:inline-size !important;
    container-name:v2ProductImage !important;
}

/* 예전에 남은 헤더와 공유 UI 강제 차단 */
.v2-header,
.v2-header-actions,
.v2-preview,
.v2-summary-share,
.v2-product-share,
.v2-share-button,
[data-product-share],
[data-share]:not(#v2ShareButton){
    display:none !important;
}

/* 이미지 위 버튼 묶음 */
.v2-image-header{
    position:absolute !important;
    top:12px !important;
    right:12px !important;
    z-index:1000 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:7px !important;

    width:auto !important;
    max-width:calc(100% - 24px) !important;
    height:auto !important;

    margin:0 !important;
    padding:0 !important;

    pointer-events:auto !important;
}

/* 기본값 */
.v2-image-header-button{
    position:relative !important;
    flex:0 0 38px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:38px !important;
    height:38px !important;
    min-width:38px !important;
    min-height:38px !important;

    margin:0 !important;
    padding:0 !important;

    border:1px solid rgba(0,0,0,.08) !important;
    border-radius:50% !important;

    background:rgba(255,255,255,.95) !important;
    color:#111 !important;

    box-shadow:0 3px 12px rgba(0,0,0,.12) !important;

    outline:0 !important;
    transform:none !important;

    backdrop-filter:blur(10px) !important;
    -webkit-backdrop-filter:blur(10px) !important;
}

/* 공유 버튼 뒤의 예전 원·가상 요소까지 제거 */
#v2ShareButton::before,
#v2ShareButton::after{
    content:none !important;
    display:none !important;
}

#v2ShareButton{
    border-color:rgba(0,0,0,.08) !important;
    box-shadow:0 3px 12px rgba(0,0,0,.12) !important;
}

/* SVG도 컨테이너 크기에 맞춤 */
.v2-image-header-button svg{
    display:block !important;

    width:19px !important;
    height:19px !important;

    min-width:0 !important;
    min-height:0 !important;

    margin:0 !important;
    padding:0 !important;

    fill:none !important;
    stroke:currentColor !important;
    stroke-width:1.8 !important;
}

/* 대표이미지가 좁은 모바일 */
@container v2ProductImage (max-width:380px){

    .v2-image-header{
        top:9px !important;
        right:9px !important;
        gap:5px !important;
    }

    .v2-image-header-button{
        flex-basis:34px !important;
        width:34px !important;
        height:34px !important;
        min-width:34px !important;
        min-height:34px !important;
    }

    .v2-image-header-button svg{
        width:17px !important;
        height:17px !important;
    }
}

/* 일반 모바일 */
@container v2ProductImage
    (min-width:381px) and (max-width:520px){

    .v2-image-header{
        top:11px !important;
        right:11px !important;
        gap:6px !important;
    }

    .v2-image-header-button{
        flex-basis:38px !important;
        width:38px !important;
        height:38px !important;
        min-width:38px !important;
        min-height:38px !important;
    }

    .v2-image-header-button svg{
        width:19px !important;
        height:19px !important;
    }
}

/* 태블릿 및 PC 중앙 앱 폭 */
@container v2ProductImage (min-width:521px){

    .v2-image-header{
        top:14px !important;
        right:14px !important;
        gap:8px !important;
    }

    .v2-image-header-button{
        flex-basis:42px !important;
        width:42px !important;
        height:42px !important;
        min-width:42px !important;
        min-height:42px !important;
    }

    .v2-image-header-button svg{
        width:21px !important;
        height:21px !important;
    }
}

/* 컨테이너쿼리 미지원 브라우저용 */
@supports not (container-type:inline-size){

    @media(max-width:480px){

        .v2-image-header{
            top:10px !important;
            right:10px !important;
            gap:6px !important;
        }

        .v2-image-header-button{
            flex-basis:36px !important;
            width:36px !important;
            height:36px !important;
            min-width:36px !important;
            min-height:36px !important;
        }
    }

    @media(min-width:481px){

        .v2-image-header-button{
            flex-basis:42px !important;
            width:42px !important;
            height:42px !important;
            min-width:42px !important;
            min-height:42px !important;
        }
    }
}

/* BT V2 IMAGE ACTIONS END */

/* =========================================================
   V2 GALLERY ACTIONS — REAL RESPONSIVE FINAL
   실제 대표이미지 컨테이너 안에서 반응형
   ========================================================= */

/* 실제 기준 컨테이너 */
.v2-gallery{
    position:relative !important;
    container-type:inline-size !important;
    overflow:hidden !important;
}

/* 버튼 3개 묶음 */
.v2-gallery > .v2-image-header{
    position:absolute !important;
    top:clamp(8px, 2.5cqw, 15px) !important;
    right:clamp(8px, 2.5cqw, 15px) !important;
    left:auto !important;
    bottom:auto !important;

    z-index:100 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;

    gap:clamp(5px, 1.2cqw, 8px) !important;

    width:auto !important;
    height:auto !important;
    max-width:calc(100% - 16px) !important;

    margin:0 !important;
    padding:0 !important;

    transform:none !important;
}

/* 버튼 크기: 갤러리 폭 기준 */
.v2-gallery > .v2-image-header
.v2-image-header-button{
    position:relative !important;

    flex:0 0 clamp(34px, 7.2cqw, 42px) !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:clamp(34px, 7.2cqw, 42px) !important;
    height:clamp(34px, 7.2cqw, 42px) !important;

    min-width:34px !important;
    min-height:34px !important;
    max-width:42px !important;
    max-height:42px !important;

    margin:0 !important;
    padding:0 !important;

    border:1px solid rgba(0,0,0,.08) !important;
    border-radius:50% !important;

    outline:none !important;

    background:rgba(255,255,255,.95) !important;
    color:#111 !important;

    box-shadow:0 2px 9px rgba(0,0,0,.11) !important;

    transform:none !important;
    filter:none !important;

    appearance:none !important;
    -webkit-appearance:none !important;

    backdrop-filter:blur(10px) !important;
    -webkit-backdrop-filter:blur(10px) !important;
}

/* 빨간 원·핑크 테두리·과거 공유 효과 전부 제거 */
.v2-gallery > .v2-image-header
.v2-image-header-button::before,
.v2-gallery > .v2-image-header
.v2-image-header-button::after,
#v2ShareButton::before,
#v2ShareButton::after{
    content:none !important;
    display:none !important;
}

.v2-gallery > .v2-image-header
.v2-image-header-button:focus,
.v2-gallery > .v2-image-header
.v2-image-header-button:focus-visible,
.v2-gallery > .v2-image-header
.v2-image-header-button:hover,
#v2ShareButton:focus,
#v2ShareButton:focus-visible,
#v2ShareButton:hover{
    border-color:rgba(0,0,0,.08) !important;
    outline:0 !important;
    box-shadow:0 2px 9px rgba(0,0,0,.11) !important;
}

.v2-gallery > .v2-image-header
.v2-image-header-button:active{
    border-color:rgba(0,0,0,.08) !important;
    outline:0 !important;
    box-shadow:0 1px 5px rgba(0,0,0,.1) !important;
    transform:scale(.94) !important;
}

/* 아이콘 */
.v2-gallery > .v2-image-header
.v2-image-header-button svg{
    display:block !important;

    width:clamp(17px, 3.6cqw, 21px) !important;
    height:clamp(17px, 3.6cqw, 21px) !important;

    margin:0 !important;
    padding:0 !important;

    fill:none !important;
    stroke:currentColor !important;
    stroke-width:1.8 !important;
}

/* 작은 모바일 */
@container (max-width:380px){

    .v2-gallery > .v2-image-header{
        top:8px !important;
        right:8px !important;
        gap:5px !important;
    }

    .v2-gallery > .v2-image-header
    .v2-image-header-button{
        flex-basis:34px !important;
        width:34px !important;
        height:34px !important;
    }
}

/* 일반 모바일 */
@container (min-width:381px) and (max-width:520px){

    .v2-gallery > .v2-image-header{
        top:10px !important;
        right:10px !important;
        gap:6px !important;
    }

    .v2-gallery > .v2-image-header
    .v2-image-header-button{
        flex-basis:38px !important;
        width:38px !important;
        height:38px !important;
    }
}

/* 태블릿과 PC 중앙 앱 폭 */
@container (min-width:521px){

    .v2-gallery > .v2-image-header{
        top:14px !important;
        right:14px !important;
        gap:8px !important;
    }

    .v2-gallery > .v2-image-header
    .v2-image-header-button{
        flex-basis:42px !important;
        width:42px !important;
        height:42px !important;
    }
}

/* 컨테이너쿼리 미지원 브라우저 */
@supports not (container-type:inline-size){

    .v2-gallery > .v2-image-header{
        top:12px !important;
        right:12px !important;
        gap:7px !important;
    }

    .v2-gallery > .v2-image-header
    .v2-image-header-button{
        width:38px !important;
        height:38px !important;
        flex-basis:38px !important;
    }

    @media(max-width:380px){

        .v2-gallery > .v2-image-header
        .v2-image-header-button{
            width:34px !important;
            height:34px !important;
            flex-basis:34px !important;
        }
    }

    @media(min-width:700px){

        .v2-gallery > .v2-image-header
        .v2-image-header-button{
            width:42px !important;
            height:42px !important;
            flex-basis:42px !important;
        }
    }
}

/* V2 GALLERY ACTIONS END */

/* =========================================================
   V2 GALLERY TOP ACTIONS RESPONSIVE FINAL
   실제 갤러리 기준 돋보기 / 홈 / 공유
   ========================================================= */

.v2-gallery{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    container-type:inline-size !important;
    overflow:hidden !important;
}

/* 기존 찜 버튼 완전 차단 */
.v2-gallery-wish{
    display:none !important;
}

/* 상단 아이콘 묶음 */
.v2-gallery > .v2-image-header{
    position:absolute !important;
    top:clamp(8px, 2.2cqw, 15px) !important;
    right:clamp(8px, 2.2cqw, 15px) !important;
    left:auto !important;
    bottom:auto !important;

    z-index:200 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;

    gap:clamp(5px, 1.1cqw, 8px) !important;

    width:auto !important;
    max-width:calc(100% - 16px) !important;

    margin:0 !important;
    padding:0 !important;

    transform:none !important;
}

/* 아이콘 버튼 */
.v2-gallery > .v2-image-header
.v2-image-header-button{
    flex:0 0 clamp(34px, 7cqw, 42px) !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:clamp(34px, 7cqw, 42px) !important;
    height:clamp(34px, 7cqw, 42px) !important;

    min-width:34px !important;
    min-height:34px !important;
    max-width:42px !important;
    max-height:42px !important;

    margin:0 !important;
    padding:0 !important;

    border:1px solid rgba(0,0,0,.08) !important;
    border-radius:50% !important;

    background:rgba(255,255,255,.95) !important;
    color:#111 !important;

    box-shadow:0 2px 10px rgba(0,0,0,.12) !important;

    outline:none !important;
    transform:none !important;
    appearance:none !important;
    -webkit-appearance:none !important;
}

/* 빨간 테두리·가상요소 제거 */
.v2-gallery > .v2-image-header
.v2-image-header-button::before,
.v2-gallery > .v2-image-header
.v2-image-header-button::after,
#v2ShareButton::before,
#v2ShareButton::after{
    content:none !important;
    display:none !important;
}

.v2-gallery > .v2-image-header
.v2-image-header-button:hover,
.v2-gallery > .v2-image-header
.v2-image-header-button:focus,
.v2-gallery > .v2-image-header
.v2-image-header-button:focus-visible{
    border-color:rgba(0,0,0,.08) !important;
    outline:0 !important;
    box-shadow:0 2px 10px rgba(0,0,0,.12) !important;
}

/* SVG */
.v2-gallery > .v2-image-header
.v2-image-header-button svg{
    display:block !important;
    width:clamp(17px, 3.5cqw, 21px) !important;
    height:clamp(17px, 3.5cqw, 21px) !important;

    margin:0 !important;
    padding:0 !important;

    fill:none !important;
    stroke:currentColor !important;
    stroke-width:1.8 !important;
}

/* 작은 모바일 */
@container (max-width:380px){

    .v2-gallery > .v2-image-header{
        top:8px !important;
        right:8px !important;
        gap:5px !important;
    }

    .v2-gallery > .v2-image-header
    .v2-image-header-button{
        flex-basis:34px !important;
        width:34px !important;
        height:34px !important;
    }
}

/* 일반 모바일 */
@container (min-width:381px) and (max-width:520px){

    .v2-gallery > .v2-image-header{
        top:10px !important;
        right:10px !important;
        gap:6px !important;
    }

    .v2-gallery > .v2-image-header
    .v2-image-header-button{
        flex-basis:38px !important;
        width:38px !important;
        height:38px !important;
    }
}

/* 태블릿 / PC 중앙 앱 폭 */
@container (min-width:521px){

    .v2-gallery > .v2-image-header{
        top:14px !important;
        right:14px !important;
        gap:8px !important;
    }

    .v2-gallery > .v2-image-header
    .v2-image-header-button{
        flex-basis:42px !important;
        width:42px !important;
        height:42px !important;
    }
}

/* 컨테이너 쿼리 미지원 브라우저 */
@supports not (container-type:inline-size){

    @media(max-width:480px){

        .v2-gallery > .v2-image-header{
            top:10px !important;
            right:10px !important;
            gap:6px !important;
        }

        .v2-gallery > .v2-image-header
        .v2-image-header-button{
            width:36px !important;
            height:36px !important;
            flex-basis:36px !important;
        }
    }

    @media(min-width:481px){

        .v2-gallery > .v2-image-header
        .v2-image-header-button{
            width:42px !important;
            height:42px !important;
            flex-basis:42px !important;
        }
    }
}

/* V2 GALLERY TOP ACTIONS END */

/* =========================================================
   V2 GALLERY ACTIONS SIMPLE RESPONSIVE — ABSOLUTE FINAL
   ========================================================= */

/* 기준은 실제 대표이미지 */
.v2-gallery{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    overflow:hidden !important;
}

/* 돋보기 / 홈 / 공유 묶음 */
.v2-gallery .v2-image-header{
    position:absolute !important;
    top:max(8px, 2%) !important;
    right:max(8px, 2%) !important;
    bottom:auto !important;
    left:auto !important;
    z-index:9999 !important;

    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:clamp(5px, 1.5vw, 8px) !important;

    width:auto !important;
    max-width:60% !important;
    height:auto !important;

    margin:0 !important;
    padding:0 !important;

    transform:none !important;
}

/* 각 버튼: 모바일 34px → 태블릿/PC 최대 42px */
.v2-gallery .v2-image-header-button{
    position:relative !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    flex:0 0 clamp(34px, 8vw, 42px) !important;

    width:clamp(34px, 8vw, 42px) !important;
    height:clamp(34px, 8vw, 42px) !important;

    min-width:34px !important;
    min-height:34px !important;
    max-width:42px !important;
    max-height:42px !important;

    margin:0 !important;
    padding:0 !important;

    border:1px solid rgba(0,0,0,.08) !important;
    border-radius:999px !important;

    background:rgba(255,255,255,.95) !important;
    color:#111 !important;

    box-shadow:0 2px 10px rgba(0,0,0,.12) !important;

    outline:0 !important;
    transform:none !important;
    appearance:none !important;
    -webkit-appearance:none !important;
}

/* 아이콘 크기 */
.v2-gallery .v2-image-header-button svg{
    display:block !important;

    width:clamp(17px, 4vw, 21px) !important;
    height:clamp(17px, 4vw, 21px) !important;

    margin:0 !important;
    padding:0 !important;

    fill:none !important;
    stroke:currentColor !important;
    stroke-width:1.8 !important;

    transform:none !important;
}

/* 모든 과거 빨간 테두리·가상요소 제거 */
.v2-gallery .v2-image-header-button::before,
.v2-gallery .v2-image-header-button::after,
#v2ShareButton::before,
#v2ShareButton::after{
    content:none !important;
    display:none !important;
}

/* 클릭·포커스 때도 빨간색 금지 */
.v2-gallery .v2-image-header-button:hover,
.v2-gallery .v2-image-header-button:focus,
.v2-gallery .v2-image-header-button:focus-visible,
.v2-gallery .v2-image-header-button:active{
    border-color:rgba(0,0,0,.08) !important;
    outline:0 !important;
    box-shadow:0 2px 10px rgba(0,0,0,.12) !important;
}

/* 360px 이하 */
@media(max-width:360px){

    .v2-gallery .v2-image-header{
        top:8px !important;
        right:8px !important;
        gap:5px !important;
    }

    .v2-gallery .v2-image-header-button{
        flex-basis:32px !important;
        width:32px !important;
        height:32px !important;
        min-width:32px !important;
        min-height:32px !important;
    }

    .v2-gallery .v2-image-header-button svg{
        width:16px !important;
        height:16px !important;
    }
}

/* 361~600px 모바일 */
@media(min-width:361px) and (max-width:600px){

    .v2-gallery .v2-image-header{
        top:10px !important;
        right:10px !important;
        gap:6px !important;
    }

    .v2-gallery .v2-image-header-button{
        flex-basis:36px !important;
        width:36px !important;
        height:36px !important;
        min-width:36px !important;
        min-height:36px !important;
    }

    .v2-gallery .v2-image-header-button svg{
        width:18px !important;
        height:18px !important;
    }
}

/* 태블릿 */
@media(min-width:601px) and (max-width:899px){

    .v2-gallery .v2-image-header{
        top:13px !important;
        right:13px !important;
        gap:7px !important;
    }

    .v2-gallery .v2-image-header-button{
        flex-basis:40px !important;
        width:40px !important;
        height:40px !important;
        min-width:40px !important;
        min-height:40px !important;
    }

    .v2-gallery .v2-image-header-button svg{
        width:20px !important;
        height:20px !important;
    }
}

/* PC */
@media(min-width:900px){

    .v2-gallery .v2-image-header{
        top:14px !important;
        right:14px !important;
        gap:8px !important;
    }

    .v2-gallery .v2-image-header-button{
        flex-basis:42px !important;
        width:42px !important;
        height:42px !important;
        min-width:42px !important;
        min-height:42px !important;
    }

    .v2-gallery .v2-image-header-button svg{
        width:21px !important;
        height:21px !important;
    }
}

/* =========================================================
   V2 GALLERY ACTIONS SIMPLE RESPONSIVE END
   ========================================================= */

/* 상단 돋보기 · 홈 · 공유 hover 모션 */
.v2-gallery .v2-image-header-button{
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-color .18s ease !important;
    transform:translateY(0) scale(1) !important;
}

.v2-gallery .v2-image-header-button:hover{
    transform:translateY(-3px) scale(1.06) !important;
    background:#fff !important;
    box-shadow:0 7px 18px rgba(0,0,0,.18) !important;
}

.v2-gallery .v2-image-header-button:active{
    transform:translateY(-1px) scale(.96) !important;
    box-shadow:0 3px 8px rgba(0,0,0,.14) !important;
}

/* 키보드 접근 시에도 같은 효과 */
.v2-gallery .v2-image-header-button:focus-visible{
    transform:translateY(-3px) scale(1.06) !important;
    box-shadow:
        0 7px 18px rgba(0,0,0,.18),
        0 0 0 3px rgba(0,0,0,.08) !important;
}

/* 모바일 터치에서는 눌림 효과만 */
@media (hover:none){
    .v2-gallery .v2-image-header-button:hover{
        transform:translateY(0) scale(1) !important;
        box-shadow:0 2px 10px rgba(0,0,0,.12) !important;
    }

    .v2-gallery .v2-image-header-button:active{
        transform:scale(.92) !important;
    }
}
