@charset "utf-8";
     /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: '微软雅黑', sans-serif;
        }
		/* 全局链接样式 */
/* 全局链接样式 - 深红色系 */
a {
    color: #A71F1B; /* 主色深红作为默认链接颜色 */
    text-decoration: none; /* 去掉下划线 */
    transition: all 0.3s ease; /* 平滑过渡效果 */
    font-weight: 500; /* 中等字体粗细 */
}

a:hover {
    color: #A71F1B; /* 更亮的红色作为悬停色 */
    text-decoration: underline; /* 悬停时显示下划线 */
    text-decoration-thickness: 2px; /* 下划线粗细 */
    text-underline-offset: 3px; /* 下划线偏移 */
}

/* 标题样式 - 深红色系 */
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    color: #A71F1B; /* 主色深红作为标题颜色 */
    margin-bottom: 1.5rem;
    font-family: '微软雅黑', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1); /* 微妙的文字阴影 */
}

/* 标题渐变效果（可选） */
h1 {
    background: linear-gradient(90deg, #A71F1B, #A71F1B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 0 15px;
}
h2 {
    font-size: 2rem; /* 基准 */
    margin-bottom: 1.75rem;
}

h3 {
    font-size: 1.75rem; /* 逐渐减小 */
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1rem; /* 最小 */
    margin-bottom: 0.75rem;
}

.ColorBottom {
    border-bottom: 2px solid #A71F1B;
    padding-bottom: 11px;
}

    /* 全局容器 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

        /* 导航栏 */
        .navbar {
            background-color: #f8f9fa;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .logo {
            width: 120px;
        }

        /* 桌面端导航链接 */
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #A71F1B;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: #A71F1B;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

/* 下拉菜单容器 */
.dropdown {
    position: relative;
    display: inline-block;
}

/* 下拉菜单内容 */
.dropdown-content {
    display: none; /* 默认隐藏 */
    position: absolute;
    top: 100%; /* 位于触发按钮的下方 */
    left: 0;
    background-color: #ffffff; /* 纯白背景 */
    min-width: 200px; /* 最小宽度 */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1); /* 柔和的阴影 */
    border-radius: 8px; /* 圆角 */
    z-index: 1000; /* 确保在最上层 */
    padding: 8px 0; /* 内边距 */
    border: 1px solid #eeeeee; /* 添加边框 */
    opacity: 0; /* 初始透明度为0 */
    transform: translateY(10px); /* 初始向下偏移 */
    transition: opacity 0.3s ease, transform 0.3s ease; /* 平滑过渡 */
}

/* 鼠标悬停时显示下拉菜单 */
.dropdown:hover .dropdown-content {
    display: block; /* 显示菜单 */
    opacity: 1; /* 完全不透明 */
    transform: translateY(0); /* 取消偏移 */
}

/* 下拉菜单链接 */
.dropdown-content a {
    color: #333333; /* 深灰色字体 */
    padding: 10px 16px; /* 内边距 */
    text-decoration: none; /* 去掉下划线 */
    display: block; /* 块级显示 */
    font-size: 0.9rem; /* 字体大小 */
    font-weight: 500; /* 中等字体粗细 */
    transition: all 0.3s ease; /* 平滑过渡 */
}

/* 下拉菜单链接的悬停效果 */
.dropdown-content a:hover {
    background-color: #f8f9fa; /* 浅灰色背景 */
    color: #A71F1B; /* 蓝色字体 */
    border-radius: 4px; /* 圆角 */
}

/* 下拉菜单分隔线 */
.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #eeeeee; /* 添加分隔线 */
}



/* 每列样式 */
.dropdown-column {
    flex: 1;
    min-width: 150px;
    padding: 0 15px;
    margin-bottom: 15px;
}
/* 新增折叠相关样式 */
.dropdown-column h4 {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    user-select: none;
}

.dropdown-column h4::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.2s;
}

.dropdown-column.active h4::after {
    content: "-";
}

