/* ========== Chevron Flooring 页面模板样式 ========== */

.page-chevron-flooring {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-chevron-flooring .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== Section 1: Hero ========== */
.chevron-flooring-hero {
    position: relative;
    padding: 120px 0 100px;
    background-color: #1a1a1a;
    color: #fff;
    overflow: hidden;
}

.chevron-flooring-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.chevron-flooring-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.chevron-flooring-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.chevron-flooring-hero .hero-left {
    flex: 1;
}

.chevron-flooring-hero .hero-right {
    flex: 0 0 auto;
}

.chevron-flooring-hero .hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.chevron-flooring-hero .hero-button {
    display: inline-block;
    background-color: #fca311;
    color: #fff;
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    height: auto;
    line-height: inherit;
    border: none;
    white-space: nowrap;
}

.chevron-flooring-hero .hero-button:hover {
    background-color: #e59400;
    transform: translateY(-2px);
}

/* ========== Section 2: Product Grid ========== */
.chevron-flooring-product-grid {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.chevron-flooring-product-grid .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.chevron-flooring-product-grid .section-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.chevron-flooring-product-grid .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.chevron-flooring-product-grid .product-card {
    background: #ffffff;
    padding: 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 0;
}

.chevron-flooring-product-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.chevron-flooring-product-grid .product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.chevron-flooring-product-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chevron-flooring-product-grid .product-card:hover .product-image img {
    transform: scale(1.05);
}

.chevron-flooring-product-grid .product-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 15px 15px;
    line-height: 1.4;
}

.chevron-flooring-product-grid .product-button {
    display: inline-block;
    background-color: #fca311;
    color: #fff;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 20px;
    border-radius: 0;
}

.chevron-flooring-product-grid .product-button:hover {
    background-color: #e59400;
}

/* ========== Section 3: Chevron Wood Flooring Introduction ========== */
.chevron-flooring-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.chevron-flooring-intro .intro-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px;
    text-align: center;
}

.chevron-flooring-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.chevron-flooring-intro .intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}

.chevron-flooring-intro .intro-button {
    display: inline-block;
    background-color: #fca311;
    color: #fff;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 0;
}

.chevron-flooring-intro .intro-button:hover {
    background-color: #e59400;
    transform: translateY(-2px);
}

/* ========== Section 4: Images Grid ========== */
.chevron-flooring-images {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.chevron-flooring-images .images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.chevron-flooring-images .image-item {
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.chevron-flooring-images .image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chevron-flooring-images .image-item:hover img {
    transform: scale(1.05);
}

/* ========== Section 5: Different Types Of Chevron Hardwood Flooring ========== */
.chevron-flooring-types {
    padding: 80px 0;
    background-color: #ffffff;
}

.chevron-flooring-types .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    text-align: center;
}

.chevron-flooring-types .types-content {
    max-width: 900px;
    margin: 0 auto;
}

.chevron-flooring-types .types-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}

/* ========== Section 6: What Designs Are Formed By Chevron Flooring ========== */
.chevron-flooring-designs {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.chevron-flooring-designs .designs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chevron-flooring-designs .designs-content .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px;
}

.chevron-flooring-designs .designs-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px;
}

.chevron-flooring-designs .designs-image {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.chevron-flooring-designs .designs-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Section 7: Chevron Wood Flooring Buying Guide ========== */
.chevron-flooring-guide {
    padding: 80px 0;
    background-color: #ffffff;
}

.chevron-flooring-guide .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 50px;
    text-align: center;
}

.chevron-flooring-guide .guide-sections {
    max-width: 900px;
    margin: 0 auto;
}

.chevron-flooring-guide .guide-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.chevron-flooring-guide .guide-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.chevron-flooring-guide .guide-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #fca311;
    margin: 0 0 20px;
}

.chevron-flooring-guide .guide-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .chevron-flooring-hero .hero-title {
        font-size: 48px;
    }

    .chevron-flooring-product-grid .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chevron-flooring-designs .designs-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .chevron-flooring-hero {
        padding: 80px 0 60px;
    }

    .chevron-flooring-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .chevron-flooring-hero .hero-title {
        font-size: 36px;
    }

    .chevron-flooring-product-grid .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .chevron-flooring-images .images-grid {
        grid-template-columns: 1fr;
    }

    .chevron-flooring-designs .designs-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chevron-flooring-designs .designs-content .section-title,
    .chevron-flooring-intro .intro-title,
    .chevron-flooring-types .section-title,
    .chevron-flooring-guide .section-title {
        font-size: 32px;
    }

    .chevron-flooring-guide .guide-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .chevron-flooring-hero .hero-title {
        font-size: 28px;
    }

    .chevron-flooring-product-grid .products-grid {
        grid-template-columns: 1fr;
    }

    .chevron-flooring-hero .hero-button,
    .chevron-flooring-product-grid .product-button,
    .chevron-flooring-intro .intro-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}
