/* Single Product Page - 产品页面样式 */
.product-wrapper {
    width: 100%;
}

.product-title {
    font-size: var(--font-size-title);
    font-weight: bold;
    margin-bottom: var(--spacing-xxl);
    color: var(--text-primary);
}

/* 产品图片区域 */
.product-image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* 产品规格 */
.product-specifications {
    background: var(--background-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-xxl);
}

.specs-table td {
    padding: var(--spacing-xs) 0;
    vertical-align: top;
    font-size: var(--font-size-base);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.specs-table td:first-child {
    font-weight: bold;
    width: 40%;
    color: var(--text-secondary);
}

.specs-table td:last-child {
    width: 60%;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-divider {
    display: none;
}

/* 接受和支付部分 */
.acceptance-section,
.payment-section {
    padding: 10px;
    border-radius: var(--border-radius-md);
}

.acceptance-section h4,
.payment-section h4 {
    font-size: var(--font-size-base);
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    text-transform: none;
}

.acceptance-section p,
.payment-section p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
}

/* 响应式产品页面 */
@media (max-width: 768px) {
    .product-specifications {
        padding: var(--spacing-lg);
    }
    
    .product-title {
        font-size: var(--font-size-xxl);
        margin-bottom: var(--spacing-lg);
    }
    
    .specs-table td {
        font-size: var(--font-size-sm);
        padding: 6px 0;
    }
}

/* 超宽屏优化 */
@media (min-width: 1440px) {
    .main-image-container {
        height: min(30vw, 600px);
    }
}