.dropdown-column .column-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.dropdown-column.active .column-content {
    max-height: 1000px; /* 足够大的值以容纳内容 */
}
/* 下拉菜单列标题 - 移动端风格 */
.dropdown-column h4 {
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 1rem 2rem 1rem 1rem;
    color: #2c3e50;
    font-size: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

/* 悬停效果保持与移动菜单一致 */
.dropdown-column h4:hover {
    background: #e9ecef;
}

/* 折叠指示箭头 - 与移动端风格统一 */
.dropdown-column h4::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

/* 激活状态样式 */
.dropdown-column h4.active {
    background: #e9ecef;
    color: #A71F1B; /* 保持与主色调一致 */
}

.dropdown-column h4.active::after {
    content: "-";
    color: #A71F1B;
}

/* 内容区域动画 - 保持流畅过渡 */
.dropdown-column .column-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.dropdown-column.active .column-content {
    max-height: 1000px;
    border-bottom: 1px solid #e9ecef; /* 与标题边框保持一致 */
}

/* 移动端适配调整 */
@media (max-width: 768px) {
    .dropdown-column h4 {
        padding: 0.8rem 2rem 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-column h4::after {
        right: 0.8rem;
        font-size: 1rem;
    }
}

.dropdown-column .column-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-column.active .column-content {
    max-height: 1000px; /* 设置一个足够大的值 */
}

.dropdown-column a {
    display: block;
    padding: 5px 0;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-column a:hover {
    color: #A71F1B; /* 微信绿 */
}

/* 移动端样式 */
@media (max-width: 768px) {
    .dropdown-content {
        min-width: 160px; /* 减小宽度 */
        font-size: 0.85rem; /* 减小字体大小 */
    }

    .dropdown-content a {
        padding: 8px 12px; /* 减小内边距 */
    }
    
    .dropdown-column {
        min-width: 100%; /* 移动端每列占满宽度 */
    }
}


        /* 移动端菜单按钮 */
        .menu-toggle {
            display: none;
            cursor: pointer;
            padding: 1rem;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: #2c3e50;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* 移动端菜单 */
        .mobile-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #f8f9fa;
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .mobile-menu a {
            width: 100%;
            text-align: center;
            padding: 1rem 0;
            color: #2c3e50;
            text-decoration: none;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .mobile-menu a:hover {
            background: #e9ecef;
        }

        /* 移动端样式 */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .mobile-menu.active {
                display: flex;
            }

            /* 菜单按钮动画 */
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }
/* Hero 部分样式 */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('/mingfurniture/photos/ad/3.jpg'); /* 背景图片 */
    background-size: cover;
    padding: 1rem 5%;
    text-align: center;
    color: #333;
}

        .hero  a {
    color: #666666; /* 默认链接颜色 */
    text-decoration: none; /* 去掉下划线 */
    transition: all 0.3s ease; /* 平滑过渡效果 */
    font-weight: 500; /* 中等字体粗细 */
}

        .hero a:hover {
    color: #A71F1B; /* 悬停时颜色 */
    text-decoration: underline; /* 悬停时显示下划线 */
}

        .hero h1 {
            color: #A71F1B;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }


        .hero p {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

/* 响应式设计 */
@media (max-width: 768px) {
    .hero {
        padding: 1rem 5%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

 /* 图片自适应样式 */
.responsive-img {
    max-width: 100%; /* 图片最大宽度为父容器的宽度 */
    height: auto; /* 高度自动调整，保持图片比例 */
    display: block; /* 防止图片下方出现空白间隙 */
    margin: 0 auto; /* 图片居中显示 */
    border-radius: 10px; /* 可选：为图片添加圆角 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 可选：为图片添加阴影 */
}

/* 核心价值部分样式 */
.values {
    padding: 1rem 1%;
    background-color: #f8f9fa; /* 浅灰色背景 */
    text-align: center;
}

.value-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 自适应列数 */
    gap: 2rem; /* 格子之间的间距 */
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);

}

.value-item h3 {
    color: #B5171C; /* 标题颜色 */
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .values {
        padding: 2rem 5%;
    }

    .value-card {
        grid-template-columns: 1fr; /* 移动端单列显示 */
    }

    .value-item {
        padding: 1.5rem;
    }
}

    /* 产品系列部分样式 */
    .products {
        padding: 4rem 5%;
        background: #fafcff; /* 淡蓝色背景 */
    }

    .products h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .product-card {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card h3 {
        color: #A71F1B;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .product-card p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .product-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-links a {
        color: #2c3e50;
        text-decoration: none;
        font-size: 0.95rem;
        padding: 0.5rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .product-links a:hover {
        background: #f0f0f0;
        color: #A71F1B;
    }

    .product-links a strong {
        color: #A71F1B;
        font-weight: 600;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .products {
            padding: 2rem 5%;
        }

        .product-grid {
            grid-template-columns: 1fr;
        }

        .product-card {
            padding: 1rem;
        }
    }

    /* 全球信赖部分 */
    .global {
        padding: 4rem 5%;
        background: #fafcff; /* 淡蓝色背景 */
        text-align: center;
    }

    .global h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .global p {
        color: #7f8c8d;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    /* 公司联系信息部分 */
 .contact-section {
    padding: 40px 0;
    background: #f9f5f0;
    font-family: 'Noto Sans SC', sans-serif;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-card, .business-hours {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.contact-card h3, .business-hours h3 {
    color: #8b4513;
    border-bottom: 1px solid #eae0d5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
address {
    font-style: normal;
    line-height: 1.8;
}
.fas {
    margin-right: 8px;
    color: #8b4513;
    width: 20px;
    text-align: center;
}
.contact-img {
    height: 20px;
    vertical-align: middle;
}


    /* 响应式调整 */
    @media (max-width: 768px) {
        .global, .contact-info {
            padding: 3rem 5%;
        }

        .contact-info {
            text-align: left;
        }
    }


        /* 响应式调整 */
        @media (max-width: 768px) {
            .global {
                padding: 3rem 5%;
            }
            

        }
	    .product-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .product-links a {
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .product-links a:hover {
            background: #f0f0f0;
            color: #A71F1B;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .product-links {
                gap: 0.3rem;
            }

            .product-links a {
                font-size: 0.9rem;
                padding: 0.3rem;
            }
        }
		
		
  /* 轮播图容器 */
        .carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            height: 500px; /* 根据图片高度设置 */
        }

        /* 图片列表 */
        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        /* 单张图片 */
        .carousel-item {
            min-width: 100%;
            box-sizing: border-box;
        }

        .carousel-item img {
            width: 100%;
            height: 500px; /* 根据图片高度设置 */
            object-fit: cover;
        }

        /* 导航按钮 */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
        }

        .carousel-control.prev {
            left: 10px;
        }

        .carousel-control.next {
            right: 10px;
        }

        /* 指示器 */
        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicators span {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
        }

        .carousel-indicators span.active {
            background-color: white;
        }
		
		

/* 公司介绍容器 */
.company-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 自适应列数 */
    gap: 20px; /* 格子之间的间距 */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 每个介绍项 */
.intro-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* 标题样式 */
.intro-item h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #A71F1B;
    padding-bottom: 10px;
}

/* 段落样式 */
.intro-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* 列表样式 */
.intro-item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.intro-item ul li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.intro-item ul li::before {
    content: "?";
    color: #A71F1B;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

body {
    font-family: "Microsoft YaHei", "SimSun", sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5em;
    margin: 40px 0 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #d4a76a;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.ShopCase {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1200px;
    overflow: hidden;
    border: 1px solid #e0d6c2;
}

.contd {
    padding: 30px 50px;
}

h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0d6c2;
}

h3 {
    color: #a0522d;
    font-size: 1.4em;
    margin: 25px 0 15px;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a76a, transparent);
    margin: 30px 0;
}

p, li {
    font-size: 1.1em;
    color: #555;
}

strong {
    color: #2c3e50;
    font-weight: bold;
}

ul, ol {
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
}

.about-us-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}

.about-us-images img {
    max-width: 48%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.about-us-images img:hover {
    transform: scale(1.02);
}
#nav {
    padding: 8px 5%;
    font-size: 0.9rem;
    color: #FFFFFF; /* 白色文字 */
    background-color: #A71F1B; /* 主色深红背景 */
    border-bottom: 1px solid #8A1A16; /* 深红色边框 */
    margin-bottom: 20px;
}

#nav a {
    color: #F8F1E5; /* 米白色链接 */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 3px;
}

#nav a:hover {
    color: #FFFFFF; /* 纯白悬停 */
    background-color: rgba(255,255,255,0.15); /* 浅色悬停背景 */
    text-decoration: none;
}

#nav i.icon-chevron-right {
    color: #E8C8C6; /* 浅红色分隔符 */
    margin: 0 8px;
    font-size: 0.8em;
}

/* 当前页面名称样式 */
#nav > :last-child {
    color: #FFFFFF; /* 纯白当前页 */
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}



@media (max-width: 768px) {
    .company-intro {
        grid-template-columns: 1fr; /* 移动端单列显示 */
    }

    .intro-item {
        padding: 15px;
    }

    .intro-item h2 {
        font-size: 1.3rem;
    }

    .intro-item p {
        font-size: 0.95rem;
    }
}
   .contd2 {
        padding: 20px;
    }
    
    .about-us-images img {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    h1 {
        font-size: 2em;
        margin: 30px 0 20px;
        border-bottom: none; /* 移除移动端h1下方的横线 */
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    hr {
        margin: 20px 0; /* 调整移动端hr元素的间距 */
        background: none; /* 完全移除hr元素的线条 */
        height: 0; /* 确保hr元素不占空间 */
    }
}
    #nav {
        padding: 12px 5%;
        font-size: 0.85rem;
    }
    
    #nav i.icon-chevron-right {
        margin: 0 5px;
    }
}

