/* 通用样式和字体 */
:root {
    --primary-color: #fff;
    --secondary-color: #f8f9fa;
    --accent-color: #2c3e50;
    --gold-color: #d4af37;
    --dark-color: #1a1a1a;
    --text-color: #4c4c4c;
    --light-gray: #ecf0f1;
    --overlay: rgba(0,0,0,0.4);
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, '等线', 'DengXian', 'Microsoft YaHei', '微软雅黑';
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif, '等线', 'DengXian', 'Microsoft YaHei', '微软雅黑';
    font-weight: 500;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
}

h1 { font-size: 4em; }
h2 { font-size: 3em; }
h3 { font-size: 2em; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 头部导航 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 1.0);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-family: '等线', 'DengXian', 'Microsoft YaHei', '微软雅黑', sans-serif;
    font-weight: 600;
    font-size: 2em;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 3px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 27px;
    width: auto;
    display: block;
    margin: 0;
    border-radius: 0;
    transition: transform 0.3s ease;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.1);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.language-toggle a {
    background: var(--gold-color);
    color: var(--primary-color) !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-toggle a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Language Dropdown Menu */
.language-dropdown {
    position: relative;
}

.language-dropdown .language-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-color);
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 5px;
}

.language-dropdown:hover .language-menu {
    display: block;
}

/* 移动端禁用hover效果 */
@media (max-width: 768px) {
    .language-dropdown:hover .language-menu {
        display: none;
    }

    /* 确保顶部导航栏的语言下拉菜单始终可见 */
    .navbar .language-dropdown {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }

    .navbar .language-dropdown .language-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.language-dropdown .language-menu li {
    list-style: none;
}

.language-dropdown .language-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    border-radius: 0;
}

.language-dropdown .language-menu li a:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: none;
}

/* Language dropdown toggle styling */
.language-dropdown .language-toggle {
    background: var(--gold-color);
    color: var(--primary-color) !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.language-dropdown .language-toggle:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* 主页英雄区域 */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

/* 确保所有幻灯片在过渡期间都有背景 */
.carousel-container {
    background: #1a1a1a;
}

.carousel-slide img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.8);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.carousel-arrow {
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    pointer-events: all;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    border-color: white;
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.3), rgba(212, 175, 55, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--primary-color);
    animation: fadeInUp 1.5s ease;
}

.hero-content h1 {
    font-size: 6em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 5px;
}

.hero-logo {
    height: 84px;
    width: auto;
    display: inline-block;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) brightness(10) drop-shadow(3px 3px 6px rgba(0,0,0,0.7));
}

.hero-content h2 {
    font-size: 2.5em;
    font-weight: 300;
    color: var(--primary-color);
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '↓';
    font-size: 2em;
    color: var(--primary-color);
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* 关于我们区域 */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.intro-text {
    text-align: center;
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.about-item {
    background: var(--primary-color);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-item:hover::before {
    transform: scaleX(1);
}

.about-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-item:hover img {
    transform: scale(1.05);
}

.about-item h3 {
    text-align: left;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: var(--accent-color);
    position: relative;
}

.about-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-color);
}

.about-item p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    margin-top: 10px;
    flex: 1;
}

/* 产品系列区域 */
.products-section {
    padding: 120px 0;
    background: var(--primary-color);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    background-color: #f8f9fa;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 30px;
}

.product-card h3 {
    text-align: left;
    font-size: 1.6em;
    margin: 0 0 15px;
    color: var(--accent-color);
    position: relative;
}

.product-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-color);
}

.product-card p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    margin: 15px 0 0;
}

.product-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--gold-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 公司动态板块 */
.news-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-color);
    line-height: 1.6;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    border: 2px solid var(--gold-color);
    border-radius: 25px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.news-item {
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-item:hover::before {
    transform: scaleX(1);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
}

.news-date,
.news-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content h3 {
    font-size: 1.4em;
    color: var(--accent-color);
    margin-bottom: 15px;
    line-height: 1.3;
    flex-grow: 1;
}

.news-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 8px 15px;
    background: var(--primary-color);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--gold-color);
    color: var(--primary-color);
    border-color: var(--gold-color);
    transform: translateY(-1px);
}

.pagination-btn.next {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.pagination-btn.next:hover {
    background: var(--gold-color);
    border-color: var(--gold-color);
}

/* 新闻详情弹窗 */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    overflow-y: auto;
}

