    /* 古琴主题色调 */
    :root {
        --primary: #8B4513;
        --primary-dark: #5C2E0B;
        --secondary: #D4A574;
        --accent: #C43E2C;
        --background-alt: #F9F5F0;
        --text-dark: #2C1810;
        --text-medium: #5C4033;
    }
    
    .wood-card, .badge-item, .btn-custom-inquiry, .hero-cta-button {
        background: var(--primary);
    }
    .btn-custom-inquiry:hover, .hero-cta-button:hover {
        background: var(--primary-dark);
    }
    .ColorBottom {
        border-bottom: 3px solid var(--secondary);
        display: inline-block;
        padding-bottom: 10px;
    }
    .required { color: var(--accent); }
	
	        .hero-custom-custom {
            background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), 
                        url(''); background-size: cover;
            background-position: center 30%;
            padding: 5rem 5% 4rem;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .hero-custom-custom h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            border-bottom: none;
        }

        .hero-custom-custom .hero-sub {
            font-size: 1.3rem;
            color: var(--text-medium);
            max-width: 800px;
            margin: 0 auto 1.5rem;
            font-weight: 300;
        }

        .custom-badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--text-dark);
            padding: 0.5rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            border: 1px solid rgba(154,31,28,0.1);
        }

        .craft-timeline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 2.5rem 0 1rem;
        }

        .craft-item {
            background: var(--background);
            border-radius: var(--radius);
            padding: 1rem 1rem;
            box-shadow: var(--shadow);
            min-width: 180px;
            border: 1px solid var(--border);
        }

        .craft-item i {
            font-size: 2.2rem;
            color: var(--reded);
            margin-bottom: 0.5rem;
        }

        .craft-item .number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        /* 木材展示增强 */
        .wood-showcase {
            background: var(--background-alt);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            margin: 3rem 0;
            border: 1px solid var(--border);
        }

        .wood-grid-large {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1.8rem;
        }

        .wood-card {
            background: white;
            border-radius: 40px;
            padding: 0.6rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border: 1px solid #eae0d5;
            transition: all 0.2s;
            font-size: 0.9rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }

        .wood-card i {
            color: var(--reded);
            font-size: 1rem;
        }

        .wood-card:hover {
            border-color: var(--reded);
            transform: translateY(-2px);
            background: #fffaf0;
        }

        /* 榫卯特征区域 */
        .feature-custom {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            margin: 4rem 0;
        }

        .custom-text {
            padding: 2.5rem;
        }

        .custom-text h2 {
            margin-top: 0;
            border-left: 6px solid var(--secondary);
            padding-left: 1.2rem;
        }

        .custom-text p {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.8;
        }

        .custom-quote {
            background: #f9f2f2;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0 0;
            border-left: 4px solid var(--reded);
        }

        .custom-quote i {
            color: var(--reded);
            opacity: 0.6;
            margin-right: 0.3rem;
        }

        .custom-image {
            background: #e1d9cf;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b98f6b;
            font-size: 8rem;
            background: radial-gradient(circle at 30% 30%, #f3ede5, #d2b48c);
        }

        /* 定制流程步骤 (复用service-process样式并微调) */
        .process-compact {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .step-mini {
            background: white;
            border-radius: var(--radius);
            padding: 1.8rem 1.2rem;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            position: relative;
        }
        .step-mini .step-icon {
            width: 60px;
            height: 60px;
            background: var(--reded);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.2rem;
        }
        .step-mini h4 {
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }
        .step-mini p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        @media (max-width: 768px) {
            .feature-custom { grid-template-columns: 1fr; }
            .process-compact { grid-template-columns: 1fr 1fr; }
            .hero-custom-custom h1 { font-size: 2.2rem; }
			        .craft-timeline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin: 1rem 0 1rem;
        }

        .craft-item {
            background: var(--background);
            border-radius: var(--radius);
            padding: 1rem 1rem;
            box-shadow: var(--shadow);
            min-width: 120px;
            border: 1px solid var(--border);
        }

}
			
        }
        @media (max-width: 480px) {
            .process-compact { grid-template-columns: 1fr; }
			
        }

        .btn-custom-inquiry {
            background: var(--reded);
            color: white;
            border: none;
            padding: 1rem 3rem;
            font-size: 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(154,31,28,0.3);
            transition: 0.3s;
            display: inline-block;
            margin: 2rem 0 1rem;
            text-decoration: none;
        }
        .btn-custom-inquiry:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(154,31,28,0.35);
            color: white;
        }
        .delivery-note {
            background: #fff6e9;
            border-radius: 60px;
            padding: 0.8rem 2rem;
            display: inline-block;
            font-weight: 500;
            border: 1px dashed var(--secondary);
        }
