@charset "utf-8";

/*
 * HUNHUNHAN product detail shell v1
 * 상품 데이터와 구매 로직은 기존 view.php를 사용하고, 모든 상품에 공통 UI를 적용한다.
 */

body.hh-product-page {
    --hh-product-thumb: #f6f4f0;
    --hh-product-shadow: 0 24px 70px rgba(20, 31, 26, .08);
    padding-bottom: 0;
    overflow-x: hidden;
}

.hh-product-page #wrap {
    min-width: 0;
    padding: 0;
    background: #fff;
}

.hh-product-page #hd,
.hh-product-page .q_right,
.hh-product-page #ft,
.hh-product-page .sVisual,
.hh-product-page .sub_nav {
    display: none !important;
}

.hh-product-page .hh-header {
    border-bottom: 1px solid rgba(225, 228, 226, .7);
}

.hh-product-main {
    display: block;
    padding: 0 0 124px;
}

.hh-product-page #container_wr,
.hh-product-page #container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: visible !important;
}

.hh-product-breadcrumb {
    width: var(--hh-shell);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 28px 0 24px;
    color: #8a918d;
    font-size: 13px;
    font-weight: 450;
    line-height: 1.4;
}

.hh-product-breadcrumb a:hover { color: var(--hh-green); }
.hh-product-breadcrumb span:last-child {
    max-width: 48ch;
    overflow: hidden;
    color: #535a56;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hh-product-page #sit {
    width: 100%;
    margin: 0;
}

.hh-product-page #sit_ov_wrap {
    width: var(--hh-shell);
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
    align-items: start;
    gap: clamp(52px, 5.2vw, 88px);
    margin: 0 auto 54px;
    padding: 0;
    color: var(--hh-ink);
}

.hh-product-page .sit_pvi_wrap {
    width: 100%;
    min-width: 0;
}

.hh-product-page #sit_pvi {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: var(--hh-product-thumb);
}

.hh-product-page #sit_pvi .swiper-wrapper,
.hh-product-page #sit_pvi .swiper-slide { height: auto; }

.hh-product-page #sit_pvi .swiper-slide {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 8%;
}

.hh-product-page #sit_pvi .swiper-slide::after { display: none; }

.hh-product-page #sit_pvi .swiper-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(27, 33, 29, .08));
}

.hh-product-page .it_pvi_thumbs {
    position: relative;
    margin-top: 14px;
    padding: 0 38px;
}

.hh-product-page .it_pvi_thumbs .sw_container { overflow: hidden; }
.hh-product-page .it_pvi_thumbs .swiper-slide {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--hh-product-thumb);
    cursor: pointer;
}

.hh-product-page .it_pvi_thumbs .swiper-slide-thumb-active { border-color: var(--hh-green); }
.hh-product-page .it_pvi_thumbs .swiper-slide img { width: 100%; height: 100%; padding: 7%; object-fit: contain; }
.hh-product-page .it_pvi_thumbs .sw_btn {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    color: var(--hh-ink);
    background: none;
}
.hh-product-page .it_pvi_thumbs .sw_btn::after { font-size: 12px; font-weight: 800; }

.hh-product-page #sit_ov {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 18px 0 0;
    background: transparent;
}

.hh-product-page #sit_ov > h2 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.hh-product-page .sit_ov_wr { position: relative; }

.hh-product-eyebrow {
    margin: 0 108px 14px 0;
    color: var(--hh-green);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hh-product-page #sit_ov .action_btns {
    position: absolute;
    top: -4px;
    right: 0;
    display: flex;
    gap: 8px;
}

.hh-product-page #sit_ov .action_btns button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--hh-line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}

.hh-product-page #sit_ov .action_btns button:hover,
.hh-product-page #sit_ov .action_btns #sit_btn_wish.active {
    color: var(--hh-green);
    border-color: var(--hh-green);
    background: var(--hh-soft);
}

.hh-product-page #sit_ov .action_btns svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hh-product-page #sit_ov .action_btns #sit_btn_wish.active svg { fill: rgba(33, 77, 67, .14); }
.hh-product-page #sit_ov .action_btns .wish_count { display: none !important; }

.hh-product-page .review_average {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.hh-product-page .review_average .st_score {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: var(--hh-ink);
    background: none;
    font-size: 13px;
    font-weight: 560;
    line-height: 1.5;
}

.hh-product-page .review_average .st_score::before {
    content: "★";
    position: absolute;
    top: -1px;
    left: 0;
    color: var(--hh-yellow);
    font-size: 13px;
}

.hh-product-page .review_average .review_ea {
    color: #59615d;
    font-size: 13px;
    font-weight: 560;
}

.hh-product-page .sit_title_row { display: flex; align-items: center; gap: 10px; }
.hh-product-page #sit_title {
    display: block;
    margin: 0;
    padding: 0;
    color: var(--hh-ink);
    font-size: clamp(28px, 1.75vw, 35px);
    font-weight: 610;
    line-height: 1.25;
    letter-spacing: -.035em;
}

.hh-product-page .sit_soldout_badge {
    padding: 6px 10px;
    border-radius: 99px;
    background: var(--hh-ink);
    font-size: 12px;
}

.hh-product-page #sit_desc {
    display: grid;
    gap: 7px;
    margin: 18px 0 0;
    padding: 0;
    color: #505853;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.55;
    list-style: none;
}
.hh-product-page #sit_desc li { position: relative; padding-left: 23px; }
.hh-product-page #sit_desc li strong {
    color: var(--hh-ink);
    font-weight: 630;
}
.hh-product-page #sit_desc li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--hh-green);
    font-size: 14px;
    font-weight: 750;
}

.hh-product-page .sit_price {
    margin-top: 31px;
    padding: 0 0 28px;
    border-bottom: 1px solid var(--hh-line);
}

.hh-product-page .sit_price .price_wr {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin: 0;
}

.hh-product-page .sit_price .it_sale {
    order: 1;
    margin: 0;
    color: var(--hh-coral);
    font-size: 27px;
    font-weight: 750;
    line-height: 1.2;
}

