/* MEYINSOR Stage11B extracted from shop/legal/faq.php. Do not edit inline PHP for styles. */
/* ========== CSS 变量系统 ========== */
:root {
    /* 颜色系统 */
    --primary-color: #000000;
    --secondary-color: #d4af37;
    --secondary-light: #faf5e9;
    --secondary-dark: #b8941c;
    --accent-color: #8b7355;
    
    /* 文字颜色 */
    --text-primary: #111111;
    --text-secondary: #444444;
    --text-light: #666666;
    --text-on-dark: #ffffff;
    
    /* 背景色 */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fefefe;
    --bg-dark: #1a1a1a;
    
    /* 边框与阴影 */
    --border-color: #eaeaea;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* 间距系统 */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* 过渡动画 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ========== 基础重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--text-secondary);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== 顶部英雄区 ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 350px;
    max-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-bg {
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    padding: var(--space-xl);
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-on-dark);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    margin: var(--space-lg) auto;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* ========== 面包屑导航 ========== */
.hero-breadcrumb {
    margin-top: var(--space-lg);
    text-align: center;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    list-style: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.4);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-md);
}

.breadcrumb-nav li {
    position: relative;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: var(--space-xs) 0;
    display: flex;
    align-items: center;
}

.breadcrumb-nav a:hover {
    color: var(--secondary-color);
}

.breadcrumb-nav li:not(:last-child) {
    margin-right: var(--space-md);
    padding-right: var(--space-md);
}

.breadcrumb-nav li:not(:last-child):after {
    content: '›';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb-nav li:last-child {
    color: var(--secondary-color);
    font-weight: 500;
}

/* ========== 主内容区 ========== */
.page-content {
    max-width: 1300px;
    margin: var(--space-2xl) auto;
    position: relative;
}

/* ========== FAQ介绍段落 ========== */
.faq-intro {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--border-color);
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.intro-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========== FAQ分类区块 ========== */
.faq-category {
    margin-bottom: var(--space-2xl);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--secondary-color), 
        var(--secondary-dark));
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.category-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-left: var(--space-md);
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
}

.category-title .title-number {
    display: inline-block;
    font-size: 1rem;
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    margin-right: var(--space-sm);
    font-weight: 500;
}

.category-title .title-icon {
    color: var(--secondary-color);
    margin-right: var(--space-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

/* ========== FAQ项目样式 ========== */
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-item {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent);
}

.faq-question {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    padding-left: var(--space-md);
}

.faq-question::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
}

.faq-answer {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: var(--space-md);
    position: relative;
}

.faq-answer::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-dark);
    font-weight: bold;
    font-size: 1rem;
}

/* ========== FAQ段落样式 ========== */
.faq-paragraph {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
}

/* ========== 联系方式区块 ========== */
.contact-section {
    background: linear-gradient(135deg, 
        var(--secondary-light) 0%, 
        rgba(250, 245, 233, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, 
        var(--secondary-color), 
        var(--secondary-dark));
}

.contact-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        var(--secondary-dark) 100%);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    transition: transform var(--transition-normal);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.contact-button i {
    margin-left: var(--space-sm);
}

/* ========== CTA 行动号召区 ========== */
.cta-section {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2rem;
    color: var(--text-on-dark);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, 
        var(--secondary-color) 0%, 
        var(--secondary-dark) 100%);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    transition: transform var(--transition-normal);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-width: 200px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.cta-btn i {
    margin-left: var(--space-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-on-dark);
    box-shadow: none;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .page-content {
        padding: 0 var(--space-lg);
    }
    
    .faq-category {
        padding: var(--space-lg);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 20px;
        --space-xl: 32px;
        --space-2xl: 48px;
        --space-3xl: 64px;
    }
    
    .hero-section {
        height: 35vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 0 var(--space-md);
        margin: var(--space-xl) auto;
    }
    
    .faq-intro,
    .faq-category {
        padding: var(--space-lg);
    }
    
    .category-title {
        font-size: 1.375rem;
        padding-left: var(--space-sm);
    }
    
    .faq-item {
        padding: var(--space-md);
    }
    
    .faq-question,
    .faq-answer {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .cta-btn {
        min-width: 100%;
        padding: var(--space-md);
        font-size: 1rem;
    }
    
    .breadcrumb-nav {
        font-size: 13px;
        padding: var(--space-xs) var(--space-md);
    }
    
    .breadcrumb-nav li:not(:last-child) {
        margin-right: var(--space-sm);
        padding-right: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .faq-item {
        padding: var(--space-sm);
    }
    
    .contact-section {
        padding: var(--space-lg);
    }
    
    .breadcrumb-nav {
        flex-direction: column;
        gap: var(--space-xs);
        align-items: center;
    }
    
    .breadcrumb-nav li:not(:last-child) {
        margin-right: 0;
        padding-right: 0;
        margin-bottom: var(--space-xs);
    }
    
    .breadcrumb-nav li:not(:last-child):after {
        display: none;
    }
}

/* ========== 打印样式 ========== */
@media print {
    .hero-section,
    .cta-section,
    .contact-section,
    .faq-category::before,
    .breadcrumb-nav {
        display: none;
    }
    
    .faq-category {
        border: 1px solid #ddd;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .faq-question {
        color: #000;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
}
