/* 容器：限制最大宽度，居中，模拟文章阅读体验 */
.woo-article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* 面包屑导航 */
.woo-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}
.woo-breadcrumb a {
    color: #666;
    text-decoration: none;
}
.woo-breadcrumb a:hover {
    color: #000;
}

/* 标题与元数据 */
.article-header {
    margin-bottom: 40px;
}
.product-title {
    font-size: 42px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.2;
}
.product-meta {
    font-size: 16px;
    color: #888;
}

/* 焦点大图 */
.article-hero-image {
    margin: 0 0 40px 0;
    width: 100%;
}
.article-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* 可选：增加一点圆角让视觉更柔和 */
    display: block;
}

/* 正文排版 */
.article-body-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
}
.article-body-content h2, 
.article-body-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
}

/* 分隔线 */
.article-divider {
    border: 0;
    height: 1px;
    background: #eaeaea;
    margin: 40px 0;
}

/* 评论区样式 */
.article-reviews-section {
    margin-top: 40px;
}
.reviews-title {
    font-size: 24px;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
}
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
.submit-btn {
    background-color: #d1122a; /* 使用您图片中 Request Quote 按钮的深红色 */
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
}
.submit-btn:hover {
    background-color: #a00d20;
}