/* ========== Interior Doors 页面模板样式 ========== */

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

/* ========== Stats Section ========== */
.interior-doors-stats {
    width: 100%;
    margin: 40px 0;
}

.stats-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stats-left {
    flex: 1;
    background-color: #FF9C00;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-left-content {
    max-width: 350px;
}

.stats-left-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.stats-left-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    opacity: 0.95;
}

.stats-right {
    flex: 1;
    background-color: #fff;
    padding: 25px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.stats-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon svg {
    width: 28px;
    height: 28px;
}

.stats-number {
    font-size: 20px;
    font-weight: 800;
    color: #FF9C00;
    line-height: 1;
}

.stats-label {
    font-size: 10px;
    font-weight: 600;
    color: #FF9C00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats 响应式 */
@media (max-width: 1024px) {
    .stats-left,
    .stats-right {
        padding: 20px 25px;
    }

    .stats-left-title {
        font-size: 20px;
    }

    .stats-left-subtitle {
        font-size: 11px;
    }

    .stats-number {
        font-size: 18px;
    }

    .stats-label {
        font-size: 9px;
    }

    .stats-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }

    .stats-left,
    .stats-right {
        padding: 20px 25px;
    }

    .stats-left-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .stats-left-subtitle {
        font-size: 11px;
    }

    .stats-right {
        flex-direction: column;
        gap: 18px;
    }

    .stats-icon svg {
        width: 22px;
        height: 22px;
    }

    .stats-number {
        font-size: 18px;
    }

    .stats-label {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .stats-left,
    .stats-right {
        padding: 18px 20px;
    }

    .stats-left-title {
        font-size: 16px;
    }

    .stats-left-subtitle {
        font-size: 10px;
    }

    .stats-right {
        gap: 15px;
    }

    .stats-icon svg {
        width: 20px;
        height: 20px;
    }

    .stats-number {
        font-size: 16px;
    }

    .stats-label {
        font-size: 8px;
    }
}

/* ========== Hero Section ========== */
.interior-doors-hero {
    position: relative;
    width: 100%;
    height: 650px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.interior-doors-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.interior-doors-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.interior-doors-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.interior-doors-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #fff;
}

.interior-doors-hero .hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 30px 0;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.interior-doors-hero .hero-description {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.interior-doors-hero .hero-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #f3821a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 130, 26, 0.3);
}

.interior-doors-hero .hero-button:hover {
    background-color: #e07316;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 130, 26, 0.4);
    color: #fff;
}

/* Hero 响应式 */
@media (max-width: 1024px) {
    .interior-doors-hero {
        height: 550px;
    }

    .interior-doors-hero .hero-title {
        font-size: 44px;
    }

    .interior-doors-hero .hero-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .interior-doors-hero {
        height: 450px;
    }

    .interior-doors-hero .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .interior-doors-hero .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .interior-doors-hero .hero-button {
        padding: 14px 32px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .interior-doors-hero {
        height: 400px;
    }

    .interior-doors-hero .hero-title {
        font-size: 24px;
    }

    .interior-doors-hero .hero-description {
        font-size: 14px;
    }
}

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

.page-interior-doors .full-width {
    width: 100%;
    position: relative;
}

/* ========== Section 1: Hero ========== */
.ash-wood-hero {
    position: relative;
    padding: 100px 0;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-color: #111;
    overflow: hidden;
}

.ash-wood-hero .full-width {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ash-wood-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ash-wood-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ash-wood-hero:hover .hero-bg-image {
    transform: scale(1.1);
}

.ash-wood-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.ash-wood-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: left;
    color: #ffffff;
}

.ash-wood-hero .hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
}

.ash-wood-hero .hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.ash-wood-hero .hero-paragraph {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ash-wood-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 40px;
}

.btn-primary,
.hero-button-primary {
    background-color: #f3821a !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(243, 130, 26, 0.3);
}

.btn-primary:hover,
.hero-button-primary:hover {
    background-color: #e07316 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(243, 130, 26, 0.5);
}

.btn-secondary,
.hero-button-secondary {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover,
.hero-button-secondary:hover {
    background-color: #ffffff !important;
    color: #111111 !important;
    transform: translateY(-3px);
}

/* ========== Section: Door Types Grid (From Image) ========== */
.interior-door-types {
    padding: 80px 0;
    background-color: #ffffff;
}

.interior-door-types .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.interior-door-types .section-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.interior-door-types .section-sub-title {
    font-size: 20px;
    font-weight: 600;
    color: #f3821a;
    text-transform: uppercase;
}

.door-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.door-type-card {
    text-align: center;
    transition: all 0.4s ease;
}

.door-type-card:hover {
    transform: translateY(-5px);
}

.door-image-wrapper {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 40px 20px;
    margin-bottom: 15px;
    aspect-ratio: 4 / 3.5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.door-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Helps with placeholder/illustration blending */
}

.door-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== Section: Catalog Banner (From Image) ========== */
.interior-doors-catalog {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

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

.catalog-image {
    flex: 1;
    position: relative;
}

.catalog-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.catalog-wrapper:hover .catalog-image img {
    transform: scale(1.02) rotate(-1deg);
}

.catalog-text {
    flex: 1;
}

.catalog-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
    line-height: 1.2;
}

.catalog-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #f3821a;
    margin-bottom: 30px;
}

.catalog-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-btn {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.catalog-btn:hover {
    background-color: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .catalog-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .catalog-description {
        margin: 0 auto 30px;
    }
}

/* ========== Section: Interior Door Details Grid (2x3) ========== */
.interior-door-details-section {
    padding: 0;
    background-color: #ffffff;
}

.details-header-bar {
    background-color: #f5f5f5;
    padding: 15px 0;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.details-header-bar h2 {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.details-image-item {
    overflow: hidden;
    position: relative;
}

.details-image-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.details-image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .details-image-grid {
        grid-template-columns: 1fr;
    }

    .details-header-bar h2 {
        font-size: 18px;
    }
}

/* ========== Section 3 & 4: Image-Text sections (Legacy - keeping for structure but they will be removed from PHP) ========== */
.ash-wide-plank-flooring,
.ash-wide-plank-flooring-image-text {
    padding: 80px 0;
    background-color: #ffffff;
}

.ash-wide-plank-flooring .content-wrapper,
.ash-wide-plank-flooring-image-text .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.ash-wide-plank-flooring .content-text,
.ash-wide-plank-flooring-image-text .content-text {
    flex: 1;
}

.ash-wide-plank-flooring .section-title,
.ash-wide-plank-flooring-image-text .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.ash-wide-plank-flooring .section-paragraph,
.ash-wide-plank-flooring-image-text .section-paragraph {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.ash-wide-plank-flooring .content-image,
.ash-wide-plank-flooring-image-text .content-image {
    flex: 1;
}

.ash-wide-plank-flooring .content-image img,
.ash-wide-plank-flooring-image-text .content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f3821a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e07316;
}

/* ========== Section 5: Features ========== */
.ash-flooring-benefits {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.ash-flooring-benefits .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ash-flooring-benefits .benefits-paragraph {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
}

/* ========== Section 7: Card Grid ========== */
.ash-floor-environmental-choice-card-grid {
    padding: 80px 0;
}

.ash-floor-environmental-choice-card-grid .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.ash-floor-environmental-choice-card-grid .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #777;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: transform 0.3s;
}

.card-item:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.card-button {
    display: inline-block;
    margin-top: 15px;
    color: #f3821a;
    font-weight: 700;
    text-decoration: none;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .ash-wood-product-grid .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ash-wide-plank-flooring .content-wrapper,
    .ash-wide-plank-flooring-image-text .content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .ash-wood-product-grid .products-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

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

/* ========== Section: Bottom CTA Bar ========== */
.bottom-cta-bar {
    display: flex;
    width: 100%;
    margin-top: 0;
    line-height: 1;
}

.bottom-cta-btn {
    flex: 1;
    text-align: center;
    padding: 25px 0;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
}

.bottom-cta-btn.btn-orange {
    background-color: #f3821a;
    color: #ffffff;
}

.bottom-cta-btn.btn-orange:hover {
    background-color: #e07316;
}

.bottom-cta-btn.btn-white {
    background-color: #ffffff;
    color: #f3821a;
    border-top: 1px solid #eee;
}

.bottom-cta-btn.btn-white:hover {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .bottom-cta-bar {
        flex-direction: column;
    }

    .bottom-cta-btn {
        padding: 20px 0;
        font-size: 16px;
    }
}

/* ========== Section: Main Heading ========== */
.interior-doors-heading {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.heading-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.heading-main {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 0 0 25px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-sub {
    font-size: 20px;
    font-weight: 600;
    color: #FF9C00;
    margin: 0;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Heading 响应式 */
@media (max-width: 1024px) {
    .interior-doors-heading {
        padding: 50px 0;
    }

    .heading-main {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .heading-sub {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .interior-doors-heading {
        padding: 40px 0;
    }

    .heading-main {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .heading-sub {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .interior-doors-heading {
        padding: 30px 0;
    }

    .heading-main {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .heading-sub {
        font-size: 14px;
    }
}

/* ========== Section: Door Features Grid (2行3列) ========== */
.door-features-grid {
    padding: 60px 20px;
    background-color: #fff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f5f5f5;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 20px 20px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
}

/* Features Grid 响应式 */
@media (max-width: 1024px) {
    .door-features-grid {
        padding: 50px 20px;
    }

    .features-container {
        gap: 25px;
    }

    .feature-title {
        font-size: 16px;
        margin: 18px 18px 10px;
    }

    .feature-desc {
        font-size: 13px;
        margin: 0 18px 18px;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 20px;
    }

    .door-features-grid {
        padding: 40px 15px;
    }

    .feature-title {
        font-size: 15px;
        margin: 15px 15px 8px;
    }

    .feature-desc {
        font-size: 12px;
        margin: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 15px;
    }

    .door-features-grid {
        padding: 30px 10px;
    }
}

/* ========== Section: Catalog Download (左图右字) ========== */
.catalog-download-section {
    padding: 50px 20px;
    background-color: #fff;
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background-color: #fff;
    border: 2px solid #111;
    border-radius: 4px;
}

.catalog-image {
    flex: 1;
}

.catalog-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.catalog-content {
    flex: 1;
    padding: 10px;
}

.catalog-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.catalog-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #FF9C00;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-description {
    font-size: 13px;
    color: #555;
    margin: 0 0 20px 0;
    line-height: 1.6;
    text-transform: uppercase;
}

.catalog-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid #111;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.catalog-button:hover {
    background-color: #111;
    color: #fff;
    transform: translateY(-2px);
}

/* Catalog Download 响应式 */
@media (max-width: 1024px) {
    .catalog-download-section {
        padding: 40px 20px;
    }

    .catalog-container {
        gap: 30px;
        padding: 25px;
    }

    .catalog-title {
        font-size: 20px;
    }

    .catalog-subtitle {
        font-size: 13px;
    }

    .catalog-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .catalog-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .catalog-download-section {
        padding: 30px 15px;
    }

    .catalog-title {
        font-size: 18px;
    }

    .catalog-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .catalog-description {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .catalog-button {
        padding: 10px 25px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .catalog-download-section {
        padding: 25px 10px;
    }

    .catalog-container {
        padding: 15px;
    }

    .catalog-title {
        font-size: 16px;
    }

    .catalog-subtitle {
        font-size: 11px;
    }

    .catalog-description {
        font-size: 10px;
    }
}

/* ========== Section: Interior Door Details Header ========== */
.interior-door-details-header {
    background-color: #f5f5f5;
    padding: 15px 20px 15px 55px;
    text-align: left;
}

.details-header-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Details Header 响应式 */
@media (max-width: 768px) {
    .interior-door-details-header {
        padding: 12px 15px 12px 45px;
    }

    .details-header-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .interior-door-details-header {
        padding: 10px 12px 10px 40px;
    }

    .details-header-title {
        font-size: 14px;
    }
}

/* ========== Section: Door Details Cards (2列3行) ========== */
.door-details-cards {
    padding: 50px 20px;
    background-color: #fff;
}

.details-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 30px;
}

.detail-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background-color: #f5f5f5;
}

.detail-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-card:hover .detail-card-image img {
    transform: scale(1.05);
}

/* Details Cards 响应式 */
@media (max-width: 1024px) {
    .door-details-cards {
        padding: 40px 20px;
    }

    .details-cards-container {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .details-cards-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 20px;
    }

    .door-details-cards {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .door-details-cards {
        padding: 25px 10px;
    }

    .details-cards-container {
        gap: 15px;
    }
}

/* ========== Section: Large Image Banner ========== */
.large-image-banner {
    width: 100%;
    background-color: #fff;
    margin-bottom: 50px;
}

.large-banner-image {
    width: 100%;
    position: relative;
}

.large-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}