/* ========== Solid Wood Kitchen Cabinets 页面模板样式 ========== */

.page-solid-wood-kitchen-cabinets {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
}

.page-solid-wood-kitchen-cabinets .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Global Buttons ========== */
.page-solid-wood-kitchen-cabinets .btn {
    display: inline-block;
    padding: 13px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-solid-wood-kitchen-cabinets .btn-primary {
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
}

.page-solid-wood-kitchen-cabinets .btn-primary:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

/* ========== Section 1: Hero ========== */
.solid-wood-hero-section {
    position: relative;
    padding: 0;
    background-color: #111;
}

.solid-wood-hero-section .hero-banner {
    position: relative;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.solid-wood-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(20, 10, 5, 0.85) 0%, rgba(20, 10, 5, 0.4) 50%, rgba(20, 10, 5, 0.2) 100%);
}

.solid-wood-hero-section .elementor-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.solid-wood-hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    color: #ffffff;
    max-width: 600px;
    margin: 0;
    padding: 90px 60px 90px 24px;
}

.solid-wood-hero-section .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 28px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.solid-wood-hero-section .btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-hero-section .btn-primary {
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
}

.solid-wood-hero-section .btn-primary:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

/* ========== Section 2: Product Grid ========== */
.solid-wood-grid-section {
    padding: 90px 0;
    background-color: #f7f8fc;
}

.solid-wood-grid-section .section-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 40px 0;
    text-align: center;
}

.solid-wood-grid-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solid-wood-grid-section .product-card {
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solid-wood-grid-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.solid-wood-grid-section .card-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #e8e4dc;
}

.solid-wood-grid-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solid-wood-grid-section .product-card:hover .card-image img {
    transform: scale(1.05);
}

.solid-wood-grid-section .card-content {
    padding: 22px 24px;
}

.solid-wood-grid-section .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.solid-wood-grid-section .card-desc {
    font-size: 14px;
    color: #6b7a8d;
    margin: 0;
    line-height: 1.65;
}

.solid-wood-grid-section .grid-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.solid-wood-grid-section .btn-cta {
    display: inline-block;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-grid-section .btn-cta:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

/* ========== Section 3: Traditionally Made by Craftsmen - Left Image Right Text ========== */
.solid-wood-craftsmen-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.solid-wood-craftsmen-section .craftsmen-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solid-wood-craftsmen-section .craftsmen-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.solid-wood-craftsmen-section .craftsmen-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-craftsmen-section .craftsmen-content {
    flex: 1;
}

.solid-wood-craftsmen-section .craftsmen-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.solid-wood-craftsmen-section .craftsmen-desc {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
}

/* ========== Section 4: Download Catalog - Left Text Right Image with Background ========== */
.solid-wood-catalog-section {
    position: relative;
    padding: 90px 0;
}

.solid-wood-catalog-section .catalog-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.solid-wood-catalog-section .catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.solid-wood-catalog-section .elementor-container {
    position: relative;
    z-index: 2;
}

.solid-wood-catalog-section .catalog-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solid-wood-catalog-section .catalog-content {
    flex: 1;
}

.solid-wood-catalog-section .catalog-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.solid-wood-catalog-section .catalog-desc {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0 0 28px 0;
}

.solid-wood-catalog-section .btn-catalog {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-catalog-section .btn-catalog:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

.solid-wood-catalog-section .catalog-image {
    flex: 0 0 480px;
    max-width: 480px;
}

.solid-wood-catalog-section .catalog-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

/* ========== Section 5: Best Solid Wood Kitchen Cabinets ========== */
.solid-wood-best-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.solid-wood-best-section .best-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solid-wood-best-section .best-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.solid-wood-best-section .best-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-best-section .best-content {
    flex: 1;
}

.solid-wood-best-section .best-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.solid-wood-best-section .best-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #FF8C00;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.solid-wood-best-section .best-desc {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
}

/* ========== Section 6: Transparent Cabinet Pricing ========== */
.solid-wood-pricing-section {
    padding: 90px 0;
    background-color: #f7f8fc;
}

.solid-wood-pricing-section .pricing-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solid-wood-pricing-section .pricing-content {
    flex: 1;
}

.solid-wood-pricing-section .pricing-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.solid-wood-pricing-section .pricing-desc {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0 0 28px 0;
}

.solid-wood-pricing-section .btn-quote {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-pricing-section .btn-quote:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

.solid-wood-pricing-section .pricing-image {
    flex: 0 0 480px;
    max-width: 480px;
}

.solid-wood-pricing-section .pricing-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

/* ========== Section 7: Solid Wood Cabinet ========== */
.solid-wood-types-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.solid-wood-types-section .types-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.solid-wood-types-section .types-image {
    flex: 0 0 580px;
    max-width: 580px;
}

.solid-wood-types-section .types-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-types-section .types-content {
    flex: 1;
}

.solid-wood-types-section .types-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.solid-wood-types-section .types-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #FF8C00;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.solid-wood-types-section .types-paragraph {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0 0 16px 0;
}

.solid-wood-types-section .types-paragraph:last-child {
    margin-bottom: 0;
}

/* ========== Section 8: 9 Types of Wood - Alternating Layout ========== */
.solid-wood-types-detail-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.solid-wood-types-detail-section .detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.solid-wood-types-detail-section .detail-item:last-child {
    margin-bottom: 0;
}

.solid-wood-types-detail-section .detail-item.reverse {
    flex-direction: row-reverse;
}

.solid-wood-types-detail-section .detail-image {
    flex: 0 0 480px;
    max-width: 480px;
}

.solid-wood-types-detail-section .detail-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-types-detail-section .detail-content {
    flex: 1;
}

.solid-wood-types-detail-section .detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.solid-wood-types-detail-section .detail-desc {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
}

/* ========== Section 9: Advantages - Left Image Right Text with Button ========== */
.solid-wood-advantages-section {
    padding: 90px 0;
    background-color: #f7f8fc;
}

.solid-wood-advantages-section .advantages-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solid-wood-advantages-section .advantages-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.solid-wood-advantages-section .advantages-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-advantages-section .advantages-content {
    flex: 1;
}

.solid-wood-advantages-section .advantages-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 28px 0;
    line-height: 1.3;
}