/* ===== 页脚全局样式 ===== */
footer {
    background: #2c3e50;
    color: #FFFFFF !important;
    padding: 3rem 5%;
    text-align: center;
}

/* 页脚内所有文字和链接 */
footer * {
    color: inherit !important;
}

/* 链接特殊样式 */
footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #333 !important;
}
.footer-divider {
    margin: 0 auto 1.5rem; /* 上边距为0，下边距1.5rem */
    max-width: 800px;
}

.footer-hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 auto;
    color: #999;
}
/* 版权段落特殊处理 */
footer .footer-content p,
footer p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: inherit !important;
}

/* 页脚链接样式 */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.footer-links a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -6px;
    color: rgba(255,255,255,0.3);
}

.footer-links a:hover {
    color: #F8F1E5;
}
/* 深色模式下的分隔线颜色 */
@media (prefers-color-scheme: dark) {
    .footer-links a:not(:last-child)::after {
        color: rgba(255,255,255,0.3);
    }
}

.footer-links a:hover {
    color: #A71F1B !important; /* 微信绿悬停色 */
}


/* ===== 移动版底部导航 (微信风格) ===== */
.footer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f5f5f5; /* 浅灰色背景 */
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
    padding: 8px 0;
    display: none; /* 默认隐藏 */
}