.hh-product-page .sit_price .it_price {
    width: auto;
    order: 2;
    margin: 0;
    color: var(--hh-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.hh-product-page .sit_price .it_price em {
    color: inherit;
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.035em;
}

.hh-product-page .sit_price .it_dict {
    order: 3;
    margin: 0 0 2px 2px;
    color: #a0a6a2;
    font-size: 14px;
    line-height: 1.2;
}
.hh-product-page .sit_price .it_dict span { text-decoration: line-through; }

.hh-product-page .sit_ov_tbl { padding: 17px 0 4px; }
.hh-product-page .sit_ov_tbl table { width: 100%; margin: 0; border: 0; font-size: 14px; }
.hh-product-page .sit_ov_tbl tr { border: 0; }
.hh-product-page .sit_ov_tbl th {
    width: 92px;
    min-width: 92px;
    padding: 8px 0;
    color: #8a918d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    vertical-align: top;
}
.hh-product-page .sit_ov_tbl td {
    height: auto;
    padding: 8px 0;
    color: #3e4541;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.hh-product-page .product_coupon_box {
    margin: 19px 0 4px;
    padding: 17px;
    border: 1px solid #e7ddd8;
    border-radius: 12px;
    background: #fbf7f5;
}
.hh-product-page .product_coupon_head { margin-bottom: 10px; }
.hh-product-page .product_coupon_head strong { color: var(--hh-ink); font-size: 15px; font-weight: 650; }
.hh-product-page .product_coupon_list { gap: 9px; }
.hh-product-page .product_coupon_item {
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 12px;
    padding: 12px 14px;
    border-color: #eaded8;
    border-radius: 9px;
    box-shadow: none;
}
.hh-product-page .product_coupon_item::before,
.hh-product-page .product_coupon_item::after { display: none; }
.hh-product-page .product_coupon_discount { color: var(--hh-coral); font-size: 20px; font-weight: 720; }
.hh-product-page .product_coupon_name { color: var(--hh-ink); font-size: 14px; font-weight: 650; }
.hh-product-page .product_coupon_meta { font-size: 12px; }
.hh-product-page .product_coupon_action { padding-left: 12px; }
.hh-product-page .product_coupon_action::before { border-color: #ded6d2; }
.hh-product-page .product_coupon_action .btn_b01 {
    height: 38px;
    border-radius: 7px;
    color: #fff;
    background: var(--hh-green);
    font-size: 13px;
    font-weight: 650;
    line-height: 38px;
}
.hh-product-page .product_coupon_action .btn_b01:hover { background: #173d35; }

.hh-product-page .product_coupon_box {
    padding: 0;
    overflow: hidden;
    background: #fff;
}
.hh-product-page .product_coupon_details summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 15px;
    cursor: pointer;
    list-style: none;
}
.hh-product-page .product_coupon_details summary::-webkit-details-marker { display: none; }
.hh-product-page .product_coupon_details summary > span { min-width: 0; display: flex; align-items: baseline; gap: 9px; }
.hh-product-page .product_coupon_details summary strong { color: var(--hh-ink); font-size: 14px; font-weight: 650; }
.hh-product-page .product_coupon_details summary small { color: var(--hh-coral); font-size: 13px; font-weight: 650; }
.hh-product-page .product_coupon_details summary > b { flex: 0 0 auto; color: var(--hh-green); font-size: 12px; font-weight: 650; }
.hh-product-page .product_coupon_details summary > b i {
    display: inline-block;
    margin-left: 5px;
    font-style: normal;
    transition: transform .2s ease;
}
.hh-product-page .product_coupon_details[open] summary { border-bottom: 1px solid #eaded8; background: #fbf7f5; }
.hh-product-page .product_coupon_details[open] summary > b i { transform: rotate(45deg); }
.hh-product-page .product_coupon_details .product_coupon_list { padding: 12px; }

.hh-product-page #sit_buy {
    position: static;
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: left;
}
.hh-product-page #sit_buy .btn_close { display: none; }
.hh-product-page #sit_buy .buy_wr { padding: 0; border: 0; background: transparent; }
.hh-product-page #sit_ov h3,
.hh-product-page .quick_option_tit {
    margin: 0 0 13px;
    color: var(--hh-ink);
    font-size: 17px;
    font-weight: 620;
}
.hh-product-page .sit_option .label-title {
    display: block;
    margin-bottom: 8px;
    color: #747c77;
    font-size: 13px;
    font-weight: 550;
}

.hh-product-page .option_card_list { gap: 8px; }
.hh-product-page .option_card {
    padding: 13px 14px;
    border-color: var(--hh-line);
    border-radius: 9px;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.hh-product-page .option_card:hover { border-color: #aab8b2; }
.hh-product-page .option_card.is-selected {
    border-color: var(--hh-green);
    background: var(--hh-soft);
    box-shadow: inset 0 0 0 1px var(--hh-green);
}
.hh-product-page .option_card_name { color: var(--hh-ink); font-size: 14px; font-weight: 550; }
.hh-product-page .option_card_price { color: var(--hh-ink); font-size: 16px; font-weight: 700; }
.hh-product-page .option_card_memo_inline { color: var(--hh-coral); font-size: 13px; font-weight: 580; }

.hh-product-page #sit_sel_option { margin-top: 12px; }
.hh-product-page #sit_opt_added { margin: 0; padding: 0; }
.hh-product-page #sit_opt_added li {
    margin-top: 8px;
    padding: 14px;
    border: 1px solid var(--hh-line);
    border-radius: 9px;
    background: var(--hh-soft);
}
.hh-product-page .sit_tot_price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 17px;
    padding: 18px 0 16px;
    border-top: 1px solid var(--hh-line);
}
.hh-product-page .sit_tot_price .tot_price_tit { color: #59615d; font-size: 14px; font-weight: 550; }
.hh-product-page .sit_tot_price p { margin: 0; color: var(--hh-ink); }
.hh-product-page .sit_tot_price p span:first-child { font-size: 25px; font-weight: 720; }
.hh-product-page .sit_tot_price .won { font-size: 15px; font-weight: 600; }

.hh-product-page .sit_order_btn {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 10px;
}
.hh-product-page .sit_order_btn button,
.hh-product-page #sit_buy_op button {
    height: 56px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 650;
}
.hh-product-page .sit_order_btn .sit_btn_cart {
    border: 1px solid var(--hh-green);
    color: var(--hh-green);
    background: #fff;
}
.hh-product-page .sit_order_btn .sit_btn_buy,
.hh-product-page #sit_buy_op .btn_b02 {
    border: 1px solid var(--hh-green);
    color: #fff;
    background: var(--hh-green);
}
.hh-product-page .sit_order_btn .sit_btn_buy:hover,
.hh-product-page #sit_buy_op .btn_b02:hover { background: #173d35; }
.hh-product-page .hh-simple-pay-note {
    margin: 10px 0 0;
    color: #66716b;
    font-size: 12px;
    font-weight: 550;
    line-height: 1.5;
    text-align: center;
    word-break: keep-all;
}
.hh-product-page .hh-simple-pay-note span { margin-right: 3px; color: var(--hh-green); font-weight: 700; }

.hh-product-page #sit_buy_op { display: none; }
.hh-product-page .mobile_only_quick_option { display: none; }
.hh-mobile-product-coupon,
.hh-mobile-purchase-benefits { display: none; }
.hh-mobile-purchase-backdrop { display: none; }

.hh-purchase-assurance {
    width: var(--hh-shell);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto 92px;
    border: 1px solid var(--hh-line);
    border-radius: 13px;
    background: #fff;
}
.hh-purchase-assurance > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 21px 26px;
}
.hh-purchase-assurance > div + div { border-left: 1px solid var(--hh-line); }
.hh-purchase-assurance > div > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hh-green);
    background: var(--hh-soft);
    font-size: 15px;
    font-weight: 750;
}
.hh-purchase-assurance p { margin: 0; }
.hh-purchase-assurance strong { display: block; color: var(--hh-ink); font-size: 14px; font-weight: 650; }
.hh-purchase-assurance small { display: block; margin-top: 3px; color: var(--hh-muted); font-size: 12px; font-weight: 450; line-height: 1.45; }