@media (max-width: 768px) {
    .feature-custom {
        grid-template-columns: 1fr; 
    }
    
    .custom-image {
        min-height: auto; 
        order: -1; 
    }
    
    .custom-image img {
        width: 100%;
        height: auto;
        display: block;
    }
}


/* 木材展示区样式 */
.wood-showcase {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    margin: 2rem 0 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.wood-grid-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.wood-card {
    background: #fff;
    padding: 0.7rem 1.3rem;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a3b32;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.wood-card i {
    color: #2d6a4f;
    font-size: 0.9rem;
}

.wood-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    border-color: rgba(45,106,79,0.2);
}

.badge-item {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.3rem;
}

/* 色卡网格 */
.material-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #2d6a4f;
    display: inline-block;
}

.section-title i {
    margin-right: 0.5rem;
    color: #2d6a4f;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.color-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
    aspect-ratio: 1 / 0.8;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    cursor: default;
}

.color-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.color-name {
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.color-code {
    font-size: 0.7rem;
    display: block;
    opacity: 0.8;
}

.note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #666;
}

.note i {
    margin-right: 0.5rem;
    color: #2d6a4f;
}

@media (max-width: 768px) {
    .color-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.8rem;
    }
    .wood-grid-large {
        gap: 0.7rem;
    }
    .wood-card {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .wood-showcase {
        padding: 1.5rem 1rem;
    }
}

/* 收藏级手工定制样式 */
.heirloom-section {
    margin-bottom: 3rem;
}

.ColorBottom {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid;
    display: inline-block;
    width: auto;
}

.ColorBottom i {
    margin-right: 0.5rem;
}

.heirloom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.heirloom-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.03);
}

.heirloom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.heirloom-icon {
    font-size: 2.5rem;
    color: var(--primary, #2d6a4f);
    margin-bottom: 1rem;
}

.heirloom-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.heirloom-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.heirloom-quote {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 60px;
    padding: 1.2rem 2rem;
    text-align: center;
    font-style: italic;
    color: #4a3b32;
    font-size: 1rem;
    margin-top: 1rem;
}

.heirloom-quote i {
    color: var(--primary, #2d6a4f);
    margin: 0 0.5rem;
    opacity: 0.6;
}

/* 流程步骤样式 */
.process-section {
    margin-top: 2rem;
}

.process-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-mini {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.2s;
    border: 1px solid rgba(0,0,0,0.03);
}

.step-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary, #2d6a4f);
    margin-bottom: 0.8rem;
}

.step-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: #333;
}

.step-mini p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.step-duration {
    display: inline-block;
    background: #e8f5e9;
    color: #2d6a4f;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    margin-top: 0.5rem;
}