.solid-wood-advantages-section .btn-advantages {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-advantages-section .btn-advantages:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

/* ========== Section 10: 6 Advantage Cards - 2x3 Grid ========== */
.solid-wood-advantages-grid-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.solid-wood-advantages-grid-section .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.solid-wood-advantages-grid-section .advantage-card {
    background-color: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solid-wood-advantages-grid-section .advantage-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.solid-wood-advantages-grid-section .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f0f2f5;
}

.solid-wood-advantages-grid-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solid-wood-advantages-grid-section .advantage-card:hover .card-image img {
    transform: scale(1.05);
}

.solid-wood-advantages-grid-section .card-content {
    padding: 22px 20px;
    text-align: center;
}

.solid-wood-advantages-grid-section .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
}

/* ========== Section 11: Cons - Left Image Right Text ========== */
.solid-wood-cons-section {
    padding: 90px 0;
    background-color: #f7f8fc;
}

.solid-wood-cons-section .cons-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.solid-wood-cons-section .cons-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.solid-wood-cons-section .cons-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-cons-section .cons-content {
    flex: 1;
}

.solid-wood-cons-section .cons-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.solid-wood-cons-section .cons-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.solid-wood-cons-section .cons-list li {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin-bottom: 12px;
}

.solid-wood-cons-section .cons-list li:last-child {
    margin-bottom: 0;
}

/* ========== Section 12: Accessories - Left Image Right Text ========== */
.solid-wood-accessories-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.solid-wood-accessories-section .accessories-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.solid-wood-accessories-section .accessories-image {
    flex: 0 0 500px;
    max-width: 500px;
}

.solid-wood-accessories-section .accessories-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-accessories-section .accessories-content {
    flex: 1;
}

.solid-wood-accessories-section .accessories-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.solid-wood-accessories-section .accessories-subtitle {
    font-size: 17px;
    font-weight: 500;
    color: #FF8C00;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.solid-wood-accessories-section .accessories-desc {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
}

