/* product detail — 상품 상세 전용 */

.item-view-page {
    background: #f7f8fa;
}

.item-view-page .item-view-section {
    padding: 24px 0 56px;
}

/* ── 일반/샘플 탭 (구매 영역) ── */
.item-view-page .view-right .tab-content {
    display: none;
}

.item-view-page .view-right .tab-content.current {
    display: block;
}

/* ── breadcrumb ── */
.item-view-page .item-view-hero .location-box {
    margin: 0 0 20px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.item-view-page .item-view-hero .location-box ul {
    justify-content: flex-start;
}

.item-view-page .item-view-hero .location-box ul li > * {
    font-size: 13px;
    color: #6b7280;
}

.item-view-page .item-view-hero .location-box ul li:last-child > * {
    color: #1a1d26;
    font-weight: 600;
}

/* ── 상품 히어로 (이미지 + 구매 패널) ── */
.item-view-page .item-view-box {
    gap: 24px;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

.item-view-page .item-view-box .view-left {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    padding: 20px;
    overflow: visible;
}

.item-view-page .item-view-box .view-left .big-swiper {
    margin: 0 0 16px;
    height: 520px;
    border-radius: 12px;
    background: #f7f8fa;
    overflow: hidden;
}

.item-view-page .item-view-box .view-left .big-swiper .swiper-slide:after {
    display: none;
}

.item-view-page .item-view-box .view-left .big-swiper img {
    border-radius: 12px;
}

.item-view-page .item-view-box .view-left .big-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    opacity: 1;
}

.item-view-page .item-view-box .view-left .big-swiper .swiper-pagination-bullet-active {
    background: var(--color-main-font);
    width: 20px;
    border-radius: 4px;
}

.item-view-page .item-view-box .view-left .thumb-swiper {
    padding: 3px 2px 5px;
    margin: 0 -2px;
    overflow: visible;
}

.item-view-page .item-view-box .view-left .thumb-swiper .swiper-wrapper {
    align-items: center;
}

.item-view-page .item-view-box .view-left .thumb-swiper .swiper-slide.mini-thumb {
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: border-color 0.2s ease;
    object-fit: cover;
}

.item-view-page .item-view-box .view-left .thumb-swiper .swiper-slide-thumb-active {
    border-color: var(--color-main-font);
    box-shadow: none;
}

.item-view-page .item-view-box .view-right {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    padding: 28px 28px 32px;
}

.item-view-page .item-view-box .view-right.fixed {
    border-radius: 0;
    border: 1px solid #eceef2;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

/* ── 판매자 ── */
.item-view-page .item-sellerMall-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eceef2;
}

.item-view-page .item-sellerMall-info a span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1d26;
}

.item-view-page .item-sellerMall-info img {
    width: 40px;
    height: 40px;
    border: 1px solid #eceef2;
}

.item-view-page .item-sellerMall-info .btn {
    border-radius: 8px;
    font-weight: 500;
}

/* ── 제목·가격·액션 ── */
.item-view-page .item-view-box .view-right h2,
.item-view-page .item-view-box .view-right h2 > * {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1a1d26;
    line-height: 1.45;
}

.item-view-page .item-view-box .view-right .score small {
    font-size: 13px;
    color: #6b7280;
}

.item-view-page .item-view-box .view-right .price strong {
    font-size: 26px;
    font-weight: 700;
    color: #1a1d26;
    letter-spacing: -0.02em;
}

.item-view-page .item-view-box .view-right .price del {
    font-size: 15px;
    color: #9ca3af;
}

.item-view-page .item-view-box .view-right .price .ft-hover {
    font-size: 18px;
    font-weight: 700;
    color: #ef4444;
}

/* 찜·공유 스프라이트 아이콘 */
.item-view-page .item-view-box .view-right .flex.fd-row.gap4:has(.big-icon) {
    gap: 10px;
    padding: 2px 0;
}