/* 货期表格样式 */
.leadtime-table {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.leadtime-table h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leadtime-table h3 i {
    color: var(--primary, #2d6a4f);
}

.table-wrapper {
    overflow-x: auto;
}

.leadtime-spec {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.leadtime-spec th,
.leadtime-spec td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.leadtime-spec th {
    background: #2d6a4f;
    color: #fff;
    font-weight: 600;
}

.leadtime-spec tr:last-child td {
    border-bottom: none;
}

.leadtime-spec td {
    color: #444;
}

.note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: #fff9e6;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #888;
}

.note i {
    margin-right: 0.5rem;
    color: #d4a017;
}

@media (max-width: 768px) {
    .ColorBottom {
        font-size: 1.4rem;
    }
    .heirloom-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .process-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .heirloom-card {
        padding: 1.2rem;
    }
    .leadtime-spec th,
    .leadtime-spec td {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    .heirloom-quote {
        font-size: 0.85rem;
        padding: 1rem;
    }
}
/* 三百年古木板块样式 */
.antique-wood-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    border-radius: 48px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.antique-wood-header {
    text-align: center;
    margin-bottom: 2rem;
}

.antique-wood-lead {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a3b32;
    max-width: 700px;
    margin: 1rem auto 0;
    position: relative;
}

.antique-wood-lead:before,
.antique-wood-lead:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary, #2d6a4f);
    opacity: 0.5;
    font-family: serif;
}

.antique-wood-lead:before {
    margin-right: 0.5rem;
}

.antique-wood-lead:after {
    margin-left: 0.5rem;
}

/* 核心特色网格 */
.antique-wood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.antique-wood-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.antique-wood-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d6a4f, #d4a017, #8b1a1a);
}

.antique-wood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.antique-wood-card .card-icon {
    font-size: 2.2rem;
    color: var(--primary, #2d6a4f);
    margin-bottom: 1rem;
}

.antique-wood-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.antique-wood-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2d6a4f;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
}

/* 工艺细节展示 */
.antique-wood-details {
    background: rgba(255,255,255,0.7);
    border-radius: 32px;
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary, #2d6a4f);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.detail-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA卡片 */
.antique-wood-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.cta-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.2s;
}

.cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cta-icon {
    font-size: 1.8rem;
    color: var(--primary, #2d6a4f);
}

.cta-info h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #333;
}

.cta-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cta-info strong {
    color: #2d6a4f;
}

.cta-info a {
    color: var(--primary, #2d6a4f);
    text-decoration: none;
}

.cta-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .antique-wood-section {
        padding: 1.5rem;
        border-radius: 32px;
    }
    .antique-wood-lead {
        font-size: 1rem;
    }
    .antique-wood-grid {
        gap: 1rem;
    }
    .antique-wood-card {
        padding: 1.2rem;
    }
    .detail-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .cta-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* 定制区块 */
        .custom-order-section {
            background: #ffffff;
            border-radius: 28px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-top: 1rem;
        }

        .form-header-note {
            background: #f9f3ea;
            padding: 1rem 1.5rem;
            border-radius: 40px;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 0.95rem;
            border: 1px solid #eedfcb;
        }
        .form-header-note a {
            color: #b1622c;
            font-weight: 500;
        }

        /* 卡片样式 */
        .form-card {
            background: #fff;
            border-radius: 24px;
            margin-bottom: 2rem;
            border: 1px solid #efe3d6;
            overflow: hidden;
            transition: box-shadow 0.2s;
        }
        .card-header {
            background: #fef7f0;
            padding: 1rem 1.6rem;
            font-weight: 600;
            font-size: 1.2rem;
            border-bottom: 1px solid #e9dccc;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #4f3522;
        }
        .card-header i {
            font-style: normal;
            font-weight: normal;
        }
        .card-body {
            padding: 1.6rem;
        }

        /* 网格布局 */
        .form-row-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
        }
        .form-row {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 12px;
            color: #4f3522;
            font-size: 0.95rem;
        }
        .required::after {
            content: "*";
            color: #c0392b;
            margin-left: 4px;
        }
        .checkbox-group, .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            align-items: center;
        }
        .checkbox-item, .radio-group label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            cursor: pointer;
        }
        input[type="text"], input[type="email"], input[type="tel"], textarea, select {
            border: 1px solid #ddd0c0;
            border-radius: 14px;
            padding: 10px 14px;
            font-size: 0.9rem;
            width: 100%;
            transition: 0.2s;
            background: #fff;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #c98247;
            box-shadow: 0 0 0 2px rgba(201,130,71,0.2);
        }
        .custom-input {
            display: inline-flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .other-text {
            width: 110px;
            margin-left: 5px;
        }

        /* 包装盒专用区块 */
        .packaging-card {
            background: #fffbf5;
            border-left: 5px solid #c98247;
        }

        /* 提交按钮 */
        .hero-cta-button {
            background: #8b5a2b;
            color: white;
            border: none;
            padding: 14px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 48px;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            max-width: 320px;
        }
        .hero-cta-button:hover {
            background: #6f451f;
            transform: scale(1.01);
        }

        @media (max-width: 700px) {
            .custom-order-section {
                padding: 0rem;
            }
            .card-body {
                padding: 0rem;
            }
        }
		
/* ============================================
   品牌故事卡片 - 古琴定制专用样式
   ============================================ */

/* 卡片容器 */
.brand-story-card {
    background: linear-gradient(135deg, #FDF8F2 0%, #F5EDE3 100%);
    border-radius: 24px;
    padding: 2rem 2rem 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 12px 30px rgba(44, 24, 16, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-story-card:hover {
    box-shadow: 0 18px 40px rgba(44, 24, 16, 0.12);
    border-color: rgba(212, 165, 116, 0.4);
}

/* 装饰纹理（古琴断纹灵感） */
.brand-story-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(212, 165, 116, 0.02) 0px,
        rgba(212, 165, 116, 0.02) 2px,
        transparent 2px,
        transparent 8px
    );
    pointer-events: none;
    border-radius: 24px;
}

/* 故事内容区域 */
.story-content {
    position: relative;
    z-index: 2;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #2C1810;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
    text-align: justify;
}

.story-content p:first-child {
    margin-top: 0;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* 引语区块（古琴经典语录风格） */
.story-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #8B5E3C;
    background: rgba(212, 165, 116, 0.12);
    border-left: 4px solid #D4A574;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0 1rem 0;
    border-radius: 0 16px 16px 0;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

.story-quote i {
    color: #D4A574;
    margin-right: 6px;
}

/* 双引号装饰 */
.story-quote::before {
    content: "“";
    font-size: 2.5rem;
    color: #D4A574;
    opacity: 0.3;
    position: absolute;
    left: 8px;
    top: -8px;
    font-family: serif;
}

/* 底部信息栏 */
.story-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    font-size: 0.85rem;
    color: #5C4033;
    position: relative;
    z-index: 2;
}

.story-footer i {
    color: #C43E2C;
    margin-right: 4px;
    font-size: 0.9rem;
}

/* 图标样式（确保使用Font Awesome或自定义图标库） */
.story-footer i.icon-check-circle,
.story-footer i.icon-shield,
.story-footer i.icon-globe {
    display: inline-block;
    width: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .brand-story-card {
        padding: 1.5rem 1.25rem 1.25rem 1.25rem;
        border-radius: 20px;
    }
    
    .story-content p {
        font-size: 0.9rem;
        line-height: 1.65;
        text-align: left;
    }
    
    .story-quote {
        font-size: 0.95rem;
        padding: 0.85rem 1.25rem;
        margin: 1.25rem 0 0.75rem 0;
    }
    
    .story-quote::before {
        font-size: 2rem;
        top: -6px;
    }
    
    .story-footer {
        gap: 1rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
    }
    
    .story-footer i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .brand-story-card {
        padding: 1.25rem 1rem 1rem 1rem;
    }
    
    .story-footer {
        flex-direction: column;
        gap: 0.6rem;
        align-items: flex-start;
    }
    
    .story-quote {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
}

/* 深色模式适配（可选） */
@media (prefers-color-scheme: dark) {
    .brand-story-card {
        background: linear-gradient(135deg, #2C2418 0%, #1F1810 100%);
        border-color: rgba(212, 165, 116, 0.2);
    }
    
    .story-content p {
        color: #E8DCD0;
    }
    
    .story-quote {
        color: #D4A574;
        background: rgba(212, 165, 116, 0.08);
    }
    
    .story-footer {
        color: #B8A88C;
        border-top-color: rgba(212, 165, 116, 0.2);
    }
}

/* 打印样式 */
@media print {
    .brand-story-card {
        background: none;
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
    
    .story-quote {
        border-left: 2px solid #999;
        background: none;
    }
}

/* 定制询价表格样式 - 使用主题色变量 */
.custom-inquiry-section {
    max-width: 1000px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.inquiry-header {
    background: linear-gradient(135deg, #9A1F1C 0%, #be002f 100%);
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.inquiry-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.inquiry-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.inquiry-header h2 i {
    margin-right: 0.5rem;
}

.inquiry-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.inquiry-header .highlight {
    color: #D4A76A;
    font-weight: 600;
}

.inquiry-form {
    padding: 2rem;
}

.form-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text-dark, #2c3e50);
}

.form-field label i {
    color: var(--primary, #be002f);
    width: 1.2rem;
}

.required {
    color: #e74c3c;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.7rem 1rem;
    border: 1px solid var(--border, #E2E8F0);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary, #be002f);
    box-shadow: 0 0 0 3px rgba(190, 0, 47, 0.1);
}

.form-card {
    background: #f8f9fa;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.form-card .card-header {
    background: #fff;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border, #E2E8F0);
    color: var(--primary, #be002f);
}

.form-card .card-header i {
    margin-right: 0.5rem;
}

.form-card .card-body {
    padding: 1.5rem;
}

textarea {
    width: 100%;
    resize: vertical;
    font-family: inherit;
}

/* 普通块级按钮样式 - 宽度100%，白色背景 */
.btn-submit {
    background: var(--primary, #9A1F1C);
    color: white;
    border: 2px solid var(--primary, #9A1F1C);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 15px;
}

.btn-submit:hover {
    background: var(--primary, #9A1F1C);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 31, 28, 0.2);
}

.btn-submit i {
    font-size: 1.1rem;
}
.submit-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color:  #fff;
    justify-content: center;
}

.submit-note i {
    margin-right: 0.3rem;
}

.inquiry-promise {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid var(--border, #E2E8F0);
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium, #666);
}

.promise-item i {
    color: var(--primary, #be002f);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .custom-inquiry-section {
        margin: 1rem;
        border-radius: 24px;
    }
    .inquiry-header {
        padding: 1.2rem;
    }
    .inquiry-header h2 {
        font-size: 1.3rem;
    }
    .inquiry-form {
        padding: 1.2rem;
    }
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .inquiry-promise {
        gap: 1rem;
        padding: 1rem;
    }
    .promise-item {
        font-size: 0.7rem;
    }
}

/* 备用图标样式（如果font-awesome不可用） */
.icon-check-circle:before { content: "✓"; font-weight: bold; display: inline-block; width: 18px; }
.icon-shield:before { content: "🛡️"; display: inline-block; width: 18px; }
.icon-globe:before { content: "🌐"; display: inline-block; width: 18px; }