.news-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--primary-color);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header h2 {
    font-size: 2em;
    color: var(--accent-color);
    margin: 0;
    text-align: left;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2em;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.modal-body {
    padding: 30px 40px 40px;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    color: var(--text-color);
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

#modalImage {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

#modalImage img {
    width: 100%;
    height: auto;
    display: block;
}

#modalContent {
    line-height: 1.8;
    color: var(--text-color);
    font-size: 16px;
}

#modalContent h3 {
    color: var(--accent-color);
    margin: 30px 0 15px;
    font-size: 1.3em;
}

#modalContent p {
    margin-bottom: 15px;
}

#modalContent ul,
#modalContent ol {
    margin: 15px 0;
    padding-left: 30px;
}

#modalContent li {
    margin-bottom: 8px;
}

/* 联系我们区域 */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    background: var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-color);
}

.contact-info h3 {
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 30px;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-color);
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-info strong {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.05em;
}

.contact-form {
    flex: 2;
    background: var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-color);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: '等线', 'DengXian', 'Microsoft YaHei', '微软雅黑', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
    background: var(--primary-color);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form button {
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    color: var(--primary-color);
    padding: 18px 40px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1em;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* 底部 */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--dark-color));
    color: var(--primary-color);
    font-size: 0.9em;
    position: relative;
    overflow: hidden;
}

.footer p {
    margin: 8px 0;
}

.icp-number {
    font-size: 0.85em;
    opacity: 0.8;
}

.icp-number a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.icp-number a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}



/* 加载动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 产品详情页面样式 */
.product-detail-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-color);
}

.breadcrumb a {
    color: var(--gold-color);
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-color);
    margin-left: 5px;
}

.back-button {
    margin: 20px 0;
    text-align: left;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--gold-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.back-btn svg {
    flex-shrink: 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-detail-content h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-family);
}

.product-detail-content p {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
}

.product-features,
.product-applications,
.product-contact {
    margin-bottom: 40px;
}

.product-features h3,
.product-applications h3,
.product-contact h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-family);
}

.product-features ul,
.product-applications ul {
    list-style: none;
    padding: 0;
}

.product-features li,
.product-applications li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-color);
}

.product-features li:before,
.product-applications li:before {
    content: "▸ ";
    color: var(--gold-color);
    font-weight: bold;
    margin-right: 8px;
}