.hh-product-page .sit_detail { width: 100%; margin: 0; }
.hh-product-page #sit_tab { width: 100%; }
.hh-product-page #sit_tab .tab_tit {
    position: sticky;
    top: var(--hh-storefront-header-height, 138px);
    z-index: 32;
    width: 100%;
    margin: 0;
    padding: 0 max(36px, calc((100vw - 1360px) / 2));
    border-top: 1px solid var(--hh-line);
    border-bottom: 1px solid var(--hh-line);
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-synthesis: none;
    text-rendering: auto;
}
.hh-product-page #sit_tab .tab_tit.fixed {
    position: sticky;
    top: var(--hh-storefront-header-height, 138px) !important;
    left: auto;
}
.hh-product-page #sit_tab .tab_tit li { flex: 1; max-width: 260px; }
.hh-product-page #sit_tab .tab_tit li button {
    height: 66px;
    padding: 0 12px;
    border: 0;
    color: #3f4743;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}
.hh-product-page #sit_tab .tab_tit li button:focus-visible {
    outline: 2px solid rgba(33, 77, 67, .28);
    outline-offset: -3px;
}
.hh-product-page #sit_tab .tab_tit li .selected {
    border: 0;
    box-shadow: inset 0 -2px var(--hh-green);
    color: var(--hh-green);
    background: transparent;
    font-weight: 700;
}
.hh-product-page #sit_tab .tab_con {
    width: var(--hh-shell);
    min-height: 0;
    margin: 0 auto;
    padding: 70px 0 96px;
    text-align: left;
}
.hh-product-page #sit_tab .tab_con > li { display: block !important; width: 100%; }
.hh-product-page #sit_tab .tab_con > .hh-detail-panel {
    scroll-margin-top: calc(var(--hh-storefront-header-height, 138px) + 84px);
}
.hh-product-page #sit_tab .tab_con > .hh-detail-panel + .hh-detail-panel {
    margin-top: 104px;
    padding-top: 82px;
    border-top: 1px solid var(--hh-line);
}
.hh-detail-panel__heading { margin: 0 0 34px; }
.hh-detail-panel__heading p {
    margin: 0 0 8px;
    color: var(--hh-green);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .13em;
}
.hh-detail-panel__heading h2 {
    margin: 0;
    color: var(--hh-ink);
    font-size: 27px;
    font-weight: 650;
    line-height: 1.25;
}
.hh-detail-panel__heading h2 small {
    margin-left: 5px;
    color: var(--hh-muted);
    font-size: 14px;
    font-weight: 500;
}
.hh-detail-fold {
    --hh-detail-collapse-height: 1120px;
    position: relative;
}
.hh-detail-fold.is-foldable.is-collapsed {
    max-height: var(--hh-detail-collapse-height);
    overflow: hidden;
}
.hh-detail-fold__fade { display: none; }
.hh-detail-fold.is-foldable.is-collapsed .hh-detail-fold__fade {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 90%);
}
.hh-detail-fold__toggle {
    width: min(100%, 460px);
    height: 58px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px auto 0;
    border: 1px solid #cfd4d1;
    border-radius: 7px;
    color: var(--hh-ink);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.hh-detail-fold__toggle.is-visible { display: flex; }
.hh-detail-fold__toggle:hover { border-color: var(--hh-green); color: var(--hh-green); }
.hh-detail-fold__toggle i {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}
.hh-detail-fold__toggle[aria-expanded="true"] i { transform: translateY(2px) rotate(225deg); }
.hh-product-page #sit_inf .ck-content {
    width: min(100%, 980px);
    margin: 0 auto;
    color: var(--hh-ink);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.8;
}
.hh-product-page #sit_inf .ck-content img { width: auto; max-width: 100%; height: auto !important; margin-inline: auto; }
.hh-product-page #sit_dvex,
.hh-product-page #sit_use,
.hh-product-page #sit_qa { width: min(100%, 1040px); margin: 0 auto; }
.hh-product-page #sit_qa .prd_inquiry_top .btn_small {
    width: auto;
    min-width: 160px;
    padding: 0 22px;
    color: #fff;
    background: var(--hh-green);
}
.hh-product-page #sit_qa .prd_inquiry_top .btn_small:hover { background: #173d35; }
.hh-product-page #sit_dvex #sit_dvr dl + dl { margin-top: 34px; }
.hh-product-page #sit_dvex #sit_dvr dt {
    padding-bottom: 14px;
    border-color: var(--hh-line);
    color: var(--hh-ink);
    font-family: inherit;
    font-size: 20px;
    font-weight: 650;
}
.hh-product-page #sit_dvex #sit_dvr dd { margin: 16px 0 0; color: var(--hh-muted); font-size: 14px; line-height: 1.8; }