/* ========== Section 13: 5 Accessories - Alternating Layout ========== */
.solid-wood-accessories-detail-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.solid-wood-accessories-detail-section .accessory-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.solid-wood-accessories-detail-section .accessory-item:last-child {
    margin-bottom: 0;
}

.solid-wood-accessories-detail-section .accessory-item.reverse {
    flex-direction: row-reverse;
}

.solid-wood-accessories-detail-section .accessory-content {
    flex: 1;
}

.solid-wood-accessories-detail-section .accessory-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.solid-wood-accessories-detail-section .accessory-desc {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0 0 20px 0;
}

.solid-wood-accessories-detail-section .accessory-desc:last-child {
    margin-bottom: 0;
}

.solid-wood-accessories-detail-section .accessory-image {
    flex: 0 0 480px;
    max-width: 480px;
}

.solid-wood-accessories-detail-section .accessory-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-accessories-detail-section .btn-accessory {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-accessories-detail-section .btn-accessory:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

/* ========== Section 14: FAQs ========== */
.solid-wood-faq-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.solid-wood-faq-section .faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 50px 0;
    text-align: center;
    line-height: 1.3;
}

.solid-wood-faq-section .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.solid-wood-faq-section .faq-item {
    margin-bottom: 0;
}

.solid-wood-faq-section .faq-question {
    background-color: #f5f6f8;
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    border-radius: 0;
    line-height: 1.4;
}

.solid-wood-faq-section .faq-answer {
    padding: 20px 24px;
    background-color: transparent;
}

.solid-wood-faq-section .faq-answer p {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
}

/* ========== Section 15: Showroom - Left Video Right Text ========== */
.solid-wood-showroom-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.solid-wood-showroom-section .showroom-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solid-wood-showroom-section .showroom-video {
    flex: 0 0 52%;
    max-width: 52%;
}

.solid-wood-showroom-section .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 0;
}

.solid-wood-showroom-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.solid-wood-showroom-section .showroom-content {
    flex: 1;
}

.solid-wood-showroom-section .showroom-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.solid-wood-showroom-section .showroom-desc {
    font-size: 15.5px;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0 0 20px 0;
}

.solid-wood-showroom-section .showroom-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 28px 0;
}

.solid-wood-showroom-section .showroom-list li {
    font-size: 14.5px;
    color: #5a6a7a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.solid-wood-showroom-section .showroom-list li:last-child {
    margin-bottom: 0;
}

.solid-wood-showroom-section .btn-showroom {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-showroom-section .btn-showroom:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

/* ========== Section 16: Contact Form ========== */
.solid-wood-contact-section {
    padding: 90px 0;
    background-color: #f7f8fc;
}

.solid-wood-contact-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.3;
}

.solid-wood-contact-section .section-subtitle {
    font-size: 16px;
    color: #6b7a8d;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 1.6;
}

.solid-wood-contact-section .contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.solid-wood-contact-section .contact-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.solid-wood-contact-section .contact-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.solid-wood-contact-section .contact-form-wrapper {
    flex: 1;
}

.solid-wood-contact-section .quote-form {
    background-color: #ffffff;
    padding: 36px 32px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.solid-wood-contact-section .form-row {
    margin-bottom: 18px;
}

.solid-wood-contact-section .form-row:last-of-type {
    margin-bottom: 0;
}

.solid-wood-contact-section .form-row input[type="text"],
.solid-wood-contact-section .form-row input[type="email"],
.solid-wood-contact-section .form-row input[type="tel"],
.solid-wood-contact-section .form-row textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    color: #1a1a2e;
    background-color: #f8f9fc;
    border: 1px solid #e1e6ed;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: inherit;
}

.solid-wood-contact-section .form-row input:focus,
.solid-wood-contact-section .form-row textarea:focus {
    outline: none;
    border-color: #FF8C00;
    background-color: #ffffff;
}

.solid-wood-contact-section .form-row textarea {
    resize: vertical;
    min-height: 110px;
}

.solid-wood-contact-section .form-row-group {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.solid-wood-contact-section .form-row-group .form-row {
    flex: 1;
    margin-bottom: 0;
}

.solid-wood-contact-section .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.solid-wood-contact-section .checkboxes-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.solid-wood-contact-section .checkbox-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #5a6a7a;
    cursor: pointer;
    user-select: none;
}