.contact-btn {
    display: inline-block;
    background: var(--gold-color);
    color: var(--bg-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.category-overview {
    text-align: center;
    margin-bottom: 60px;
}

.category-overview h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-overview p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Chenille series specific sizing to ensure consistency */
.chenille-product .product-image img {
    height: 350px !important;
    object-fit: contain !important;
    object-position: center !important;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-family);
}

.product-info p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-specs {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.product-specs span {
    display: block;
    color: var(--text-color);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.product-specs strong {
    color: var(--gold-color);
}

.color-swatches {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.color-swatches h4 {
    font-size: 0.9em;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fabric-swatch {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
}

.fabric-swatch:hover {
    transform: scale(1.05);
    border-color: var(--gold-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.fabric-swatch.active {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.3);
}

.fabric-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fabric-swatch:hover img {
    transform: scale(1.1);
}

.fabric-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold-color);
    color: var(--bg-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.color-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fabric-swatch:hover .color-tooltip {
    opacity: 1;
}

/* Artiselle品牌名称特殊字体 */
.brand-name {
    font-family: 'Eras Demi ITC', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-color), transparent);
    opacity: 0.6;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Mobile Responsive Images */
@media (max-width: 768px) {
    .product-card img {
        height: 200px;
    }

    .product-image img {
        height: 250px;
    }

    .chenille-product .product-image img {
        height: 250px !important;
        object-fit: contain !important;
    }

    .fabric-swatch {
        width: 60px;
        height: 60px;
    }

    .about-item img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .product-card img {
        height: 180px;
    }

    .product-image img {
        height: 200px;
    }

    .fabric-swatch {
        width: 50px;
        height: 50px;
    }

    .about-item img {
        height: 100px;
    }
}

/* 桌面端隐藏汉堡菜单 */
.mobile-menu-toggle {
    display: none;
}

/* 移动端全面优化 */
@media (max-width: 768px) {
    /* 移动端头部优化 */
    .header {
        min-height: 60px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 10px 0;
    }

    /* 汉堡菜单 */
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 12px;
        right: 15px;
        z-index: 1001;
        background: var(--primary-color);
        border: 2px solid var(--gold-color);
        border-radius: 8px;
        cursor: pointer;
        padding: 6px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        width: 40px;
        height: 40px;
    }

    .mobile-menu-toggle:hover {
        background: var(--secondary-color);
        transform: scale(1.05);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    .hamburger {
        width: 22px;
        height: 18px;
        position: relative;
        margin: 0 auto;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2.5px;
        background: var(--accent-color);
        margin: 3.5px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 2px 0 15px rgba(0,0,0,0.15);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        flex-direction: column;
        padding: 80px 20px 20px;
        overflow-y: auto;
        transform: translateX(0);
        opacity: 0;
        visibility: hidden;
        min-height: 60px;
    }

    .navbar.active {
        left: 0;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .logo {
        position: fixed;
        top: 16px;
        left: 15px;
        z-index: 1002;
        display: flex !important;
        align-items: center;
        height: 28px;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .logo img {
        height: 28px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        color: var(--text-color);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .nav-links a:hover {
        background: var(--secondary-color);
        border-left-color: var(--gold-color);
        transform: none;
    }

    .language-dropdown {
        width: 100%;
        margin-top: 10px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .language-dropdown .language-toggle {
        width: 100%;
        text-align: left;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    .language-dropdown .language-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: var(--secondary-color);
        margin-top: 5px;
        border-radius: 8px;
    }

    .language-dropdown.active .language-menu {
        display: block;
    }

    /* 遮罩层 */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }

    /* 确保主导航栏在移动端正确显示 */
    .header .navbar {
        position: relative !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        flex-direction: row !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        min-height: 40px;
    }

    .header .navbar .logo {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header .navbar .nav-links {
        display: none !important; /* 隐藏桌面端导航链接 */
    }

    /* 在移动端顶部导航栏显示语言切换器 */
    .header .navbar .language-dropdown {
        display: block !important;
        position: fixed !important;
        top: 12px !important;
        right: 60px !important; /* 汉堡按钮左边 */
        z-index: 1002 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header .navbar .language-dropdown .language-toggle {
        padding: 6px 12px !important;
        font-size: 12px !important;
        background: var(--gold-color) !important;
        color: var(--primary-color) !important;
        border-radius: 15px !important;
        text-decoration: none !important;
    }

    /* 只在激活状态下显示侧边栏 */
    .navbar.active:not(.header .navbar) {
        position: fixed !important;
        left: 0 !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 2px 0 15px rgba(0,0,0,0.15) !important;
        padding: 80px 20px 20px !important;
    }

    .navbar.active:not(.header .navbar) .nav-links {
        display: flex !important;
    }

    /* 主要内容区域调整 */
    .hero-section {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }

    .hero-content h1 {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 1.3em;
        line-height: 1.4;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 20px;
    }

    /* 标题字体调整 */
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.5em; }

    /* 网格布局调整 */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-item {
        padding: 20px 15px;
        text-align: center;
    }

    .about-item img {
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .product-card {
        text-align: center;
    }

    .product-card img {
        height: 200px;
        border-radius: 10px;
    }

    .product-card-content {
        padding: 20px 15px;
    }

    /* 联系表单优化 */
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info, .contact-form {
        padding: 20px 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 16px; /* 防止iOS缩放 */
    }

    .contact-form button {
        padding: 12px 25px;
        font-size: 16px;
    }

    /* 按钮优化 */
    .product-btn,
    .contact-btn,
    .back-btn {
        padding: 12px 25px;
        font-size: 14px;
        border-radius: 25px;
        touch-action: manipulation; /* 优化触摸响应 */
    }

    /* 轮播图优化 */
    .carousel-nav {
        bottom: 20px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    /* 产品详情页优化 */
    .breadcrumb {
        font-size: 14px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .product-specs span {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .color-swatches h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .color-options {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* 字体优化 */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .intro-text {
        font-size: 1.1em;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    /* 页脚优化 */
    .footer {
        padding: 20px 15px;
        font-size: 14px;
        text-align: center;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .navbar {
        width: 70%;
        left: -100%;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content h2 {
        font-size: 1.1em;
    }

    .hero-logo {
        max-width: 150px;
    }

    h1 { font-size: 2em; }
    h2 { font-size: 1.7em; }
    h3 { font-size: 1.3em; }

    .product-card img {
        height: 180px;
    }

    .about-item img {
        height: 120px;
    }

    .product-image img {
        height: 200px;
    }

    .chenille-product .product-image img {
        height: 200px !important;
        object-fit: contain !important;
    }

    .fabric-swatch {
        width: 50px;
        height: 50px;
    }

    .nav-links a {
        padding: 12px 15px;
        font-size: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 10px 12px;
    }

    /* 超小屏幕触摸优化 */
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /* 表格布局优化 */
    .product-specs {
        font-size: 13px;
    }

    .color-tooltip {
        font-size: 10px;
        bottom: -25px;
    }
}

/* 平板设备优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 15px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 3.5em;
    }

    .hero-content h2 {
        font-size: 1.8em;
    }

  }

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover,
    .about-item:hover {
        transform: none;
    }

    .nav-links a:hover::after {
        width: 0;
    }

    .fabric-swatch:hover .color-tooltip {
        opacity: 0;
    }

    /* 触摸反馈 */
    .product-card:active,
    .about-item:active,
    .nav-links a:active {
        background-color: var(--secondary-color);
        transform: scale(0.98);
    }

    /* 更大的触摸目标 */
    .carousel-arrow {
        min-width: 44px;
        min-height: 44px;
    }

    .indicator {
        min-width: 12px;
        min-height: 12px;
    }

    .fabric-swatch {
        min-width: 55px;
        min-height: 55px;
    }

    /* 移动端footer优化 */
    .footer {
        padding: 25px 15px;
        font-size: 13px;
    }

    .footer p {
        margin: 5px 0;
        line-height: 1.4;
    }

    .icp-number {
        font-size: 12px;
        margin-top: 8px;
    }

    /* 移动端产品网格优化 */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .product-item {
        margin-bottom: 15px;
    }

    /* 移动端容器优化 */
    .container {
        padding: 0 15px;
    }

    /* 移动端标题优化 */
    .category-overview {
        text-align: center;
        padding: 20px 0;
    }

    .category-overview h1 {
        font-size: 2.2em;
        margin-bottom: 10px;
    }

    .category-overview h2 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .category-overview p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 移动端产品信息优化 */
    .product-info {
        padding: 20px 15px;
    }

    .product-info h3 {
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .product-info p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .product-specs span {
        font-size: 12px;
        line-height: 1.8;
    }

    /* 移动端颜色选择器优化 */
    .color-options {
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .fabric-swatch {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }

    /* 移动端面包屑导航优化 */
    .breadcrumb {
        font-size: 13px;
        margin-bottom: 15px;
        padding: 10px 15px;
        background: rgba(0,0,0,0.02);
        border-radius: 5px;
    }

    .back-button {
        margin-bottom: 20px;
        text-align: center;
    }

    .back-btn {
        display: inline-block;
        padding: 8px 16px;
        font-size: 14px;
        background: var(--accent-color);
        color: var(--primary-color);
        text-decoration: none;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .back-btn:hover {
        background: var(--dark-color);
        transform: translateY(-1px);
    }

    /* 移动端联系信息优化 */
    .contact-info {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .contact-info h3 {
        font-size: 1.6em;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-info p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
        text-align: left;
    }

    .contact-info strong {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-form h3 {
        font-size: 1.6em;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        margin-bottom: 15px;
        font-size: 16px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }

    .contact-form button {
        padding: 15px 25px;
        font-size: 16px;
        background: var(--accent-color);
        color: var(--primary-color);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .contact-form button:hover {
        background: var(--dark-color);
        transform: translateY(-2px);
    }

    /* 移动端新闻板块优化 */
    .news-section {
        padding: 60px 0;
    }

    .section-intro {
        font-size: 1.1em;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .news-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        width: 200px;
        max-width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .news-item {
        margin-bottom: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 20px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 12px;
    }

    .news-content h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .news-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .read-more {
        font-size: 13px;
    }

    .news-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    /* 新闻弹窗移动端优化 */
    .news-modal.active {
        padding: 0;
    }

    .modal-content {
        max-height: 95vh;
        margin: 10px;
        border-radius: 15px;
    }

    .modal-header {
        padding: 20px 25px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .modal-header h2 {
        font-size: 1.4em;
        text-align: center;
    }

    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5em;
    }

    .modal-body {
        padding: 20px 25px 30px;
    }

    .modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
        font-size: 13px;
    }

    #modalContent {
        font-size: 15px;
        line-height: 1.6;
    }

    #modalContent h3 {
        font-size: 1.2em;
        margin: 20px 0 12px;
    }

    #modalContent ul,
    #modalContent ol {
        padding-left: 20px;
        margin: 12px 0;
    }

    #modalContent li {
        margin-bottom: 6px;
        line-height: 1.4;
    }
}