/* ============================================ */
/* 产品中心页面样式 */
/* ============================================ */

.product-page .product-section {
    padding: 80px 30px;
}

.product-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-page .section-header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #5D4037;
    margin-bottom: 10px;
}

.product-page .section-header .subtitle {
    font-size: 14px;
    color: #8B7B6B;
    letter-spacing: 2px;
}

.product-page .product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-page .product-card {
    background: rgba(250, 248, 245, 0.9);
    border: 1px solid rgba(232, 224, 216, 0.8);
    overflow: hidden;
}

.product-page .product-image-wrapper {
    text-align: center;
    padding: 30px;
    border-bottom: 1px solid rgba(232, 224, 216, 0.6);
}

.product-page .product-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
}

.product-page .product-details {
    padding: 25px;
}

.product-page .product-details h3 {
    font-size: 18px;
    font-weight: bold;
    color: #5D4037;
    margin-bottom: 15px;
    text-align: center;
}

.product-page .product-specs {
    font-size: 13px;
    color: #6B5B4F;
    line-height: 1.8;
}

.product-page .product-specs div {
    margin-bottom: 8px;
}

.product-page .product-specs div:last-child {
    margin-bottom: 0;
}

.product-page .product-highlight {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(232, 224, 216, 0.6);
    font-size: 12px;
    color: #8B7B6B;
    line-height: 1.7;
}

/* 响应式 */
@media (max-width: 900px) {
    .product-page .product-section {
        padding: 60px 20px;
    }
    
    .product-page .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-page .section-header h1 {
        font-size: 28px;
    }
    
    .product-page .product-card {
        padding: 0;
    }
}