.solid-wood-contact-section .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #FF8C00;
}

.solid-wood-contact-section .file-input {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 13px;
    color: #6b7a8d;
    background-color: #f8f9fc;
    border: 1px dashed #c5d2e0;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solid-wood-contact-section .file-input:hover {
    border-color: #FF8C00;
    background-color: #ffffff;
}

.solid-wood-contact-section .form-actions {
    margin-top: 26px;
    text-align: center;
}

.solid-wood-contact-section .btn-submit {
    display: inline-block;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #FF8C00, #e67a00);
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.solid-wood-contact-section .btn-submit:hover {
    background: linear-gradient(135deg, #e67a00, #cc6b00);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

/* ========== 响应式设计 ========== */

@media (max-width: 1024px) {
    .solid-wood-hero-section .hero-content {
        padding: 60px 40px 60px 24px;
        max-width: 500px;
    }

    .solid-wood-hero-section .hero-title {
        font-size: 38px;
    }

    .solid-wood-grid-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solid-wood-craftsmen-section .craftsmen-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-craftsmen-section .craftsmen-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-catalog-section .catalog-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-catalog-section .catalog-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-best-section .best-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-best-section .best-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-pricing-section .pricing-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-pricing-section .pricing-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-types-section .types-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-types-section .types-image {
        flex: 1;
        max-width: 100%;
    }

    /* Sections 8-13 Responsive at 1024px */
    .solid-wood-types-detail-section .detail-item {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-types-detail-section .detail-item.reverse {
        flex-direction: column;
    }

    .solid-wood-types-detail-section .detail-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-advantages-section .advantages-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-advantages-section .advantages-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-advantages-grid-section .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solid-wood-cons-section .cons-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-cons-section .cons-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-accessories-section .accessories-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-accessories-section .accessories-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-accessories-detail-section .accessory-item {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-accessories-detail-section .accessory-item.reverse {
        flex-direction: column;
    }

    .solid-wood-accessories-detail-section .accessory-image {
        flex: 1;
        max-width: 100%;
    }

    /* Sections 14-16 Responsive at 1024px */
    .solid-wood-showroom-section .showroom-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-showroom-section .showroom-video {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-contact-section .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-contact-section .contact-image {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .solid-wood-hero-section .hero-content {
        padding: 50px 20px;
        max-width: 100%;
        text-align: right;
    }

    .solid-wood-hero-section .elementor-container {
        justify-content: flex-end;
    }

    .solid-wood-hero-section .hero-banner {
        min-height: 400px;
    }

    .solid-wood-hero-section .hero-overlay {
        background: linear-gradient(135deg, rgba(20, 10, 5, 0.75) 0%, rgba(20, 10, 5, 0.5) 100%);
    }

    .solid-wood-hero-section .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
        white-space: normal;
    }

    .solid-wood-grid-section {
        padding: 56px 0;
    }

    .solid-wood-grid-section .products-grid {
        grid-template-columns: 1fr;
    }

    .solid-wood-craftsmen-section {
        padding: 56px 0;
    }

    .solid-wood-craftsmen-section .craftsmen-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .solid-wood-craftsmen-section .craftsmen-desc {
        font-size: 14px;
    }

    .solid-wood-catalog-section {
        padding: 56px 0;
    }

    .solid-wood-catalog-section .catalog-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .solid-wood-catalog-section .catalog-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .solid-wood-catalog-section .btn-catalog {
        padding: 12px 32px;
        font-size: 15px;
    }

    .solid-wood-best-section {
        padding: 56px 0;
    }

    .solid-wood-best-section .best-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .solid-wood-best-section .best-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .solid-wood-best-section .best-desc {
        font-size: 14px;
    }

    .solid-wood-pricing-section {
        padding: 56px 0;
    }

    .solid-wood-pricing-section .pricing-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .solid-wood-pricing-section .pricing-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .solid-wood-pricing-section .btn-quote {
        padding: 14px 32px;
        font-size: 15px;
    }

    .solid-wood-types-section {
        padding: 56px 0;
    }

    .solid-wood-types-section .types-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .solid-wood-types-section .types-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .solid-wood-types-section .types-paragraph {
        font-size: 14px;
        margin-bottom: 12px;
    }

    /* Sections 8-13 Responsive Styles */
    .solid-wood-types-detail-section {
        padding: 56px 0;
    }

    .solid-wood-types-detail-section .detail-item {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .solid-wood-types-detail-section .detail-item.reverse {
        flex-direction: column;
    }

    .solid-wood-types-detail-section .detail-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-types-detail-section .detail-title {
        font-size: 20px;
    }

    .solid-wood-types-detail-section .detail-desc {
        font-size: 14px;
    }

    .solid-wood-advantages-section {
        padding: 56px 0;
    }

    .solid-wood-advantages-section .advantages-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-advantages-section .advantages-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-advantages-section .advantages-title {
        font-size: 24px;
    }

    .solid-wood-advantages-grid-section {
        padding: 56px 0;
    }

    .solid-wood-advantages-grid-section .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .solid-wood-cons-section {
        padding: 56px 0;
    }

    .solid-wood-cons-section .cons-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-cons-section .cons-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-cons-section .cons-title {
        font-size: 24px;
    }

    .solid-wood-cons-section .cons-list li {
        font-size: 14px;
    }

    .solid-wood-accessories-section {
        padding: 56px 0;
    }

    .solid-wood-accessories-section .accessories-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-accessories-section .accessories-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-accessories-section .accessories-title {
        font-size: 24px;
    }

    .solid-wood-accessories-section .accessories-subtitle {
        font-size: 15px;
    }

    .solid-wood-accessories-section .accessories-desc {
        font-size: 14px;
    }

    .solid-wood-accessories-detail-section {
        padding: 56px 0;
    }

    .solid-wood-accessories-detail-section .accessory-item {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .solid-wood-accessories-detail-section .accessory-item.reverse {
        flex-direction: column;
    }

    .solid-wood-accessories-detail-section .accessory-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-accessories-detail-section .accessory-title {
        font-size: 20px;
    }

    .solid-wood-accessories-detail-section .accessory-desc {
        font-size: 14px;
    }

    /* Sections 14-16 Responsive Styles */
    .solid-wood-faq-section {
        padding: 56px 0;
    }

    .solid-wood-faq-section .faq-title {
        font-size: 26px;
        margin-bottom: 36px;
    }

    .solid-wood-faq-section .faq-question {
        padding: 16px 20px;
        font-size: 16px;
    }

    .solid-wood-faq-section .faq-answer {
        padding: 16px 20px;
    }

    .solid-wood-faq-section .faq-answer p {
        font-size: 14px;
    }

    .solid-wood-showroom-section {
        padding: 56px 0;
    }

    .solid-wood-showroom-section .showroom-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-showroom-section .showroom-video {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-showroom-section .showroom-title {
        font-size: 24px;
    }

    .solid-wood-showroom-section .showroom-desc {
        font-size: 14px;
    }

    .solid-wood-showroom-section .showroom-list li {
        font-size: 14px;
    }

    .solid-wood-showroom-section .btn-showroom {
        padding: 14px 32px;
        font-size: 15px;
    }

    .solid-wood-contact-section {
        padding: 56px 0;
    }

    .solid-wood-contact-section .section-title {
        font-size: 26px;
    }

    .solid-wood-contact-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .solid-wood-contact-section .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-contact-section .contact-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-contact-section .quote-form {
        padding: 28px 24px;
    }

    .solid-wood-contact-section .form-row-group {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .solid-wood-hero-section .hero-title {
        font-size: 26px;
    }

    .solid-wood-hero-section .hero-banner {
        min-height: 340px;
    }

    /* Sections 8-13 Responsive at 480px */
    .solid-wood-advantages-grid-section .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* Sections 14-16 Responsive at 480px */
    .solid-wood-showroom-section .showroom-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-showroom-section .showroom-video {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-contact-section .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .solid-wood-contact-section .contact-image {
        flex: 1;
        max-width: 100%;
    }

    .solid-wood-contact-section .form-row-group {
        flex-direction: column;
        gap: 18px;
    }
}