/* =========================================================
   Natural Solid Wood Factory Style
   For: solid-oak-wooden-door.html
========================================================= */

/* ===== Global Base ===== */
body {
    font-family: "Georgia", "Times New Roman", "Microsoft YaHei", serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2f2a26;
    background-color: transparent;
    letter-spacing: 0.3px;
}

main.tag-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* 所有大模块：整行独立显示 */
section,
.inner-page1,
.content-matrix,
.box.grid-box.two,
.inner-page.contact-page,
.more-info {
    width: 100%;
    margin-bottom: 90px;
    padding: 70px 70px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

/* 木纹背景（自然工厂风，不抢内容） */
section::before,
.inner-page1::before,
.content-matrix::before,
.box.grid-box.two::before,
.inner-page.contact-page::before,
.more-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/images/wood-texture.jpg") center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

section > *,
.inner-page1 > *,
.content-matrix > *,
.box.grid-box.two > *,
.inner-page.contact-page > *,
.more-info > * {
    position: relative;
    z-index: 1;
}

/* ===== Headings ===== */
h1, h2, h3, h4, h5 {
    font-family: "Georgia", "Trajan Pro", "Times New Roman", serif;
    color: #4a2f1b;
    letter-spacing: 1px;
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 6px solid #8b5a2b;
}

h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #2f2a26;
}

/* ===== Hero / Top Section ===== */
.tag-hero-section {
    text-align: center;
    padding: 90px 40px;
}

.tag-title {
    font-size: 44px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section-p {
    font-size: 18px;
    color: #6b4a2f;
    margin-bottom: 40px;
}

.editor-content-1 {
    max-width: 920px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
}

/* ===== Content Matrix ===== */
.content-matrix {
    display: flex;
    gap: 70px;
}

.main-content-column,
.sidebar-content-column {
    flex: 1;
}

.editor-module,
.editor-module1,
.editor-module-service,
.editor-module-faq {
    margin-bottom: 55px;
    padding: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 5px solid #8b5a2b;
    border-radius: 4px;
}

.editor-module p,
.editor-module1 p,
.editor-module-service p,
.editor-module-faq p {
    font-size: 16px;
    line-height: 1.95;
}

/* =========================================================
   HOT PRODUCTS – 12 Items, 4 x 3 Grid
========================================================= */

.list1 ul.grid-box1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 45px;
}

.list1 ul.grid-box1 li.column1 {
    width: 100%;
}

.list1 .box1 {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e2d3c1;
    border-radius: 4px;
    padding: 16px;
    text-align: center;
    transition: all 0.35s ease;
}

.list1 .box1:hover {
    box-shadow: 0 12px 28px rgba(139, 90, 43, 0.28);
    transform: translateY(-6px);
}

/* 产品图片尺寸统一（更大更清楚） */
.list1 .img-box1 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 3px;
}

/* 产品标题 */
.list1 h5 {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.45;
}

.list1 h5 a {
    color: #4a2f1b;
    text-decoration: none;
}

.list1 h5 a:hover {
    color: #8b5a2b;
}

/* ===== Company Intro Section ===== */
.box.grid-box.two .left.column {
    max-width: 950px;
}

.box.grid-box.two h3 {
    font-size: 32px;
    margin-bottom: 28px;
}

.box.grid-box.two .con p {
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 20px;
}

/* ===== Contact Section ===== */
.inner-page.contact-page {
    padding: 90px 70px;
}

.inner-page.contact-page h3 {
    font-size: 28px;
}

.inner-page.contact-page p {
    font-size: 16px;
    margin-bottom: 28px;
}

/* ===== Recommended Links ===== */
.more-info {
    padding: 60px 70px;
}

.more-info a {
    display: inline-block;
    margin: 12px 22px 12px 0;
    font-size: 16px;
    color: #5a3b22;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.more-info a:hover {
    border-color: #8b5a2b;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1200px) {
    .list1 ul.grid-box1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .content-matrix {
        flex-direction: column;
    }

    .list1 ul.grid-box1 {
        grid-template-columns: repeat(2, 1fr);
    }

    section,
    .inner-page1,
    .content-matrix,
    .box.grid-box.two,
    .inner-page.contact-page,
    .more-info {
        padding: 40px 25px;
        margin-bottom: 60px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }
}