.item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    padding: 5px;
    box-sizing: content-box;
    display: inline-block;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #f7f8fa;
    background-image: url("../../mall/public/images/icons.png");
    background-repeat: no-repeat;
    background-size: auto 240px !important;
    background-origin: content-box;
    background-clip: content-box;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon.favorite {
    background-position: -199px -151px !important;
}

.item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon.favorite-red {
    background-position: -199px -186px !important;
}

.item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon.share {
    background-position: -238px -151px !important;
}

.item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon:hover {
    background-color: #eceef2;
}

.item-view-page .product-info-type-title .material-symbols-rounded.stat-minus,
.item-view-page .product-detail-wrap .material-symbols-rounded.keyboard_down {
    background-image: url("../../mall/public/images/icons.png") !important;
    background-repeat: no-repeat !important;
    flex-shrink: 0;
}

.item-view-page .product-info-type-title .material-symbols-rounded.stat-minus {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    padding: 5px;
    box-sizing: content-box;
    background-size: auto 150px !important;
    background-position: -214px -69px !important;
    background-origin: content-box;
    background-clip: content-box;
}

.item-view-page .product-detail-wrap .material-symbols-rounded.keyboard_down {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    padding: 4px;
    box-sizing: content-box;
    background-size: auto 150px !important;
    background-position: -213px -69px !important;
    background-origin: content-box;
    background-clip: content-box;
}

/* ── 배송 정보 ── */
.item-view-page .item-view-box .view-right .info {
    margin: 24px 0;
    padding: 20px;
    background: #f7f8fa;
    border: none;
    border-radius: 12px;
}

.item-view-page .item-view-box .view-right .info dl dd {
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eceef2;
}

