/* 基础样式 */
:root {
    --primary-color: #1a1f36;
    --secondary-color: #c8a97e;
    --text-color: #2d3436;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1f36;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--primary-color);
}

/* Hero 区域样式 */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    color: var(--white);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* 产品展示区域样式 */
.products {
    padding: 4rem 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    background: var(--light-bg);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.products .container {
    width: 100vw;
    max-width: none;
    padding: 0 2rem;
    margin: 0;
}

.section-header {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 0;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: calc(100vh - 8rem);
    margin: 0;
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 73vh;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.category-image {
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(100px);
    transition: var(--transition);
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.category-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.category-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.category-link:hover {
    transform: translateX(10px);
}

/* 添加悬停效果 */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-content {
    z-index: 2;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 73vh;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
} 

/* 关于我们区域样式 */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature span {
    font-weight: 500;
    color: var(--primary-color);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26,31,54,0.2), transparent);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 页脚样式 */
.footer {
    background-color: #1a1a1a;
    padding: 4rem 0 3rem;
    color: #fff;
    width: 100%;
    position: relative;
}

/* 页脚容器样式 */
.footer .container {
    max-width: 1400px;
    width: 85%;
    margin: 0;
    padding: 0 2rem;
    padding-left: 25%;  /* 增加左内边距，使内容向右移动更多 */
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer .container {
        width: 90%;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 500;
}

.footer-section p {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
}

.contact-info {
    margin-top: 1.5rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }
}

/* 扩展响应式设计 */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 0 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 添加滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 添加平滑滚动 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* 添加选中文本样式 */
::selection {
    background: var(--secondary-color);
    color: var(--white);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2070') center/cover no-repeat;
}

/* 轮播图样式 */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* 艺术分隔区域样式 */
.artistic-divider {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(26,31,54,0.02), rgba(26,31,54,0.05), rgba(26,31,54,0.02));
    position: relative;
    overflow: hidden;
}

.divider-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-reveal {
    text-align: center;
}

.reveal-line {
    display: block;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1.5s ease forwards;
}

.reveal-line:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 团队展示区域样式 */
.team-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin: 4rem 0;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-text {
    padding-top: 3rem;
}

.team-text h3 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    list-style: none;
    margin-right: 2rem;
}

.stat-number {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-plus {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 1px;
    white-space: nowrap;
    display: block;
    width: 100%;
}

/* 图片堆叠效果 */
.image-stack {
    position: relative;
    height: 600px;
    width: 90%;
    margin-left: auto;
}

/* 添加错位背景 */
.image-stack::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -40px;
    width: 100%;
    height: 100%;
    background-color: #d8d8d8;
    z-index: -1;
}

.image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26,31,54,0.1),
        transparent
    );
    z-index: 2;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .background-text {
        font-size: 12rem;
    }
}

@media (max-width: 768px) {
    .background-text {
        font-size: 10rem;
        left: -10%;
    }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-stack {
        height: 500px;
    }
}

.parallax-showcase {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=2000') center/cover fixed;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.design-philosophy {
    text-align: left;
    max-width: 900px;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(250,250,250,0.6), rgba(255,255,255,0.65));
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border-radius: 4px;
    border: 1px solid rgba(200,169,126,0.15);
    position: relative;
}

.elegant-label {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 300;
    position: relative;
    padding-left: 60px;
}

.elegant-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--secondary-color);
}

.design-philosophy h2 {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    letter-spacing: 1px;
}

.design-philosophy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(26,31,54,0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.design-philosophy p:first-of-type {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1.5rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .design-philosophy {
        padding: 3rem 2rem;
    }
    
    .design-philosophy h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .design-philosophy h2 {
        font-size: 2.2rem;
    }
    
    .design-philosophy p:first-of-type {
        font-size: 1.2rem;
    }
}

.commitment-section {
    padding: 8rem 0;
    background: linear-gradient(to right, #fff, #f9f9f9);
    position: relative;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.elegant-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.elegant-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.elegant-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 4rem;
}

.commitment-features {
    display: grid;
    gap: 2.5rem;
}

.elegant-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.feature-details h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-details p {
    color: #666;
    line-height: 1.6;
}

.commitment-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commitment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.2), transparent);
}

@media (max-width: 992px) {
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .commitment-image {
        min-height: 400px;
    }
    
    .elegant-title {
        font-size: 2.8rem;
    }
}

/* 添加页脚链接样式 */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* 白色导航栏样式 */
.white-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.white-navbar .nav-links a {
    color: var(--primary-color);
}

.white-navbar .nav-links a:hover,
.white-navbar .nav-links a.active {
    color: var(--secondary-color);
}

/* 小尺寸轮播图样式 */
.small-hero {
    height: 60vh;
    min-height: 300px;
}

.small-hero .hero-content h1 {
    font-size: 2.8rem;
}

.small-hero .hero-content p {
    font-size: 1.1rem;
}

/* 产品集合样式 */
.collection-header {
    margin-bottom: 2rem;
}

.collection-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.collection-title span {
    font-weight: 300;
    color: #666;
}

.collection-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    position: relative;
    padding-left: 3rem;
    margin-top: 1rem;
}

.collection-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background-color: var(--primary-color);
}

.collection-description {
    max-width: 900px;
    margin-bottom: 4rem;
}

.collection-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.collection-item {
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
}

.collection-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

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

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

.collection-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.collection-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-title {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-title {
        font-size: 2.5rem;
    }
}

