/**
 * 商品详情页样式 - 对标参考文件
 */

/* 商品详情页容器 */
.treasure-detail-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.treasure-detail-page.active {
    transform: translateX(0);
}

/* 商品图片 */
.pdp-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

/* 商品信息区域 */
.pdp-info {
    padding: 24px 20px;
    flex: 1;
    margin-bottom: 80px;
}

.pdp-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 8px;
}

.pdp-price {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-dark);
    padding-bottom: 20px;
}

.pdp-desc {
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.8;
    text-align: justify;
}

/* 底部操作栏 */
.pdp-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px calc(12px + var(--safe-bottom));
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gray-dark);
    display: none;
    z-index: 100;
    transition: 0.3s;
}

.pdp-action-bar .btn-solid {
    width: 100%;
}