/* 深色模式下的移动导航 */
@media (prefers-color-scheme: dark) {
    .footer-container {
        background: #333;
    }
}

/* 只在移动端显示底部导航 */
@media (max-width: 768px) {
    /* 调整常规页脚间距 */
    footer {
        padding: 2rem 5% 6rem; /* 底部留出导航栏空间 */
    }
    
    /* 显示移动导航 */
    .footer-container {
        display: block;
    }
    
    /* 导航栏容器 */
    .footer-navbar {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    /* 导航项样式 */
    .footer-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #666; /* 灰色文字 */
        text-decoration: none;
        font-size: 12px;
        padding: 5px 0;
        flex: 1;
        transition: all 0.2s;
    }
    
    /* 深色模式下的导航项文字 */
    @media (prefers-color-scheme: dark) {
        .footer-nav-item {
            color: #999;
        }
    }
    
    /* 选中状态 - 微信绿 */
    .footer-nav-item.active,
    .footer-nav-item:hover {
        color: #07C160 !important;
    }
    
    /* 图标样式 */
    .footer-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 3px;
        background-size: contain;
    }
    
    /* 图标颜色控制 */
    .footer-nav-item .footer-icon {
        filter: brightness(0.7);
    }
    .footer-nav-item.active .footer-icon,
    .footer-nav-item:hover .footer-icon {
        filter: brightness(1.1);
    }
    
    /* 下拉菜单 */
    .footer-dropdown {
        display: none;
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        padding: 8px 0;
        z-index: 1001;
    }
    
    /* 深色模式下的下拉菜单 */
    @media (prefers-color-scheme: dark) {
        .footer-dropdown {
            background: #f5f5f5;
        }
    }
    
    .footer-dropdown a {
        display: block;
        padding: 8px 15px;
        color: #333;
        font-size: 13px;
        text-decoration: none;
    }
    
    /* 深色模式下的下拉菜单链接 */
    @media (prefers-color-scheme: dark) {
        .footer-dropdown a {
            color: #333;
        }
    }
    
    .footer-dropdown a:hover {
        background: #f5f5f5;
        color: #FFF;
    }
    
    /* 深色模式下的下拉菜单悬停 */
    @media (prefers-color-scheme: dark) {
        .footer-dropdown a:hover {
            background: #A71F1B;
        }
    }
}
/* ===== 图标定义 ===== */
/* 首页图标 */
.icon-homepage {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}
.footer-nav-item.active .icon-homepage,
.footer-nav-item:hover .icon-homepage {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2307C160'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

/* 列表图标 */
.icon-list {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z'/%3E%3C/svg%3E");
}
.footer-nav-item.active .icon-list,
.footer-nav-item:hover .icon-list {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2307C160'%3E%3Cpath d='M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z'/%3E%3C/svg%3E");
}

/* 联系图标 */
.icon-contact {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.footer-nav-item.active .icon-contact,
.footer-nav-item:hover .icon-contact {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2307C160'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

/* 关于图标 */
.icon-aboutus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}
.footer-nav-item.active .icon-aboutus,
.footer-nav-item:hover .icon-aboutus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2307C160'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

/* 全球图标 */
.icon-globe {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}
.icon-chevron-right {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.25em;
  vertical-align: middle;
}
.footer-nav-item.active .icon-globe,
.footer-nav-item:hover .icon-globe {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2307C160'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}
  /* 自定义图标样式 */
  .custom-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
  }
  
  /* 地图标记图标 */
  .custom-icon.map-marker {
    position: relative;
    background-color: #e74c3c;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
  }
  
  .custom-icon.map-marker:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
  }
/* Custom Furniture Page Styles */


.hero .lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #555;
}