/* 即将到来提示样式 - 现代动效设计 */
.coming-soon-wrapper {
    grid-column: span 3;
    display: flex;
    align-items: center;
}

.coming-soon {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon-content {
    text-align: center;
    position: relative;
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.coming-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--secondary-color);
    position: relative;
    opacity: 0.5;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.coming-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    font-weight: 200;
    letter-spacing: 6px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    background: linear-gradient(to right, var(--primary-color), rgba(26,31,54,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
    line-height: 1.2;
}

.coming-soon:hover .coming-title {
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.5;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .coming-soon-wrapper {
        grid-column: span 2;
    }
    
    .coming-title {
        font-size: 2.8rem;
    }
    
    .coming-label {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-wrapper {
        grid-column: span 1;
    }
    
    .coming-title {
        font-size: 2.2rem;
    }
    
    .coming-label {
        font-size: 1rem;
        letter-spacing: 4px;
    }
}

/* 品质展示区域样式 */
.quality-showcase {
    padding: 6rem 0;
    background: linear-gradient(to right, #fff, #f9f9f9);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-text {
    padding-right: 2rem;
}

.quality-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.quality-features {
    display: grid;
    gap: 2rem;
}

.quality-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.quality-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

.quality-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(200,169,126,0.1), transparent);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .quality-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quality-text {
        padding-right: 0;
    }
    
    .quality-image {
        height: 400px;
    }
}

/* 特点展示区域样式 */
.features-section {
    padding: 6rem 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,169,126,0.1), rgba(200,169,126,0.05));
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

/* 工艺展示区域样式 */
.craftsmanship-section {
    padding: 8rem 0;
    background: #fff;
}

.craftsmanship-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.craftsmanship-text {
    padding-right: 2rem;
}

.craft-label {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.craft-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--secondary-color);
}

.craftsmanship-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 4rem;
}

.craft-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.craftsmanship-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
}

.craft-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.main-image {
    height: 500px;
}

.side-image {
    height: 300px;
    margin-top: 100px;
}

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

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

/* 响应式调整 */
@media (max-width: 1200px) {
    .craftsmanship-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .craftsmanship-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .craftsmanship-text {
        padding-right: 0;
    }
    
    .craft-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .craftsmanship-text h2 {
        font-size: 2.5rem;
    }
    
    .craft-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .craftsmanship-images {
        grid-template-columns: 1fr;
    }
    
    .side-image {
        margin-top: 0;
    }
}

/* 产品特点展示区域 */
.product-features {
    padding: 3rem 0 4rem 0;  /* 减少顶部间距，向上移动 */
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 0;  /* 移除顶部外边距 */
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.feature-block {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-number {
    font-size: 2.8rem;
    font-weight: 200;
    color: var(--secondary-color);
    opacity: 0.5;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.feature-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .features-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-block {
        padding: 1.5rem;
    }
}

/* Coming Soon 动画样式 */
.coming-soon-text {
    opacity: 0;
    transform: translateY(30px);
}

.coming-soon-text.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s ease, transform 1.2s ease; /* 增加动画时长 */
}

.coming-label {
    display: block;
    margin-bottom: 1rem;
}

.coming-title {
    display: block;
    transition-delay: 0.6s; /* 标签延迟显示 */
}

/* 调整容器宽度控制 */
.hero,
.products,
.product-features,
.footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

/* 调整容器宽度控制 */
.container {
    width: 100%;
    overflow: hidden;
}

/* 页脚样式 */
.footer .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-left: 12%;  /* 减小左边距，使页脚整体左移 */
}

/* 响应式调整 */
@media (max-width: 992px) {
    .footer .container {
        padding: 0 2rem;
        margin-left: 12%;
    }
}

@media (max-width: 768px) {
    .footer .container {
        width: 100%;
        padding: 0 2rem;
        margin-left: 12%;
    }
}

/* mat页面特定的logo样式 */
.logo {
    position: relative;
}

.logo-default,
.logo-scroll {
    position: absolute;
    height: 31px !important;
    width: auto !important;
    transition: opacity 0.3s ease;
}

.logo-default {
    opacity: 1;
}

.logo-scroll {
    opacity: 0;
}

/* 滚动状态下切换logo */
.navbar.scrolled .logo-default {
    opacity: 0;
}

.navbar.scrolled .logo-scroll {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .collection-header {
        margin-bottom: 40px;
    }
    
    .collection-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .collection-description {
        margin-bottom: 60px;
    }
    
    .collection-description p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .collections-grid {
        margin-top: 40px;
        position: relative;
        display: block;
    }
    
    /* 修复产品文字显示问题 */
    .collection-item {
        width: 100%;
        position: relative;
        margin-bottom: 120px;  /* 增加底部间距，为文字区域留出空间 */
        overflow: visible;  /* 允许内容溢出 */
    }
    
    .collection-image {
        height: 300px;  /* 固定高度 */
        width: 100%;
        overflow: hidden;
    }
    
    .collection-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .collection-info {
        position: absolute;  /* 改为绝对定位 */
        bottom: -80px;  /* 向下偏移，确保在图片下方 */
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        margin: 0 20px;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 8px;  /* 添加圆角美化 */
    }
    
    .collection-info h3 {
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .collection-link {
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 16px;
        display: inline-block;
    }
    
    .coming-soon-wrapper {
        margin-top: 40px;
        height: 280px;
    }
    
    /* 移动端产品特性区域间距调整 */
    .product-features {
        padding: 2rem 0 3rem 0;
        margin-top: 1rem;
    }
}