  .page-banner {
            position: relative;
            min-height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 120px 24px 80px;
            margin-top: 0;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.50);
            z-index: 1;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
        }
        .page-banner .banner-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.20);
        }
        .page-banner .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            justify-content: center;
            font-size: 1rem;
            font-weight: 500;
        }
        .page-banner .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.75);
            transition: color var(--transition);
        }
        .page-banner .breadcrumb-item a:hover {
            color: #fff;
        }
        .page-banner .breadcrumb-item.active {
            color: #fff;
        }
        .page-banner .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== ABOUT SECTION (same as home) ===== */
        .about-img-wrap {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }
        .about-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 340px;
        }

        .stat-box {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px 16px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all var(--transition);
            border: 1px solid rgba(33, 105, 211, 0.08);
        }
        .stat-box:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.95rem;
            color: var(--text-gray);
            font-weight: 500;
            margin-top: 4px;
        }

        /* ===== CULTURE CARDS ===== */
        .culture-card {
            background: #fff;
            border-radius: 20px;
            padding: 36px 24px 32px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all var(--transition);
            height: 100%;
            border: 1px solid rgba(33, 105, 211, 0.06);
        }
        .culture-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .culture-card .icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 18px;
            transition: all var(--transition);
        }
        .culture-card:hover .icon-wrap {
            background: var(--primary);
            color: #fff;
            transform: scale(1.05);
        }
        .culture-card h5 {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        .culture-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 0;
            line-height: 1.6;
        }


        .factory-main-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            height: 100%;
            min-height: 380px;
        }
        .factory-main-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .factory-thumbs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            height: 100%;
            align-content: stretch;
        }
        .factory-thumbs .thumb-item {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all var(--transition);
            position: relative;
        }
        .factory-thumbs .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 120px;
            transition: transform var(--transition);
        }
        .factory-thumbs .thumb-item:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-hover);
        }
        .factory-thumbs .thumb-item:hover img {
            transform: scale(1.04);
        }
        .factory-thumbs .thumb-item.active {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }


        .cert-swiper .swiper-slide {
            padding: 8px;
        }
        .cert-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            height: 100%;
            text-align: center;
            padding: 20px 6px 24px;
        }
        .cert-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .cert-card img {
            width: 100%;
            max-height: 220px;
            object-fit: contain;
            margin-bottom: 14px;
    
      
        }
        .cert-card h6 {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
        }
        .cert-card p {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 0;
        }
        .cert-swiper .swiper-pagination-bullet {
            background: var(--primary);
            opacity: 0.4;
        }
        .cert-swiper .swiper-pagination-bullet-active {
            opacity: 1;
        }
		
		 .category-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 14px;
            margin-bottom: 40px;
            padding: 0 4px;
        }
        .category-tabs .cat-tab {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            background: #3a4a6b;
       
            border: 2px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            letter-spacing: 0.3px;
        }
        .category-tabs .cat-tab:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(33, 105, 211, 0.35);
            border-color: var(--primary);
        }
        .category-tabs .cat-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            box-shadow: 0 8px 28px rgba(33, 105, 211, 0.40);
            transform: translateY(-2px);
        }


        .category-tabs .cat-tab:nth-child(1) {
            background: #2c3e50;
        }
        .category-tabs .cat-tab:nth-child(2) {
            background: #3d4f6a;
        }
        .category-tabs .cat-tab:nth-child(3) {
            background: #2a4058;
        }
        .category-tabs .cat-tab:nth-child(4) {
            background: #3a5068;
        }
        .category-tabs .cat-tab:nth-child(5) {
            background: #2e3f5a;
        }
        .category-tabs .cat-tab:nth-child(6) {
            background: #3c4f6a;
        }
        .category-tabs .cat-tab:nth-child(7) {
            background: #2a3d55;
        }
        .category-tabs .cat-tab:nth-child(8) {
            background: #3a4f6a;
        }
        .category-tabs .cat-tab:nth-child(9) {
            background: #2c4058;
        }
        .category-tabs .cat-tab:nth-child(10) {
            background: #3a506a;
        }

        .category-tabs .cat-tab:hover,
        .category-tabs .cat-tab.active {
            background: var(--primary) !important;
            border-color: var(--primary);
        }


        .product-grid-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            height: 100%;
            border: 1px solid rgba(33, 105, 211, 0.04);
        }
        .product-grid-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .product-grid-card .product-img {
            position: relative;
            overflow: hidden;
            background: #f8faff;
            padding-top: 70%;
        }
        .product-grid-card .product-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }
        .product-grid-card:hover .product-img img {
            transform: scale(1.06);
        }
        .product-grid-card .product-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .product-grid-card .card-body {
            padding: 20px 20px 24px;
        }
        .product-grid-card .card-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 4px;
            color: var(--text-dark);
        }
        .product-grid-card .card-title a {
            color: var(--text-dark);
            transition: color var(--transition);
        }
        .product-grid-card .card-title a:hover {
            color: var(--primary);
        }
        .product-grid-card .card-meta {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-bottom: 8px;
        }
        .product-grid-card .card-meta i {
            color: var(--primary);
            margin-right: 4px;
        }
        .product-grid-card .card-text {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-grid-card .btn-outline-sm {
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            transition: all var(--transition);
            display: inline-block;
        }
        .product-grid-card .btn-outline-sm:hover {
            background: var(--primary);
            color: #fff;
        }

      
        .phpcms-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eef2f7;
        }
        .phpcms-pagination a,
        .phpcms-pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 16px;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            background: #fff;
            color: var(--text-dark);
            border: 1px solid #e4e9f0;
            transition: all var(--transition);
            cursor: pointer;
        }
        .phpcms-pagination a:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }
        .phpcms-pagination .current {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(33, 105, 211, 0.30);
        }
        .phpcms-pagination .current:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
        }
        .phpcms-pagination .disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }
        .phpcms-pagination .prev,
        .phpcms-pagination .next {
            padding: 0 20px;
            font-weight: 600;
        }
        .phpcms-pagination .prev i,
        .phpcms-pagination .next i {
            font-size: 0.8rem;
        }
        .phpcms-pagination .page-info {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-left: 16px;
            font-weight: 400;
        }
        .phpcms-pagination .page-info strong {
            color: var(--text-dark);
            font-weight: 700;
        }
		
		 .product-gallery {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            background: #fff;
        }
        .product-gallery img {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
        }

        .product-info .product-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .product-info .product-title .highlight {
            color: var(--primary);
        }
        .product-info .product-desc {
            font-size: 1.05rem;
            color: var(--text-gray);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .spec-list {
            list-style: none;
            padding: 0;
            margin: 0 0 28px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 24px;
        }
        .spec-list li {
            display: flex;
            align-items: baseline;
            gap: 8px;
            padding: 6px 0;
            font-size: 0.95rem;
            color: var(--text-dark);
            border-bottom: 1px dashed #f0f4fa;
        }
        .spec-list li:last-child,
        .spec-list li:nth-last-child(2) {
            border-bottom: none;
        }
        .spec-list li .spec-label {
            font-weight: 600;
            color: var(--text-dark);
            min-width: 80px;
        }
        .spec-list li .spec-value {
            color: var(--text-gray);
        }

        .product-info .btn-inquiry {
            padding: 14px 44px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--primary);
            color: #fff;
            border: none;
            transition: all var(--transition);
            box-shadow: 0 4px 20px rgba(33, 105, 211, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .product-info .btn-inquiry:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(33, 105, 211, 0.45);
            color: #fff;
        }

   
        .detail-tabs-wrapper {
            background: #fff;
            border-radius: 24px;
            box-shadow: var(--shadow);
            padding: 40px 36px 36px;
            border: 1px solid rgba(33, 105, 211, 0.06);
        }
        .detail-tabs-wrapper .tab-nav {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 32px;
            border-bottom: 2px solid #f0f4fa;
            padding-bottom: 16px;
        }
        .detail-tabs-wrapper .tab-nav .tab-btn {
            padding: 10px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-gray);
            background: transparent;
            border: 2px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
        }
        .detail-tabs-wrapper .tab-nav .tab-btn:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .detail-tabs-wrapper .tab-nav .tab-btn.active {
            color: #fff;
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 4px 16px rgba(33, 105, 211, 0.30);
        }

        .detail-tabs-wrapper .tab-content-swiper .swiper-slide {
            padding: 8px 4px;
        }
        .detail-tabs-wrapper .tab-content-swiper .swiper-slide h4 {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .detail-tabs-wrapper .tab-content-swiper .swiper-slide h4 i {
            color: var(--primary);
        }
        .detail-tabs-wrapper .tab-content-swiper .swiper-slide p {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 12px;
        }
        .detail-tabs-wrapper .tab-content-swiper .swiper-slide ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
        }
        .detail-tabs-wrapper .tab-content-swiper .swiper-slide ul li {
            background: var(--primary-light);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .detail-tabs-wrapper .tab-content-swiper .swiper-slide ul li i {
            font-size: 0.8rem;
        }

        .detail-tabs-wrapper .tab-pagination {
            text-align: center;
            margin-top: 24px;
        }
        .detail-tabs-wrapper .tab-pagination .swiper-pagination-bullet {
            background: var(--primary);
            opacity: 0.3;
            width: 10px;
            height: 10px;
        }
        .detail-tabs-wrapper .tab-pagination .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--primary);
        }

   
        .form-section {
            background: #fff;
            border-radius: 24px;
            padding: 48px 44px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(33, 105, 211, 0.06);
        }
        .form-section .form-title {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .form-section .form-title i {
            color: var(--primary);
            margin-right: 10px;
        }
        .form-section .form-sub {
            color: var(--text-gray);
            margin-bottom: 28px;
            font-size: 1rem;
        }
        .form-section .form-control {
            border-radius: 12px;
            padding: 14px 18px;
            border: 2px solid #eef2f7;
            transition: all var(--transition);
            font-size: 0.95rem;
        }
        .form-section .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(33, 105, 211, 0.10);
        }
        .form-section .form-control::placeholder {
            color: #b0b8c5;
        }
        .form-section .btn-submit {
            padding: 14px 48px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--primary);
            color: #fff;
            border: none;
            transition: all var(--transition);
            box-shadow: 0 4px 20px rgba(33, 105, 211, 0.30);
        }
        .form-section .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(33, 105, 211, 0.40);
            color: #fff;
        }

        /* ===== RELATED PRODUCTS ===== */
        .related-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            height: 100%;
            border: 1px solid rgba(33, 105, 211, 0.04);
        }
        .related-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .related-card .related-img {
            position: relative;
            overflow: hidden;
            background: #f8faff;
            padding-top: 70%;
        }
        .related-card .related-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }
        .related-card:hover .related-img img {
            transform: scale(1.06);
        }
        .related-card .card-body {
            padding: 18px 20px 22px;
        }
        .related-card .card-body h5 {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .related-card .card-body h5 a {
            color: var(--text-dark);
            transition: color var(--transition);
        }
        .related-card .card-body h5 a:hover {
            color: var(--primary);
        }
        .related-card .card-body .related-meta {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-bottom: 6px;
        }
        .related-card .card-body .related-meta i {
            color: var(--primary);
            margin-right: 4px;
        }
        .related-card .card-body p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .related-card .card-body .btn-sm-outline {
            padding: 5px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            transition: all var(--transition);
            display: inline-block;
        }
        .related-card .card-body .btn-sm-outline:hover {
            background: var(--primary);
            color: #fff;
        }
				.pc-slide .view {border: 1px solid #ddd;}
.view .swiper-slide .img-center {width:100%;height:400px;line-height:400px;}
.view .swiper-container{width:100%;}
.preview{width:100%;margin-top:10px;position:relative;}
.preview .swiper-container{margin:0 30px;}
.preview .swiper-slide .img-center{height:80px;border:1px solid #ddd;cursor:pointer;position:relative;line-height: 80px;    overflow: hidden;}
.preview .arrow-left{position:absolute;left:0;top:50%;margin-top:-9px;width:9px;height:18px;z-index:10;font-size: 20px;color: #000;}
.preview .arrow-right{position:absolute;right:0;top:50%;margin-top:-9px;width:9px;height:18px;z-index:10;font-size: 20px;color: #000;}
.preview .active-nav .img-center{border-color: #357ca9;}
div.zoomDiv {z-index: 999;position: absolute;top: 0;left: 0;background: #ffffff;border: 1px solid #ddd;display: none;text-align: center;overflow: hidden;font-size: 0;}
div.zoomMask {position: absolute;background: url(../images/mask.png) repeat scroll 0 0 transparent;cursor: move;z-index: 1;}
.img-center {text-align: center;font-size: 0;}
.img-center img {display: inline-block;width: auto;height: auto;max-width: 100%;max-height: 100%;vertical-align: middle;transition: all 0.5s;}

 .news-item {
            display: flex;
            gap: 30px;
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            margin-bottom: 28px;
            border: 1px solid rgba(33, 105, 211, 0.04);
            align-items: stretch;
        }
        .news-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .news-item .news-img {
            flex: 0 0 280px;
            border-radius: 16px;
            overflow: hidden;
            background: #f8faff;
            position: relative;
        }
        .news-item .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 200px;
            transition: transform var(--transition);
        }
        .news-item:hover .news-img img {
            transform: scale(1.04);
        }
        .news-item .news-img a {
            display: block;
            width: 100%;
            height: 100%;
        }
        .news-item .news-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4px 0;
        }
        .news-item .news-body .news-title {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 6px;
            color: var(--text-dark);
        }
        .news-item .news-body .news-title a {
            color: var(--text-dark);
            transition: color var(--transition);
        }
        .news-item .news-body .news-title a:hover {
            color: var(--primary);
        }
        .news-item .news-body .news-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .news-item .news-body .news-meta i {
            color: var(--primary);
            margin-right: 4px;
        }
        .news-item .news-body .news-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .news-item .news-body .news-desc {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item .news-body .news-more {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all var(--transition);
            width: fit-content;
        }
        .news-item .news-body .news-more:hover {
            color: var(--primary-dark);
            gap: 12px;
        }

		 .news-detail-wrapper {
            background: #fff;
            border-radius: 24px;
            padding: 48px 52px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(33, 105, 211, 0.06);
        }
        .news-detail-wrapper .detail-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px 30px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f4fa;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .news-detail-wrapper .detail-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .news-detail-wrapper .detail-meta i {
            color: var(--primary);
            font-size: 1rem;
            width: 18px;
        }
        .news-detail-wrapper .detail-meta .category-tag {
            background: var(--primary-light);
            color: var(--primary);
            padding: 4px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        .news-detail-wrapper .detail-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .news-detail-wrapper .detail-featured-img {
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 28px;
            box-shadow: var(--shadow);
        }
        .news-detail-wrapper .detail-featured-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .news-detail-wrapper .detail-body {
            font-size: 1.05rem;
            color: var(--text-dark);
            line-height: 1.9;
        }
        .news-detail-wrapper .detail-body p {
            margin-bottom: 18px;
        }
        .news-detail-wrapper .detail-body h4 {
            font-weight: 700;
            font-size: 1.3rem;
            margin: 30px 0 14px;
            color: var(--text-dark);
        }
        .news-detail-wrapper .detail-body ul {
            padding-left: 24px;
            margin-bottom: 20px;
        }
        .news-detail-wrapper .detail-body ul li {
            margin-bottom: 8px;
        }
        .news-detail-wrapper .detail-body blockquote {
            background: var(--primary-light);
            padding: 20px 30px;
            border-radius: 16px;
            border-left: 4px solid var(--primary);
            font-style: italic;
            color: var(--text-dark);
            margin: 24px 0;
            font-size: 1.05rem;
        }
        .news-detail-wrapper .detail-body .detail-inline-img {
            border-radius: 16px;
            overflow: hidden;
            margin: 24px 0;
            box-shadow: var(--shadow);
        }
        .news-detail-wrapper .detail-body .detail-inline-img img {
            width: 100%;
            max-height: 360px;
            object-fit: cover;
        }

        .news-detail-wrapper .detail-share {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 2px solid #f0f4fa;
            flex-wrap: wrap;
        }
        .news-detail-wrapper .detail-share span {
            font-weight: 600;
            color: var(--text-dark);
        }
        .news-detail-wrapper .detail-share a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            transition: all var(--transition);
            font-size: 1.1rem;
        }
        .news-detail-wrapper .detail-share a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(33, 105, 211, 0.30);
        }

        /* ===== RELATED NEWS ===== */
        .related-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            height: 100%;
            border: 1px solid rgba(33, 105, 211, 0.04);
        }
        .related-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .related-card .related-img {
            position: relative;
            overflow: hidden;
            background: #f8faff;
            padding-top: 60%;
        }
        .related-card .related-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }
        .related-card:hover .related-img img {
            transform: scale(1.06);
        }
        .related-card .related-img a {
            display: block;
            width: 100%;
            height: 100%;
        }
        .related-card .card-body {
            padding: 18px 20px 22px;
        }
        .related-card .card-body .related-meta {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .related-card .card-body .related-meta i {
            color: var(--primary);
            margin-right: 4px;
        }
        .related-card .card-body .related-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 6px;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .related-card .card-body .related-title a {
            color: var(--text-dark);
            transition: color var(--transition);
        }
        .related-card .card-body .related-title a:hover {
            color: var(--primary);
        }
        .related-card .card-body .related-desc {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .related-card .card-body .btn-sm-outline {
            padding: 5px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            transition: all var(--transition);
            display: inline-block;
        }
        .related-card .card-body .btn-sm-outline:hover {
            background: var(--primary);
            color: #fff;
        }
		
		 .contact-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 24px 36px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all var(--transition);
            height: 100%;
            border: 1px solid rgba(33, 105, 211, 0.06);
            cursor: default;
        }
        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        .contact-card .icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 18px;
            transition: all var(--transition);
        }
        .contact-card:hover .icon-wrap {
            background: var(--primary);
            color: #fff;
            transform: scale(1.06) rotate(-4deg);
            box-shadow: 0 8px 28px rgba(33, 105, 211, 0.30);
        }
        .contact-card h5 {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 6px;
        }
        .contact-card .contact-value {
            color: var(--text-gray);
            font-size: 1rem;
            transition: color var(--transition);
            word-break: break-word;
        }
        .contact-card:hover .contact-value {
            color: var(--text-dark);
        }
        .contact-card .contact-value a {
            color: var(--text-gray);
            transition: color var(--transition);
        }
        .contact-card .contact-value a:hover {
            color: var(--primary);
        }

        /* ===== MAP & FORM ===== */
        .map-wrapper {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            min-height: 480px;
            background: #eef2f7;
        }
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 480px;
            border: 0;
            display: block;
        }

        .form-wrapper {
            background: #fff;
            border-radius: 24px;
            padding: 40px 36px;
            box-shadow: var(--shadow);
            height: 100%;
            border: 1px solid rgba(33, 105, 211, 0.06);
        }
        .form-wrapper .form-title {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 6px;
        }
        .form-wrapper .form-title i {
            color: var(--primary);
            margin-right: 10px;
        }
        .form-wrapper .form-sub {
            color: var(--text-gray);
            margin-bottom: 24px;
            font-size: 0.95rem;
        }
        .form-wrapper .form-control {
            border-radius: 12px;
            padding: 14px 18px;
            border: 2px solid #eef2f7;
            transition: all var(--transition);
            font-size: 0.95rem;
            background: #fafcff;
        }
        .form-wrapper .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(33, 105, 211, 0.10);
            background: #fff;
        }
        .form-wrapper .form-control::placeholder {
            color: #b0b8c5;
        }
        .form-wrapper .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }
        .form-wrapper .btn-submit {
            padding: 14px 48px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--primary);
            color: #fff;
            border: none;
            transition: all var(--transition);
            box-shadow: 0 4px 20px rgba(33, 105, 211, 0.30);
            width: 100%;
        }
        .form-wrapper .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(33, 105, 211, 0.40);
            color: #fff;
        }
        
        
         .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 14px;
            margin-bottom: 40px;
        }
        .filter-tabs .filter-tab {
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
            background: #fff;
            border: 2px solid #e4e9f0;
            transition: all var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        .filter-tabs .filter-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }
        .filter-tabs .filter-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 4px 16px rgba(33, 105, 211, 0.30);
        }
        .filter-tabs .filter-tab i {
            margin-right: 6px;
        }

        /* ===== DOWNLOAD LIST — 一行一列 ===== */
        .download-item {
            display: flex;
            align-items: center;
            gap: 28px;
            background: #fff;
            border-radius: 20px;
            padding: 22px 28px;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            border: 1px solid rgba(33, 105, 211, 0.04);
            margin-bottom: 20px;
        }
        .download-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .download-item .file-icon {
            flex: 0 0 64px;
            font-size: 2.6rem;
            color: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            text-align: center;
        }
        .download-item .file-icon .file-ext {
            font-size: 0.6rem;
            font-weight: 700;
            color: #fff;
            background: var(--primary);
            padding: 1px 10px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            line-height: 1.6;
        }
        .download-item .file-icon .file-ext.pdf {
            background: #e74c3c;
        }
        .download-item .file-icon .file-ext.doc {
            background: #2b5797;
        }
        .download-item .file-icon .file-ext.xls {
            background: #217346;
        }
        .download-item .file-icon .file-ext.zip {
            background: #f39c12;
        }
        .download-item .file-icon .file-ext.img {
            background: #8e44ad;
        }

        .download-item .file-info {
            flex: 1;
            min-width: 0;
        }
        .download-item .file-info .file-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }
        .download-item .file-info .file-title a {
            color: var(--text-dark);
            transition: color var(--transition);
        }
        .download-item .file-info .file-title a:hover {
            color: var(--primary);
        }
        .download-item .file-info .file-desc {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .download-item .file-info .file-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            font-size: 0.8rem;
            color: var(--text-gray);
        }
        .download-item .file-info .file-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .download-item .file-info .file-meta i {
            color: var(--primary);
            font-size: 0.75rem;
        }

        .download-item .file-action {
            flex: 0 0 auto;
            margin-left: 8px;
        }
        .download-item .btn-download {
            padding: 10px 28px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            background: var(--primary);
            color: #fff;
            border: none;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .download-item .btn-download:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(33, 105, 211, 0.30);
            color: #fff;
        }

		
		
 @media (max-width: 991.98px) {
            .section-padding {
                padding: 60px 0;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .page-banner .banner-content h1 {
                font-size: 2.6rem;
            }
            .page-banner {
                min-height: 280px;
                padding: 100px 20px 60px;
            }
            .stat-number {
                font-size: 2.6rem;
            }
            .factory-main-img {
                min-height: 260px;
            }
            .factory-thumbs .thumb-item img {
                min-height: 80px;
            }
		     .news-item {
                flex-direction: column;
                padding: 20px;
                gap: 18px;
            }
            .news-item .news-img {
                flex: 0 0 auto;
                width: 100%;
                max-height: 220px;
            }
              .download-item {
                flex-wrap: wrap;
                padding: 20px;
                gap: 16px;
            }
            .download-item .file-icon {
                flex: 0 0 48px;
                font-size: 2rem;
            }
            .download-item .file-action {
                flex: 1 1 100%;
                margin-left: 0;
            }
            .download-item .btn-download {
                width: 100%;
                justify-content: center;
                padding: 10px 20px;
            }
            .download-item .file-info .file-meta {
                gap: 12px 16px;
                font-size: 0.75rem;
            }
            .news-item .news-img img {
                min-height: 160px;
            }
			  .contact-card {
                padding: 32px 20px 28px;
            }
            .contact-card .icon-wrap {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
            .map-wrapper {
                min-height: 320px;
            }
            .map-wrapper iframe {
                min-height: 320px;
            }
            .form-wrapper {
                padding: 32px 24px;
            }
            .news-item .news-body .news-title {
                font-size: 1.15rem;
            }
            .category-tabs .cat-tab {
                padding: 8px 18px;
                font-size: 0.8rem;
            }
			   .product-gallery img {
                min-height: 280px;
            }
            .product-info .product-title {
                font-size: 1.8rem;
            }
            .spec-list {
                grid-template-columns: 1fr;
                gap: 4px;
            }
            .spec-list li:last-child {
                border-bottom: none;
            }
            .detail-tabs-wrapper {
                padding: 28px 20px 24px;
            }
            .detail-tabs-wrapper .tab-nav .tab-btn {
                padding: 8px 18px;
                font-size: 0.85rem;
            }
            .form-section {
                padding: 32px 24px;
            }
			    .news-detail-wrapper {
                padding: 32px 28px;
            }
            .news-detail-wrapper .detail-title {
                font-size: 2rem;
            }
            .news-detail-wrapper .detail-featured-img img {
                max-height: 320px;
            }
        }

        @media (max-width: 767.98px) {
            .factory-thumbs {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                margin-top: 16px;
            }
            .factory-main-img {
                min-height: 200px;
            }
            .factory-thumbs .thumb-item img {
                min-height: 80px;
            }
            .culture-card {
                padding: 28px 18px 24px;
            }
            .culture-card .icon-wrap {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
        }

        @media (max-width: 575.98px) {
            .page-banner .banner-content h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .factory-main-img {
                min-height: 180px;
            }
            .factory-thumbs .thumb-item img {
                min-height: 60px;
            }
			     .news-item {
                padding: 14px;
                gap: 14px;
            }
            .news-item .news-img {
                max-height: 160px;
            }
            .news-item .news-img img {
                min-height: 120px;
            }
            .news-item .news-body .news-title {
                font-size: 1rem;
            }
            .news-item .news-body .news-meta {
                font-size: 0.75rem;
                gap: 12px;
            }
            .news-item .news-body .news-desc {
                font-size: 0.85rem;
                -webkit-line-clamp: 2;
            }
         .news-detail-wrapper {
                padding: 20px 16px;
                border-radius: 16px;
            }
            .news-detail-wrapper .detail-title {
                font-size: 1.5rem;
            }
            .news-detail-wrapper .detail-meta {
                gap: 12px 16px;
                font-size: 0.8rem;
            }
            .news-detail-wrapper .detail-body {
                font-size: 0.95rem;
            }
            .news-detail-wrapper .detail-body blockquote {
                padding: 14px 18px;
                font-size: 0.95rem;
            }
            .news-detail-wrapper .detail-featured-img img {
                max-height: 200px;
            }
            .news-detail-wrapper .detail-share a {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }
            .culture-card {
                padding: 22px 14px 18px;
            }
            .culture-card .icon-wrap {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
                margin-bottom: 12px;
            }
            .culture-card h5 {
                font-size: 1rem;
            }
            .culture-card p {
                font-size: 0.85rem;
            }
			 .contact-card {
                padding: 24px 16px 20px;
            }
            .contact-card .icon-wrap {
                width: 52px;
                height: 52px;
                font-size: 1.3rem;
                margin-bottom: 12px;
            }
            .contact-card h5 {
                font-size: 1rem;
            }
            .contact-card .contact-value {
                font-size: 0.9rem;
            }
            .map-wrapper {
                min-height: 240px;
            }
            .map-wrapper iframe {
                min-height: 240px;
            }
            .form-wrapper {
                padding: 24px 16px;
            }
            .form-wrapper .form-title {
                font-size: 1.3rem;
            }
			.section-title {
                font-size: 1.8rem;
            }
            .category-tabs {
                gap: 8px 10px;
            }
            .category-tabs .cat-tab {
                padding: 6px 14px;
                font-size: 0.7rem;
            }
            .phpcms-pagination a,
            .phpcms-pagination span {
                min-width: 34px;
                height: 34px;
                padding: 0 10px;
                font-size: 0.8rem;
            }
            .phpcms-pagination .prev,
            .phpcms-pagination .next {
                padding: 0 12px;
            }
            .phpcms-pagination .page-info {
                margin-left: 8px;
                font-size: 0.75rem;
            }
            
              .download-item {
                padding: 16px;
                gap: 12px;
            }
            .download-item .file-icon {
                flex: 0 0 40px;
                font-size: 1.6rem;
            }
            .download-item .file-icon .file-ext {
                font-size: 0.5rem;
                padding: 0 6px;
            }
            .download-item .file-info .file-title {
                font-size: 0.95rem;
            }
            .download-item .file-info .file-desc {
                font-size: 0.8rem;
            }
            .download-item .file-info .file-meta {
                font-size: 0.7rem;
                gap: 8px 12px;
                flex-direction: column;
                align-items: flex-start;
            }
            .download-item .btn-download {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
			
			  .product-gallery img {
                min-height: 200px;
            }
            .product-info .product-title {
                font-size: 1.5rem;
            }
            .spec-list {
                grid-template-columns: 1fr;
            }
            .detail-tabs-wrapper .tab-nav {
                flex-wrap: wrap;
                gap: 6px;
            }
            .detail-tabs-wrapper .tab-nav .tab-btn {
                padding: 6px 14px;
                font-size: 0.75rem;
            }
            .detail-tabs-wrapper .tab-content-swiper .swiper-slide h4 {
                font-size: 1.1rem;
            }
        }