.hh-detail-commerce-layout {
    width: var(--hh-shell);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
    gap: 38px;
    margin: 0 auto;
}
.hh-detail-commerce-layout .sit_detail { min-width: 0; }
.hh-detail-commerce-layout #sit_tab .tab_tit {
    top: var(--hh-storefront-header-height, 138px);
    padding: 0;
    border: 1px solid var(--hh-line);
}
.hh-detail-commerce-layout #sit_tab .tab_tit.fixed { top: var(--hh-storefront-header-height, 138px) !important; }
.hh-detail-commerce-layout #sit_tab .tab_con {
    width: 100%;
    padding-top: 48px;
}
.hh-sticky-buy {
    position: sticky;
    top: calc(var(--hh-storefront-header-height, 138px) + 24px);
    z-index: 20;
    min-width: 0;
    padding: 25px;
    border: 1px solid var(--hh-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(20, 31, 26, .07);
    font-synthesis: none;
    text-rendering: auto;
}
.hh-sticky-buy__eyebrow {
    margin: 0 0 7px;
    color: var(--hh-green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
}
.hh-sticky-buy h2 {
    margin: 0 0 19px;
    color: var(--hh-ink);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}
.hh-sticky-options { display: grid; gap: 9px; }
.hh-sticky-option {
    position: relative;
    width: 100%;
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 5px 14px;
    padding: 13px 14px;
    border: 1px solid var(--hh-line);
    border-radius: 8px;
    color: var(--hh-ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.hh-sticky-option:hover { border-color: #aab8b2; }
.hh-sticky-option.is-selected {
    border-color: var(--hh-green);
    background: var(--hh-soft);
    box-shadow: inset 0 0 0 1px var(--hh-green);
}
.hh-sticky-option.is-disabled { opacity: .5; cursor: not-allowed; }
.hh-sticky-option > span { min-width: 0; display: flex; align-items: center; gap: 7px; }
.hh-sticky-option strong { font-size: 14px; font-weight: 600; letter-spacing: 0; }
.hh-sticky-option span b {
    padding: 3px 6px;
    border-radius: 99px;
    color: var(--hh-coral);
    background: #f8ece8;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}
.hh-sticky-option em { color: var(--hh-ink); font-size: 15px; font-style: normal; font-weight: 700; letter-spacing: 0; white-space: nowrap; }
.hh-sticky-option small { grid-column: 1 / -1; color: var(--hh-coral); font-size: 11px; font-weight: 600; line-height: 1.4; letter-spacing: 0; }
.hh-sticky-basic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid var(--hh-line);
    border-radius: 8px;
    font-size: 14px;
}
.hh-sticky-basic strong { font-size: 16px; }
.hh-product-page .hh-sticky-buy__coupon-wrap.product_coupon_box {
    margin: 12px 0 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #eed8d0;
    border-radius: 8px;
    background: #fffaf8;
}
.hh-sticky-buy__coupon {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 0;
    color: var(--hh-ink);
    background: #fffaf8;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.hh-sticky-buy__coupon:hover { border-color: #e4b9aa; background: #fff6f2; }
.hh-sticky-buy__coupon-copy { min-width: 0; display: flex; align-items: center; gap: 9px; }
.hh-sticky-buy__coupon-copy > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: var(--hh-coral);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hh-sticky-buy__coupon-copy > span { min-width: 0; display: grid; gap: 2px; }
.hh-sticky-buy__coupon-copy strong { color: var(--hh-ink); font-size: 12px; font-weight: 600; line-height: 1.35; letter-spacing: 0; }
.hh-sticky-buy__coupon-copy small { color: var(--hh-coral); font-size: 10.5px; font-weight: 600; line-height: 1.35; letter-spacing: 0; }
.hh-sticky-buy__coupon > b { flex: 0 0 auto; color: var(--hh-green); font-size: 11px; font-weight: 600; line-height: 1.3; white-space: nowrap; }
.hh-sticky-buy__coupon > b i { display: inline-block; margin-left: 2px; font-style: normal; transition: transform .15s; }
.hh-sticky-buy__coupon[aria-expanded="true"] { background: #fff6f2; }
.hh-sticky-buy__coupon[aria-expanded="true"] > b i { transform: rotate(45deg); }
.hh-product-page .hh-sticky-coupon-list.product_coupon_list {
    max-height: 210px;
    display: grid;
    gap: 0;
    overflow-y: auto;
    padding: 0 10px 9px;
    border-top: 1px solid #f0dfd9;
    background: #fff;
}
.hh-product-page .hh-sticky-coupon-list[hidden] { display: none !important; }
.hh-product-page .hh-sticky-coupon-item.product_coupon_item {
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    gap: 8px;
    padding: 9px 2px;
    border: 0;
    border-bottom: 1px solid #f0ecea;
    border-radius: 0;
    background: #fff;
}
.hh-product-page .hh-sticky-coupon-item:last-child { border-bottom: 0; }
.hh-product-page .hh-sticky-coupon-main { min-width: 0; display: grid; gap: 3px; }
.hh-product-page .hh-sticky-coupon-main strong { overflow: hidden; color: var(--hh-ink); font-size: 11.5px; font-weight: 600; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.hh-product-page .hh-sticky-coupon-main small { color: var(--hh-coral); font-size: 10.5px; font-weight: 550; line-height: 1.35; }
.hh-product-page .hh-sticky-coupon-action.product_coupon_action { padding: 0; border: 0; }
.hh-product-page .hh-sticky-coupon-action.product_coupon_action::before { display: none; }
.hh-product-page .hh-sticky-coupon-action .btn_b01 {
    width: 48px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: var(--hh-green);
    font-size: 11px;
    font-weight: 600;
    line-height: 32px;
}
.hh-sticky-buy__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px 0 17px;
    border-top: 1px solid var(--hh-line);
}
.hh-sticky-buy__total > span { color: #303733; font-size: 14px; font-weight: 600; letter-spacing: 0; }
.hh-sticky-buy__total strong { color: var(--hh-ink); font-size: 15px; font-weight: 600; letter-spacing: 0; }
.hh-sticky-buy__total strong b { margin-right: 2px; font-size: 25px; font-weight: 700; }
.hh-sticky-buy__actions { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9px; }
.hh-sticky-buy__actions button {
    height: 52px;
    border: 1px solid var(--hh-green);
    border-radius: 7px;
    color: var(--hh-green);
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    cursor: pointer;
}
.hh-sticky-buy__actions button.is-primary { color: #fff; background: var(--hh-green); }
.hh-sticky-buy__actions button.is-primary:hover { background: #173d35; }
.hh-sticky-buy__actions button:disabled {
    border-color: #d7dad8;
    color: #9ca19e;
    background: #f3f4f3;
    cursor: not-allowed;
    opacity: .8;
}
.hh-sticky-buy__actions button.is-primary:disabled { color: #fff; background: #b9bfbc; }
.hh-sticky-buy__note { margin: 11px 0 0; color: #909692; font-size: 11px; font-weight: 450; line-height: 1.5; }

.hh-product-quick-nav {
    position: fixed;
    top: calc(50% + 110px);
    right: max(4px, calc((100vw - 1360px) / 2 - 196px));
    z-index: 70;
    width: clamp(68px, 4.1vw, 78px);
    border: 1px solid #dadddb;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20, 31, 26, .08);
    transform: translateY(-50%);
}
.hh-product-quick-nav__item {
    width: 100%;
    min-height: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 6px;
    border: 0;
    border-bottom: 1px solid #e7eae8;
    color: #171b19;
    background: #fff;
    font-family: inherit;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    letter-spacing: 0;
    text-align: center;
    text-indent: 0 !important;
    word-break: keep-all;
    cursor: pointer;
}
.hh-product-quick-nav__item > span:not(.hh-product-quick-nav__kakao-icon) {
    display: block;
    color: inherit;
    font: inherit !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
}
.hh-product-quick-nav__item:first-child { border-radius: 11px 11px 0 0; }
.hh-product-quick-nav__item:hover,
.hh-product-quick-nav__item[aria-expanded="true"] { color: var(--hh-green); background: #f4f7f5; }
.hh-product-quick-nav__item svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hh-product-quick-nav__kakao-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 25px;
    border-radius: 50%;
    color: #281d10;
    background: #fee500;
    font-size: 10px !important;
    font-weight: 750 !important;
    line-height: 1 !important;
    letter-spacing: -.02em !important;
}
.hh-product-quick-nav__kakao:hover .hh-product-quick-nav__kakao-icon { color: #281d10; background: #ffea2f; }
.hh-product-quick-nav__top {
    min-height: 56px;
    gap: 4px;
    border-bottom: 0;
    border-radius: 0 0 11px 11px;
    font-size: 10.5px !important;
    font-weight: 500 !important;
}
.hh-product-quick-nav__top svg { width: 18px; height: 18px; }
.hh-quick-recent-panel {
    position: absolute;
    top: 0;
    right: 92px;
    width: 254px;
    padding: 17px;
    border: 1px solid #dfe3e1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(20, 31, 26, .13);
}
.hh-quick-recent-panel[hidden] { display: none; }
.hh-quick-recent-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.hh-quick-recent-panel__head strong { color: var(--hh-ink); font-size: 15px; font-weight: 700; }
.hh-quick-recent-panel__head button { width: 28px; height: 28px; border: 0; color: #59615d; background: transparent; font-size: 20px; cursor: pointer; }
.hh-quick-recent-panel__list { display: grid; gap: 10px; }
.hh-quick-recent-panel__list > p { margin: 0; color: #747c77; font-size: 12px; line-height: 1.5; }
.hh-quick-recent-card { display: grid; grid-template-columns: 54px minmax(0, 1fr); align-items: center; gap: 10px; color: var(--hh-ink); }
.hh-quick-recent-card img { width: 54px; height: 54px; display: block; border-radius: 8px; background: var(--hh-product-thumb); object-fit: cover; }
.hh-quick-recent-card span { min-width: 0; }
.hh-quick-recent-card strong { display: block; overflow: hidden; font-size: 12px; font-weight: 600; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.hh-quick-recent-card small { display: block; margin-top: 4px; color: #59615d; font-size: 11px; font-weight: 600; }
.hh-mobile-top { display: none; }

.hh-related-products,
.hh-detail-guides {
    width: var(--hh-shell);
    margin: 0 auto;
    padding: 92px 0 0;
}
.hh-related-products { border-top: 1px solid var(--hh-line); }
.hh-detail-guides { padding-bottom: 8px; }
.hh-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}
.hh-section-heading .hh-eyebrow { margin: 0 0 7px; color: var(--hh-green); font-size: 11px; font-weight: 750; letter-spacing: .13em; }
.hh-section-heading h2 { margin: 0; color: var(--hh-ink); font-size: 30px; font-weight: 620; line-height: 1.3; letter-spacing: -.04em; }
.hh-section-heading > a { color: var(--hh-muted); font-size: 13px; font-weight: 550; }
.hh-section-heading > a:hover { color: var(--hh-green); }

.hh-related-products__rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hh-related-card { display: block; min-width: 0; }
.hh-related-card__image {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 9%;
    border-radius: 12px;
    background: var(--hh-product-thumb);
}
.hh-related-card__image img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.hh-related-card:hover .hh-related-card__image img { transform: translateY(-3px) scale(1.02); }
.hh-related-card__body { display: block; padding-top: 16px; }
.hh-related-card__body small {
    min-height: 22px;
    display: block;
    overflow: hidden;
    color: #7a827d;
    font-size: 12px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hh-related-card__body > strong {
    min-height: 50px;
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: var(--hh-ink);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.hh-related-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 11px; }
.hh-related-card__price b { color: var(--hh-coral); font-size: 16px; font-weight: 700; }
.hh-related-card__price em { color: var(--hh-ink); font-size: 18px; font-style: normal; font-weight: 700; }

.hh-detail-guides__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hh-detail-guide {
    min-height: 238px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border-radius: 14px;
    transition: transform .2s ease;
}
.hh-detail-guide:hover { transform: translateY(-3px); }
.hh-detail-guide--violet { background: #eeeaf5; }
.hh-detail-guide--mint { background: #e8f2ee; }
.hh-detail-guide--amber { background: #f6efd9; }
.hh-detail-guide small { color: var(--hh-green); font-size: 11px; font-weight: 750; letter-spacing: .12em; }
.hh-detail-guide strong { max-width: 18ch; margin-top: 22px; color: var(--hh-ink); font-size: 23px; font-weight: 620; line-height: 1.35; letter-spacing: -.035em; }
.hh-detail-guide > span { max-width: 32ch; margin-top: 11px; color: #5d6661; font-size: 14px; font-weight: 450; line-height: 1.65; }
.hh-detail-guide b { margin-top: auto; padding-top: 25px; color: var(--hh-ink); font-size: 13px; font-weight: 650; }
.hh-detail-guide b i { margin-left: 5px; font-style: normal; }

.hh-product-footer { margin-top: 0; }
.hh-product-footer .hh-logo--footer { color: #fff; font-size: 28px; }

@media (max-width: 1180px) {
    .hh-product-page #sit_ov_wrap {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
        gap: 46px;
    }
    .hh-purchase-assurance > div { padding: 18px; }
    .hh-product-page #sit_tab .tab_tit { padding-inline: 32px; }
    .hh-detail-commerce-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; }
    .hh-detail-commerce-layout #sit_tab .tab_tit { padding-inline: 0; }
    .hh-sticky-buy { padding: 21px; }
}

@media (max-width: 1519px) {
    .hh-product-quick-nav { display: none; }
}

@media (max-width: 1024px) {
    .hh-product-main { padding-bottom: 96px; }
    .hh-product-page #sit_ov_wrap {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
        gap: 34px;
    }
    .hh-purchase-assurance { grid-template-columns: 1fr 1fr 1fr; }
    .hh-purchase-assurance > div { align-items: flex-start; padding: 17px 15px; }
    .hh-purchase-assurance small { max-width: 20ch; }
    .hh-product-page #sit_tab .tab_tit,
    .hh-product-page #sit_tab .tab_tit.fixed { top: var(--hh-storefront-header-height, 64px) !important; }
    .hh-detail-commerce-layout { display: block; }
    .hh-sticky-buy { display: none; }
    .hh-detail-commerce-layout #sit_tab .tab_tit { top: var(--hh-storefront-header-height, 64px); }
    .hh-related-products__rail { gap: 16px; }
}

@media (max-width: 840px) {
    body.hh-product-page { padding-bottom: 84px; }
    body.hh-product-page.hh-purchase-open { overflow: hidden; }
    .hh-product-main { padding-bottom: 76px; }
    .hh-product-page .hh-header { border-bottom: 1px solid rgba(225, 228, 226, .7); }
    .hh-product-breadcrumb {
        gap: 7px;
        padding: 17px 0;
        font-size: 11px;
    }
    .hh-product-page #sit_ov_wrap {
        display: block;
        margin-bottom: 32px;
    }
    .hh-product-page #sit_pvi { border-radius: 12px; }
    .hh-product-page #sit_pvi .swiper-pagination { display: block; bottom: 12px; }
    .hh-product-page #sit_pvi .swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        border: 0;
        background: #b7bdb9;
        opacity: .65;
    }
    .hh-product-page #sit_pvi .swiper-pagination .swiper-pagination-bullet-active { border: 0; background: var(--hh-green); opacity: 1; }
    .hh-product-page .it_pvi_thumbs { display: none; }
    .hh-product-page #sit_ov { padding: 31px 0 0; }
    .hh-product-eyebrow { margin-bottom: 11px; font-size: 10px; }
    .hh-product-page #sit_ov .action_btns { top: -3px; }
    .hh-product-page #sit_ov .action_btns button { width: 39px; height: 39px; }
    .hh-product-page .review_average { margin-bottom: 12px; }
    .hh-product-page .review_average .st_score,
    .hh-product-page .review_average .review_ea { font-size: 12px; }
    .hh-product-page .review_average .st_score::before { font-size: 12px; }
    .hh-product-page #sit_title { padding-right: 0; font-size: 25px; line-height: 1.3; }
    .hh-product-page #sit_desc { gap: 6px; margin-top: 14px; font-size: 15px; line-height: 1.55; }
    .hh-product-page #sit_desc li { padding-left: 21px; }
    .hh-product-page .sit_price { margin-top: 24px; padding-bottom: 22px; }
    .hh-product-page .sit_price .it_sale { font-size: 23px; }
    .hh-product-page .sit_price .it_price em { font-size: 27px; }
    .hh-product-page .sit_ov_tbl { padding-top: 13px; }
    .hh-product-page .sit_ov_tbl th,
    .hh-product-page .sit_ov_tbl td { height: auto; padding: 7px 0; font-size: 13px; }
    .hh-product-page .sit_ov_tbl th { width: 82px; min-width: 82px; }
    .hh-product-page .hh-product-info-coupon { display: none; }
    .hh-product-page .product_coupon_box { padding: 0; }
    .hh-product-page .product_coupon_item { grid-template-columns: minmax(0, 1fr) 88px; gap: 8px; padding: 11px; }
    .hh-product-page .product_coupon_discount { font-size: 18px; }
    .hh-product-page .product_coupon_name { font-size: 13px; }
    .hh-product-page .product_coupon_action { padding-left: 8px; }
    .hh-product-page .product_coupon_action .btn_b01 { padding: 0 8px; font-size: 12px; }
    .hh-product-page .hh-sticky-coupon-action.product_coupon_action { padding: 0; }
    .hh-product-page .hh-sticky-coupon-action .btn_b01 { padding: 0; font-size: 11px; }

    .hh-product-page #sit_buy {
        position: fixed;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 150;
        width: 100%;
        max-width: 560px;
        height: auto;
        max-height: 88vh;
        max-height: 88dvh;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        overflow: hidden;
        visibility: hidden;
        border: 0;
        border-radius: 18px 18px 0 0;
        background: #fff;
        box-shadow: 0 -18px 55px rgba(13, 24, 19, .18);
        opacity: 0;
        transform: translateY(calc(100% + 24px));
        transition: transform .28s ease, opacity .2s ease, visibility 0s linear .28s;
        text-align: left;
        pointer-events: none;
    }
    .hh-product-page #sit_buy.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; pointer-events: auto; }
    .hh-product-page #sit_buy::before { display: none; }
    .hh-product-page #sit_buy > h2 { display: none; }
    .hh-product-page #sit_buy .btn_close {
        position: relative;
        z-index: 4;
        width: 100%;
        height: 56px;
        flex: 0 0 56px;
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 0;
        padding: 0 20px;
        border: 0;
        border-bottom: 1px solid var(--hh-line);
        border-radius: 0;
        color: var(--hh-ink);
        background: #fff;
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        overflow: visible;
        text-align: left;
        text-indent: 0 !important;
        cursor: pointer;
    }
    .hh-product-page #sit_buy .btn_close span { font-size: 24px; font-weight: 400; line-height: 1; }
    .hh-product-page #sit_buy .btn_close strong { font-size: 16px; font-weight: 700; }
    .hh-product-page #sit_buy .buy_wr {
        min-height: 0;
        max-height: calc(88vh - 56px);
        max-height: calc(88dvh - 56px);
        flex: 0 1 auto;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        padding: 20px 0 0;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #fff;
    }
    .hh-product-page .hh-mobile-purchase-backdrop {
        position: fixed;
        inset: 0;
        z-index: 145;
        display: block;
        visibility: hidden;
        padding: 0;
        border: 0;
        background: rgba(13, 24, 19, .28);
        opacity: 0;
        transition: opacity .22s ease, visibility 0s linear .22s;
        cursor: pointer;
        pointer-events: none;
    }
    .hh-product-page.hh-purchase-open .hh-mobile-purchase-backdrop {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
        pointer-events: auto;
    }
    .hh-product-page #sit_buy .sit_option { margin: 0 20px; }
    .hh-product-page #sit_buy .sit_option h3 { margin-bottom: 16px; font-size: 18px; font-weight: 700; }
    .hh-product-page #sit_buy .sit_option .label-title { margin-bottom: 10px; color: #59615d; font-size: 13px; font-weight: 600; }
    .hh-product-page #sit_buy .option_card { min-height: 74px; padding: 13px 15px; border-color: #d9deda; border-radius: 8px; }
    .hh-product-page #sit_buy .option_card_name { padding-right: 58px; color: var(--hh-ink); font-size: 15px; font-weight: 600; }
    .hh-product-page #sit_buy .option_card_price { font-size: 17px; font-weight: 700; }
    .hh-product-page #sit_buy .option_card_memo_inline { font-size: 12px; font-weight: 600; }
    .hh-product-page #sit_buy #sit_sel_option { margin: 12px 20px 0; }
    .hh-product-page .hh-mobile-purchase-benefits {
        display: grid;
        gap: 8px;
        margin: 14px 20px 0;
    }
    .hh-product-page .hh-mobile-purchase-coupon:empty { display: none; }
    .hh-product-page .hh-mobile-buy-coupon-wrap.hh-sticky-buy__coupon-wrap.product_coupon_box { margin: 0; }
    .hh-product-page .hh-mobile-purchase-refund {
        min-height: 58px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 12px;
        border: 1px solid var(--hh-line);
        border-radius: 8px;
        background: #fff;
    }
    .hh-product-page .hh-mobile-purchase-refund > span {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        flex: 0 0 28px;
        border-radius: 50%;
        color: var(--hh-green);
        background: var(--hh-soft);
        font-size: 14px;
        font-weight: 700;
    }
    .hh-product-page .hh-mobile-purchase-refund p { min-width: 0; margin: 0; }
    .hh-product-page .hh-mobile-purchase-refund strong { display: block; color: var(--hh-ink); font-size: 12.5px; font-weight: 600; line-height: 1.4; }
    .hh-product-page .hh-mobile-purchase-refund small { display: block; margin-top: 2px; color: var(--hh-muted); font-size: 10.5px; font-weight: 450; line-height: 1.4; }
    .hh-product-page .hh-mobile-purchase-footer {
        position: sticky;
        bottom: 0;
        z-index: 3;
        margin-top: 18px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--hh-line);
        background: #fff !important;
        box-shadow: none;
    }
    .hh-product-page .hh-mobile-purchase-footer .sit_tot_price { margin: 0; padding: 15px 0 14px; border-top: 0 !important; background: #fff !important; }
    .hh-product-page #sit_buy #sit_ov_btn {
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 8px;
        margin: 0;
        padding: 0;
        border-top: 0;
        background: #fff !important;
    }
    .hh-product-page #sit_buy #sit_ov_btn button { width: 100%; }
    .hh-product-page .hh-mobile-purchase-footer .hh-simple-pay-note { margin-top: 9px; font-size: 11.5px; }
    .hh-product-page #sit_buy_op {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 110;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 9px;
        width: 100%;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        border: 0;
        border-top: 1px solid var(--hh-line);
        background: #fff;
        backdrop-filter: none;
    }
    .hh-product-page #sit_buy_op button { width: 100%; height: 54px; padding: 0 12px; border-radius: 8px; font-size: 15px; font-weight: 700; }
    .hh-product-page #sit_buy_op button:only-child { grid-column: 1 / -1; }
    .hh-product-page #sit_buy_op .btn_b03 { border: 1px solid var(--hh-green); color: var(--hh-green); background: #fff; }
    .hh-product-page #sit_buy_op .btn_b02 { border: 1px solid var(--hh-green); color: #fff; background: var(--hh-green); }
    .hh-product-page .sit_order_btn { position: static; padding-top: 0; background: #fff; }
    .hh-product-page .sit_order_btn button { height: 54px; font-size: 15px; font-weight: 700; }
    .hh-product-page .mobile_only_quick_option {
        width: var(--hh-shell);
        display: block !important;
        margin: 0 auto 44px;
        padding: 28px 0 0;
        border-top: 0;
    }
    .hh-product-page .mobile_only_quick_option .quick_option_tit { margin-bottom: 15px; font-size: 18px; font-weight: 700; }
    .hh-product-page .mobile_only_quick_option .option_card { min-height: 72px; padding: 13px 15px; border-color: #d9deda; border-radius: 8px; font-family: inherit; text-align: left; }
    .hh-product-page .mobile_only_quick_option .option_card_name { padding-right: 56px; font-size: 15px; font-weight: 600; }
    .hh-product-page .mobile_only_quick_option .option_card_price { font-size: 17px; font-weight: 700; }
    .hh-product-page .mobile_only_quick_option .option_card_memo_inline { font-size: 12px; font-weight: 600; }
    .hh-product-page .mobile_only_quick_option .option_card.is-selected { border-color: var(--hh-green); background: var(--hh-soft); box-shadow: inset 0 0 0 1px var(--hh-green); }

    .hh-purchase-assurance {
        grid-template-columns: 1fr;
        margin-bottom: 14px;
        border-radius: 11px;
    }
    .hh-purchase-assurance > div { align-items: center; padding: 15px 17px; }
    .hh-purchase-assurance > div + div { border-top: 1px solid var(--hh-line); border-left: 0; }
    .hh-purchase-assurance small { max-width: none; }
    .hh-mobile-product-coupon {
        width: var(--hh-shell);
        display: block;
        margin: 0 auto;
    }
    .hh-mobile-product-coupon:empty { display: none; }
    .hh-product-page .hh-mobile-product-coupon-box.product_coupon_box { margin: 0; }

    .hh-product-page #sit_tab .tab_tit {
        width: 100%;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .hh-product-page #sit_tab .tab_tit::-webkit-scrollbar { display: none; }
    .hh-product-page #sit_tab .tab_tit li { min-width: 102px; max-width: none; }
    .hh-product-page #sit_tab .tab_tit li button { height: 56px; padding: 0 9px; font-size: 13px; white-space: nowrap; }
    .hh-product-page #sit_tab .tab_con { padding: 42px 0 65px; }
    .hh-product-page #sit_tab .tab_con > .hh-detail-panel { scroll-margin-top: calc(var(--hh-storefront-header-height, 64px) + 74px); }
    .hh-product-page #sit_tab .tab_con > .hh-detail-panel + .hh-detail-panel {
        margin-top: 72px;
        padding-top: 58px;
    }
    .hh-detail-panel__heading { margin-bottom: 25px; }
    .hh-detail-panel__heading h2 { font-size: 23px; }
    .hh-detail-panel__heading h2 small { font-size: 12px; }
    .hh-detail-fold { --hh-detail-collapse-height: 760px; }
    .hh-detail-fold.is-foldable.is-collapsed .hh-detail-fold__fade { height: 130px; }
    .hh-detail-fold__toggle { width: 100%; height: 52px; margin-top: 20px; font-size: 13px; }
    .hh-product-page #sit_inf .ck-content { font-size: 14px; line-height: 1.75; }
    .hh-product-page #sit_dvex #sit_dvr dt { font-size: 17px; }
    .hh-product-page #sit_dvex #sit_dvr dd { font-size: 13px; }

    .hh-related-products,
    .hh-detail-guides { padding-top: 62px; }
    .hh-section-heading { align-items: flex-start; margin-bottom: 23px; }
    .hh-section-heading h2 { font-size: 25px; }
    .hh-section-heading > a { padding-top: 5px; font-size: 12px; }
    .hh-related-products__rail {
        width: calc(100% + 16px);
        display: flex;
        gap: 13px;
        overflow-x: auto;
        padding: 0 16px 8px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .hh-related-products__rail::-webkit-scrollbar { display: none; }
    .hh-related-card { width: min(73vw, 270px); flex: 0 0 min(73vw, 270px); scroll-snap-align: start; }
    .hh-related-card__body > strong { min-height: 46px; font-size: 16px; }
    .hh-detail-guides__grid {
        width: calc(100% + 16px);
        display: flex;
        gap: 13px;
        overflow-x: auto;
        padding: 0 16px 8px 0;
        scrollbar-width: none;
    }
    .hh-detail-guides__grid::-webkit-scrollbar { display: none; }
    .hh-detail-guide { width: min(78vw, 300px); min-height: 220px; flex: 0 0 min(78vw, 300px); padding: 24px; }
    .hh-detail-guide strong { font-size: 21px; }
    .hh-product-footer { margin-bottom: -84px; }
    .hh-mobile-top {
        position: fixed;
        right: 16px;
        bottom: calc(92px + env(safe-area-inset-bottom));
        z-index: 108;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border: 1px solid #d9deda;
        border-radius: 50%;
        color: var(--hh-ink);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 8px 24px rgba(20, 31, 26, .11);
        opacity: 0;
        transform: translateY(8px);
        transition: opacity .18s ease, transform .18s ease;
        pointer-events: none;
    }
    .hh-mobile-top.is-visible { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
    .hh-mobile-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
    body.hh-purchase-open .hh-mobile-top,
    body.hh-purchase-open #sit_buy_op { visibility: hidden; }
}

@media (max-width: 520px) {
    .hh-product-page #sit_pvi .swiper-slide { padding: 7%; }
    .hh-product-page #sit_title { font-size: 24px; }
    .hh-product-page .product_coupon_item { grid-template-columns: 1fr; }
    .hh-product-page .product_coupon_action { padding: 0; }
    .hh-product-page .product_coupon_action::before { display: none; }
    .hh-product-page .product_coupon_action .btn_b01 { width: 100%; }
    .hh-section-heading > a span { display: none; }
}