/* Service Process Section */
.service-process {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}


.service-process h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #A71F1B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    color: #A71F1B;
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.step ul {
    list-style: none;
}

.step li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    text-align: left;
}

.step li::before {
    content: "•";
    color: #A71F1B;
    position: absolute;
    left: 0;
}

.step li strong {
    color: #333;
}

/* Custom Options Section */
.custom-options {
    margin: 3rem 0;
}

.custom-options h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.option-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card h3 {
    color: #A71F1B;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.option-card ul {
    list-style: none;
}

.option-card li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    text-align: left;
}

.option-card li::before {
    content: "•";
    color: #A71F1B;
    position: absolute;
    left: 0;
}

.option-card li strong {
    color: #333;
}

/* Technical Standards Section */
.technical-standards {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}

.technical-standards h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 800px;
}

.spec-table th, .spec-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.spec-table th {
    background-color: #f9f9f9;
    color: #A71F1B;
    font-weight: 600;
}

.spec-table tr:hover {
    background-color: #f5f5f5;
}

.spec-table td:first-child {
    font-weight: 500;
}

.spec-table td:nth-child(2) {
    color: #A71F1B;
    font-weight: 600;
}

/* Case Showcase Section */
.case-showcase {
    margin: 3rem 0;
}

.case-showcase h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-gallery figure {
    margin: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.case-gallery figure:hover {
    transform: translateY(-5px);
}

.case-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-gallery figcaption {
    padding: 1.5rem;
}

.case-gallery figcaption h3 {
    color: #A71F1B;
    margin-bottom: 1rem;
}

.case-gallery figcaption p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.case-gallery figcaption ul {
    list-style: none;
    margin-top: 1rem;
}

.case-gallery figcaption li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.case-gallery figcaption li::before {
    content: "•";
    color: #A71F1B;
    position: absolute;
    left: 0;
}

/* Icons */
.icon-craft, .icon-wood, .icon-ruler, .icon-case {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    margin-right: 0.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-craft {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A71F1B'%3E%3Cpath d='M12 2L4 7v10l8 5 8-5V7L12 2zm-1 14.5v-5l5-2.5V14l-5 2.5z'/%3E%3C/svg%3E");
}

.icon-wood {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A71F1B'%3E%3Cpath d='M12 3L2 12h3v8h14v-8h3L12 3zm0 4.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/%3E%3C/svg%3E");
}

.icon-ruler {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A71F1B'%3E%3Cpath d='M3 5v14h18V5H3zm16 2v2H5V7h14zm0 4v2H5v-2h14zm0 4v2H5v-2h14z'/%3E%3C/svg%3E");
}

.icon-case {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A71F1B'%3E%3Cpath d='M14 6V4h-4v2h4zM4 8v11h16V8H4zm16-2c1.11 0 2 .89 2 2v11c0 1.11-.89 2-2 2H4c-1.11 0-2-.89-2-2l.01-11c0-1.11.88-2 1.99-2h4V4c0-1.11.89-2 2-2h4c1.11 0 2 .89 2 2v2h4z'/%3E%3C/svg%3E");
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .process-steps, .option-grid, .case-gallery {
        grid-template-columns: 1fr;
    }
    
    .spec-table {
        font-size: 0.9rem;
    }
    
    .step, .option-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .spec-table th, .spec-table td {
        padding: 0.8rem;
    }
}
       /* Accordion styles */
        .accordion {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .accordion-item {
            border-bottom: 1px solid #ddd;
        }
        
        .accordion-item:last-child {
            border-bottom: none;
        }
        
        .accordion-title {
            background-color: #f5f5f5;
            color: #333;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            position: relative;
            transition: background-color 0.3s ease;
        }
        
        .accordion-title:hover {
            background-color: #e9e9e9;
        }
        
        .accordion-title::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .accordion-item.active .accordion-title::after {
            content: '-';
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: white;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 1000px; /* Adjust based on your content */
            transition: max-height 0.5s ease-in;
        }
        
        .accordion-content-inner {
            padding: 20px;
        }
        
        /* Country list styles */
        .country-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 10px;
        }
        
        .country-list a {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            color: #333;
            border-radius: 3px;
            transition: background-color 0.2s;
            gap: 8px;
        }
        
        .country-list a:hover {
                color: #A71F1B; /* 更亮的红色作为悬停色 */
    text-decoration: underline; /* 悬停时显示下划线 */
    text-decoration-thickness: 2px; /* 下划线粗细 */
    text-underline-offset: 3px; /* 下划线偏移 */
        }
        
        .flag-icon {
            width: 20px;
            height: 15px;
            border: 1px solid #eee;
        }

        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .country-list {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .accordion-title {
                padding: 12px 15px;
            }
            
            .accordion-content-inner {
                padding: 15px;
            }
        }
		
/* 增强产品目录样式 */
#product-catalog .product-card {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#product-catalog .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

#product-catalog .product-card h3 {
    color: #A71F1B;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.8rem;
}

#product-catalog .product-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

#product-catalog .product-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.2rem;
}