.item-view-page .item-view-box .view-right .info dl dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-view-page .item-view-box .view-right .info dl dd b {
    width: 108px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.item-view-page .item-view-box .view-right .info dl dd p,
.item-view-page .item-view-box .view-right .info dl dd .f14 {
    font-size: 14px;
    color: #1a1d26;
    font-weight: 500;
}

.item-view-page .item-view-box .view-right .info dl dd .ft-gray-600 {
    font-size: 12px;
    line-height: 1.5;
    color: #9ca3af;
}

/* ── 일반/샘플 구매 탭 ── */
.item-view-page .product-type-selector .choice-box {
    display: flex;
    gap: 0;
    padding: 4px;
    background: #f7f8fa;
    border-radius: 12px;
    border: none;
    overflow: visible;
}

.item-view-page .product-type-selector .choice-box > div {
    flex: 1;
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    background: transparent;
}

.item-view-page .product-type-selector .choice-box > div:has(input:checked) {
    background: transparent;
    box-shadow: none;
}

.item-view-page .product-type-selector .choice-box > div label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: #fff;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.item-view-page .product-type-selector .choice-box > div input:checked ~ label,
.item-view-page .product-type-selector .choice-box > div.current label {
    background: var(--color-main-bg) !important;
    color: #fff !important;
}

/* ── 옵션·수량 ── */
.item-view-page .item-view-box .view-right .option:has(.select-box),
.item-view-page .item-view-box .view-right .sample-option:has(.select-box) {
    border-bottom: 1px solid #eceef2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.item-view-page .item-view-box .view-right .option .select-box,
.item-view-page .item-view-box .view-right .sample-option .select-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.item-view-page .item-view-box .view-right .option .select-box:not(:last-child),
.item-view-page .item-view-box .view-right .sample-option .select-box:not(:last-child) {
    margin-bottom: 10px;
}

.item-view-page .item-view-box .view-right .option .select-box:focus-within,
.item-view-page .item-view-box .view-right .sample-option .select-box:focus-within {
    border-color: var(--color-main-font);
    box-shadow: 0 0 0 3px var(--color-main-bg-white);
}

.item-view-page .item-view-box .view-right .option .select-box select,
.item-view-page .item-view-box .view-right .sample-option .select-box select {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 0;
    padding: 0 44px 0 16px;
    font-size: 14px;
    color: #1a1d26;
    background-color: #fff;
    background-image: url("../../mall/public/images/icon_select.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;
    background-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.item-view-page .quantity-box,
.item-view-page .sample-quantity-box {
    background: #f7f8fa;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
}

.item-view-page .quantity-box .inner > div,
.item-view-page .sample-quantity-box .inner > div {
    border-radius: 8px;
    border-color: #e5e7eb;
}

/* ── 합계·버튼 ── */
.item-view-page .item-view-box .view-right .total {
    margin: 28px 0 0;
    padding: 20px;
    background: #f7f8fa;
    border-radius: 12px;
}

.item-view-page .item-view-box .view-right .total > b {
    font-size: 14px;
    color: #6b7280;
}

.item-view-page .item-view-box .view-right .total > div strong {
    font-size: 26px;
    font-weight: 700;
    color: #1a1d26;
}

.item-view-page .item-view-box .view-right .total > div em {
    font-size: 15px;
    color: #6b7280;
}

.item-view-page .item-view-box .view-right .button {
    margin: 16px 0 0;
}

.item-view-page .item-view-box .view-right .button .button-box {
    display: flex;
    gap: 10px;
    margin: 0;
}

.item-view-page .item-view-box .view-right .button .button-box .btn {
    flex: 1;
    height: 52px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
}

.item-view-page .item-view-box .view-right .button .button-box .cart-btn,
.item-view-page .item-view-box .view-right .button .button-box .sample-cart-btn {
    border-color: #e5e7eb;
    color: #1a1d26;
}

.item-view-page .item-view-box .view-right .button .button-box .pay-btn,
.item-view-page .item-view-box .view-right .button .button-box .sample-pay-btn {
    flex: 1.2;
}

/* ── 하단 탭 (상세·리뷰·Q&A·배송) ── */
.item-view-page .item-view-tabs {
    max-width: 1280px;
}

.item-view-page .item-view-tabs .tab-box {
    margin: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.item-view-page .item-view-tabs .tab-box.sticky {
    top: 0;
    border-radius: 0;
}

.item-view-page .item-view-tabs .tab-box ul li * {
    height: 56px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    background: #fff;
    border: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.item-view-page .item-view-tabs .tab-box ul li.active * {
    color: var(--color-main-font);
    font-weight: 700;
    border-bottom-color: var(--color-main-font);
    background: #fff;
}

.item-view-page .item-view-tabs .tab-content-box {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    margin-bottom: 24px;
}

.item-view-page .item-view-tabs .tab-content-box .content.active {
    padding: 28px 24px 32px;
    max-width: none;
}

/* ── 상품정보 제공고시 ── */
.item-view-page .product-info-type-wrap {
    border: 1px solid #eceef2;
    border-radius: 12px;
    margin: 0 0 24px;
    overflow: hidden;
}

.item-view-page .product-info-type-wrap.fold {
    height: 44px;
    border-bottom: 1px solid #eceef2;
}

.item-view-page .product-info-type-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 16px;
    background: #f7f8fa;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: #1a1d26;
    box-sizing: border-box;
}

.item-view-page .product-info-type-title > span:first-child {
    flex: 1;
    min-width: 0;
}

.item-view-page .product-info-type-title .material-symbols-rounded.stat-minus {
    flex-shrink: 0;
    margin-left: 8px;
}

.item-view-page .product-info-type-list {
    margin: 0;
    padding: 0;
}

.item-view-page .product-info-type-list dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-top: 1px solid #eceef2;
}

.item-view-page .product-info-type-list dd {
    width: 50%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-bottom: 1px solid #eceef2;
    box-sizing: border-box;
}

.item-view-page .product-info-type-list dd:nth-child(even) b {
    border-left: 1px solid #eceef2;
}

.item-view-page .product-info-type-list dd b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    min-width: 100px;
    margin: 0;
    padding: 12px 14px;
    background: #f7f8fa;
    border-right: 1px solid #eceef2;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #6b7280;
    text-align: center;
    box-sizing: border-box;
}

.item-view-page .product-info-type-list dd p {
    display: flex;
    align-items: center;
    width: 70%;
    margin: 0;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1d26;
    text-align: left;
    word-break: keep-all;
    box-sizing: border-box;
}

.item-view-page .product-info-type-list dd:nth-child(odd):last-child {
    width: 100%;
}

.item-view-page .product-info-type-list dd:nth-child(odd):last-child b {
    width: 15%;
    min-width: 100px;
}

.item-view-page .product-info-type-list dd:nth-child(odd):last-child p {
    width: 85%;
}

/* ── KC 인증 ── */
.item-view-page .product-kc-wrap {
    margin-bottom: 24px;
    padding: 20px;
    background: #f7f8fa;
    border-radius: 12px;
    overflow: visible;
}

.item-view-page .product-kc-wrap .product-kc-title {
    padding: 0 0 12px;
}

.item-view-page .product-kc-title span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1d26;
}

.item-view-page .product-kc-wrap .table-box {
    padding: 0;
    white-space: normal;
    overflow: hidden;
    border: 1px solid #eceef2;
    border-radius: 10px;
    background: #fff;
}

.item-view-page .product-kc-wrap .table-box table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border-radius: 0;
    overflow: visible;
}

.item-view-page .product-kc-wrap .table-box th,
.item-view-page .product-kc-wrap .table-box td {
    border: 1px solid #eceef2;
    padding: 14px 16px;
    vertical-align: middle;
}

.item-view-page .product-kc-wrap .table-box th {
    font-weight: 600;
    color: #6b7280;
    background: #f7f8fa;
}

.item-view-page .product-kc-wrap .table-box td > .flex {
    padding: 4px 0;
    gap: 12px;
}

.item-view-page .product-kc-wrap .table-box .kc_mark {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

/* ── 상세 설명 ── */
.item-view-page .product-detail-wrap {
    padding-bottom: 48px;
}

.item-view-page .product-detail-wrap .button-box .btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    padding: 12px 24px;
    border: 1px solid #e5e7eb;
    font-weight: 500;
}

.item-view-page .report_area {
    margin-top: 28px;
    padding: 16px 20px;
    background: #f7f8fa;
    border-radius: 10px;
    font-size: 14px;
    color: #6b7280;
}

.item-view-page .report_area a {
    color: var(--color-main-font);
    font-weight: 600;
}

/* ── 리뷰 ── */
.item-view-page .item-review-box ul li {
    padding: 24px 0;
    border-bottom-color: #eceef2;
}

.item-view-page .item-review-box ul li:first-child {
    padding-top: 0;
}

.item-view-page .item-review-box ul li .text p {
    color: #374151;
    line-height: 1.6;
}

.item-view-page .item-review-box .review-images img {
    border-radius: 10px;
}

.item-view-page .item-review-box .review-comment .comment-box {
    background: #f7f8fa;
    border-radius: 12px;
    padding: 16px 18px;
}

.item-view-page .review-comment .material-symbols-rounded.face {
    background-image: url("../../mall/public/images/icons.png");
    background-repeat: no-repeat;
    background-size: auto 200px;
    background-position: -66px -47px;
}

/* ── Q&A ── */
.item-view-page .item-qna-box {
    margin-top: 0;
}

.item-view-page .item-qna-box ul li {
    border-bottom-color: #eceef2;
}

.item-view-page .item-qna-box ul li .inner {
    padding: 24px 0;
    transition: background 0.2s ease;
}

.item-view-page .item-qna-box ul li .inner:hover {
    background: #fafbfc;
}

.item-view-page .item-qna-box ul li .inner strong {
    font-size: 15px;
    color: #1a1d26;
}

.item-view-page .item-qna-box ul li .inner p {
    color: #6b7280;
    line-height: 1.55;
}

.item-view-page .item-qna-box ul li .inner dl dd span.bg-black {
    background: #fef3c7 !important;
    color: #b45309 !important;
    font-weight: 600;
}

.item-view-page .item-qna-box ul li .inner dl dd span:not(.bg-black) {
    background: var(--color-main-bg-white) !important;
    color: var(--color-main-font) !important;
    font-weight: 600;
}

.item-view-page .item-qna-box + .flex .btn {
    border-radius: 10px;
}

/* ── 배송 안내 ── */
.item-view-page .guide-box dl {
    border-bottom-color: #eceef2;
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.item-view-page .guide-box dl dt {
    font-size: 16px;
    font-weight: 700;
    color: #1a1d26;
    margin-bottom: 16px;
}

.item-view-page .guide-box .table-box table {
    border-radius: 10px;
    overflow: hidden;
}

.item-view-page .guide-box .table-box th {
    background: #f7f8fa;
    font-weight: 600;
}

/* ── 추천 상품 ── */
.item-view-page .comment-product {
    margin: 32px 0 0;
    padding: 28px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.item-view-page .comment-product .title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1d26;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

/* ── 페이지네이션 ── */
.item-view-page .paging-box ul li a {
    border-radius: 8px;
    font-size: 14px;
}

.item-view-page .paging-box ul li.active a {
    background: var(--color-main-font);
    border-radius: 8px;
}

/* ── 모바일 하단 고정 버튼 ── */
.item-view-page .m-bottom-fixed {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid #eceef2;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.item-view-page .m-bottom-fixed .button-box {
    gap: 10px;
}

.item-view-page .m-bottom-fixed .btn {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
}

/* ── 반응형 ── */
@media (max-width: 991px) {
    .item-view-page {
        background: #fff;
    }

    .item-view-page .item-view-section {
        padding: 0 0 32px;
    }

    .item-view-page .item-view-tabs .tab-box.sticky {
        top: 0;
    }

    .item-view-page .product-info-type-list dd {
        width: 100%;
    }

    .item-view-page .product-info-type-list dd:nth-child(even) b {
        border-left: none;
    }

    .item-view-page .product-info-type-list dd b {
        width: 32%;
        min-width: 88px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .item-view-page .product-info-type-list dd p {
        width: 68%;
        padding: 10px 14px;
        font-size: 13px;
    }

    .item-view-page .product-info-type-list dd:nth-child(odd):last-child b {
        width: 32%;
    }

    .item-view-page .product-info-type-list dd:nth-child(odd):last-child p {
        width: 68%;
    }

    .item-view-page .item-view-hero .location-box {
        display: none;
    }

    .item-view-page .item-view-box .view-left {
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .item-view-page .item-view-box .view-left .big-swiper {
        border-radius: 0;
        height: 100%;
    }

    .item-view-page .item-view-box .view-right {
        border-radius: 0;
        box-shadow: none;
        padding: 20px 16px 24px;
    }

    .item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px;
        min-height: 28px;
        background-size: auto 210px !important;
    }

    .item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon.favorite {
        background-position: -174px -132px !important;
    }

    .item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon.favorite-red {
        background-position: -174px -162px !important;
    }

    .item-view-page .item-view-box .view-right .material-symbols-rounded.big-icon.share {
        background-position: -209px -132px !important;
    }

    .item-view-page .item-view-tabs {
        margin-top: 0 !important;
    }

    .item-view-page .item-view-tabs .tab-box {
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eceef2;
    }

    .item-view-page .item-view-tabs .tab-content-box {
        border-radius: 0;
        box-shadow: none;
    }

    .item-view-page .item-view-tabs .tab-content-box .content.active {
        padding: 20px 16px 24px;
    }

    .item-view-page .comment-product {
        margin: 0;
        padding: 24px 16px;
        border-radius: 0;
        box-shadow: none;
        border-top: 8px solid #f7f8fa;
    }

    .item-view-page .item-qna-box ul li .inner {
        padding: 20px 0;
    }

    .item-view-page #normal-product-option-type.fixed,
    .item-view-page #sample-product-option-type.fixed {
        border-radius: 16px 16px 0 0;
        padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
    }
}

@media (max-width: 640px) {
    .item-view-page .item-view-box .view-right h2,
    .item-view-page .item-view-box .view-right h2 > * {
        font-size: 18px;
    }

    .item-view-page .item-view-box .view-right .price strong {
        font-size: 22px;
    }
}