#product-catalog .product-links a:hover {
    color: #A71F1B;
    background-color: #f9f9f9;
    padding-left: 1.5rem;
}

#product-catalog .ColorBottom {
    color: #A71F1B;
    font-weight: 600;
    position: relative;
}

#product-catalog .ColorBottom:before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #A71F1B;
    border-radius: 50%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    #product-catalog .product-grid {
        grid-template-columns: 1fr;
    }
    
    #product-catalog .product-card {
        padding: 1.2rem;
    }
}

        
  .hero-custom {
        display: inline-block;
        background-color: #A71F1B; /* 指定的深红色 */
        color: #fff !important;
        padding: 12px 30px;
        border-radius: #333;
        text-decoration: none;
        font-weight: 600;
        transition: #666;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        margin-left: 15px; /* 如果与其他按钮并排，添加间距 */
    }
    
    .hero-custom:hover {
        background-color: #8c1a16; /* 悬停时稍深的红色 */
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    /* 如果按钮需要与主CTA按钮并排 */
    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
        /* Product Detail Section */
        .product-detail {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .product-gallery {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: #666;
            box-shadow: #333;
            overflow: hidden;
        }
        
        .product-info {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: #333;
            box-shadow: #666;
            padding: 30px;
        }
        
        .product-info_title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid var(#666);
            padding-bottom: 10px;
        }
        
        .product-specs {
            margin-bottom: 25px;
        }
        
        .spec-item {
            margin-bottom: 12px;
            display: flex;
        }
        
        .spec-label {
            font-weight: 600;
            min-width: 120px;
            color: #333;
        }
        
        .spec-value {
            flex: 1;
        }
        
        /* Product Overview */
        .product-overview {
            background: white;
            border-radius: #333
            box-shadow: #333;
            padding: 40px;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #333;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;

            width: 80px;
            height: 3px;
            background: #333;
            margin: 15px auto 0;
        }
        
        .product-description {
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .product-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .gallery-image {
            width: 100%;
            border-radius: #666;
            box-shadow: #333;
            transition: all 0.3s ease;;
        }
        
        .gallery-image:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
 
        
        hr.divider {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, #ddd, transparent);
            margin: 30px 0;
        }
        
        @media (max-width: 768px) {
            .product-hero_title {
                font-size: 2rem;
            }
            
            .product-detail {
                flex-direction: column;
            }
            
            .product-gallery, .product-info {
                min-width: 100%;
            }
        }