.product-page{
    background: #ffffff;
}
.products-banner{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.products-banner__bg-img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 300px;
    object-fit: cover;
}
.products-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
}
.products-banner__inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 20px 15px;
}
.products-banner__title{
    max-width: 1200px;
    margin: 0 auto;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
}
.breadcrumb-banner {
    text-align: left !important;
}
.products-banner__title-left {
    margin: 0;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}
.products-banner__breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
.products-banner__breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}
.products-banner__breadcrumb a:hover {
    color: #fff;
}
.products-banner__breadcrumb span {
    color: #fff;
    font-weight: 600;
}

/* Category Hero Info Section below nav */
.category-hero-info {
    padding: 60px 15px 0;
    background: #ffffff;
}
.category-hero-info__inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.category-hero-info__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}
.category-hero-info__title {
    margin: 0;
    font-size: 38px;
    line-height: 1.2;
    color: #333;
    font-weight: 700;
}
.category-hero-info__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.category-hero-info__tag {
    padding: 6px 20px;
    background: #f8f9fa;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid #eee;
}
.category-hero-info__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 1200px;
}

.products-banner__desc{
    max-width: 980px;
    margin: 24px auto 0;
    font-size: 25px;
    line-height: 1.85;
    color: rgba(255,255,255,.92);
    font-weight: bold;
}
.products-banner__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 54px;
    margin-top: 34px;
    padding: 0 28px;
    border-radius: 999px;
    background: #0d57b7;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.products-banner__btn:hover{
    color: #fff;
    background: #08489a;
}
.products-category-section{
    padding: 34px 0 90px;
}
.products-category-section__inner{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.products-category-section__head{
    max-width: 1240px;
    margin: 0 auto 32px;
    text-align: center;
}
.products-category-section__title,
.products-showcase__title{
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    color: #091321;
    font-weight: 700;
    text-transform: uppercase;
}
.products-category-section__desc,
.products-showcase__desc{
    max-width: 1180px;
    margin: 22px auto 0;
    font-size: 16px;
    line-height: 1.9;
    color: #4f5e76;
}
.products-banner__title,
.products-banner__desc,
.products-category-section__title,
.products-showcase__title,
.products-category-section__desc,
.products-showcase__desc,
.category-hero__title,
.category-hero__desc{
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.category-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}
.category-grid__item{
    list-style: none;
}
.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.category-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.category-card__image-wrap{
    overflow: hidden;
    background: #edf1f6;
    aspect-ratio: 7 / 5;
}
.category-card__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.category-card:hover .category-card__image{
    transform: scale(1.05);
}
.category-card__content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.category-card__title{
    margin: 0 0 12px 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a2233;
    transition: color 0.3s;
}
.category-card:hover .category-card__title {
    color: #ea222d;
}
.category-card__desc{
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #5b687c;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}
.category-card__action {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0d57b7;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.category-card__action::after {
    content: "→";
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.category-card:hover .category-card__action::after {
    transform: translateX(5px);
}

/* --- Product Category Navigation --- */
.product-category-nav {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
}
.product-category-nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
}
/* Sleek Scrollbar */
.product-category-nav__inner::-webkit-scrollbar {
    height: 6px;
}
.product-category-nav__inner::-webkit-scrollbar-track {
    background: #f8f9fa; 
}
.product-category-nav__inner::-webkit-scrollbar-thumb {
    background: #d1d5db; 
    border-radius: 4px;
}
.product-category-nav__inner::-webkit-scrollbar-thumb:hover {
    background: #9ca3af; 
}
.product-category-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
    min-width: max-content;
}
.product-category-nav__item {
    display: flex;
}
.product-category-nav__item a {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: transparent;
}
.product-category-nav__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 0.3s;
}
.product-category-nav__icon img {
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
}
.product-category-nav__item:hover a,
.product-category-nav__item.active a {
    background-color: #c82021; /* Brand red */
    color: #fff;
}
.product-category-nav__item:hover .product-category-nav__icon,
.product-category-nav__item.active .product-category-nav__icon {
    background-color: #fff;
}
.product-breadcrumb{
    background: #f4f5f8;
    border-top: 1px solid #e7eaf0;
    border-bottom: 1px solid #eceff4;
}
.product-breadcrumb__inner{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
    font-size: 14px;
    color: #6b7486;
}
.product-breadcrumb__inner a{
    color: #0d57b7;
}
.product-breadcrumb__inner span{
    margin: 0 4px;
}
.category-hero{
    padding: 54px 0 56px;
}
.category-hero__inner{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48%;
    gap: 58px;
    align-items: center;
}
.category-hero__content{
    max-width: 520px;
    width: 100%;
}
.category-hero__title{
    margin: 0;
    max-width: 100%;
    font-size: 36px;
    line-height: 1.5;
    font-weight: 700;
    color: #091321;
}
.category-hero__eyebrow{
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: .16em;
    color: #0d57b7;
    font-weight: 700;
    text-transform: uppercase;
}
.category-hero__sub{
    margin-top: 26px;
    font-size: 14px;
    color: #0d57b7;
}
.category-hero__desc{
    max-width: 100%;
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.9;
    color: #243247;
}
.category-hero__actions{
    margin-top: 34px;
}
.category-hero__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 196px;
    height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    background: #0d57b7;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.category-hero__btn:hover{
    color: #fff;
    background: #08489a;
}
.category-hero__image-wrap{
    overflow: hidden;
    background: #edf1f6;
}
.category-hero__image{
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}
.products-showcase{
    padding: 64px 0 90px;
    background: #ffffff;
}
.products-showcase__head{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 34px;
    text-align: center;
}
.product_list_warp{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.product_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 0;
}
.product_item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}
.product_item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
.product_item__link {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: inherit;
    text-decoration: none;
}
.product_list_item_img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #edf1f6;
}
.product_list_item_img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: skewX(-25deg);
}
.product_list_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product_item:hover .product_list_item_img img {
    transform: scale(1.05);
}
.product_item:hover .product_list_item_img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.product_item__content {
    padding: 24px 24px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product_list_item_title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #222222;
    margin-bottom: 14px;
    transition: color 0.3s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product_item:hover .product_list_item_title {
    color: #c82021;
}
.product_list_item_category {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product_item__footer {
    padding: 0 24px 24px;
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.product_list_item_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 42px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    flex: 1;
    text-decoration: none;
}
.product_list_item_btn.quote-btn {
    background: #c82021;
    color: #ffffff;
}
.product_list_item_btn.quote-btn:hover {
    background: #a9181a;
    color: #ffffff;
}
.product_list_item_btn.detail-btn {
    background: transparent;
    border: 1px solid #c82021;
    color: #c82021;
}
.product_list_item_btn.detail-btn:hover {
    background: #c82021;
    color: #ffffff;
}
.product_item:hover .product_list_item_btn {
    background: inherit;
    color: inherit;
}
.product_item:hover .product_list_item_btn.quote-btn {
    background: #a9181a;
    color: #ffffff;
}
.product_item:hover .product_list_item_btn.detail-btn {
    background: transparent;
    color: #c82021;
    border-color: #c82021;
}
.product_item:hover .product_list_item_btn.detail-btn:hover {
    background: #c82021;
    color: #ffffff;
}

/* Reset arrow stretch on card hover for the product page */
.product_item:hover .btn-arrow {
    width: 16px !important;
    transform: none !important;
}

/* Only apply arrow stretch when the button itself is directly hovered */
.product_item .product_list_item_btn:hover .btn-arrow {
    width: 48px !important;
    transform: translateX(8px) !important;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 100%;
    }
}
.product-empty{
    padding: 72px 24px;
    text-align: center;
    background: #fff;
    border: 1px dashed #d2dae7;
    border-radius: 20px;
}
.product-empty h3{
    margin-bottom: 12px;
    font-size: 28px;
    color: #111827;
}
.product-empty p{
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #5b687c;
}
.products-content-right-page{
    margin-top: 42px;
    display: flex;
    justify-content: center;
}
.products-content-right-page .pagination{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.products-content-right-page .pagination li {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
}
.products-content-right-page .pagination li a,
.products-content-right-page .pagination li span {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 4px; /* Industrial B2B square with rounded corners */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    background: #fff;
    border: 1px solid #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
}
.products-content-right-page .pagination li.active span {
    background: #ea222d;
    border-color: #ea222d;
    color: #fff;
}
.products-content-right-page .pagination li a:hover {
    background: #fef2f2;
    border-color: #ea222d;
    color: #ea222d;
}
.products-content-right-page .pagination li.disabled span {
    color: #9ca3af;
    background: #f9fafb;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.product-case{
    width: 1400px;
    margin: 70px auto 0;
}
.product-case .title{
    margin: 0;
    text-align: center;
    font-size: 34px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold;
}
.product-case .case-list{
    margin-top: 24px;
}
.product-case-carousel{
    margin-top: 24px;
    position: relative;
}
.product-case-swiper{
    overflow: hidden;
    padding: 10px 10px 20px;
    margin: -10px -10px 0;
}
.product-case .case-item{
    margin-top: 0;
    position: relative;
}
.product-case .case-item .case-item-img{
    width: 100%;
    aspect-ratio: 386 / 280;
    position: relative;
    overflow: hidden;
    background: #edf1f6;
}
.product-case .case-item .case-item-img::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: skewX(-25deg);
}
.product-case .case-item:hover .case-item-img::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.product-case .case-item .case-item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-case .case-item:hover .case-item-img img {
    transform: scale(1.05);
}
.product-case .case-item .case-item-content{
    padding: 25px 20px;
    margin-top: -100px;
    margin-left: 8%;
    margin-right: 0;
    position: relative;
    z-index: 10;
    border: 1px solid #eee;
    border-top: none;
    border-right: none;
    background: #FFFFFF;
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}
.product-case .case-item .case-item-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    margin-top: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}
.product-case .case-item .case-item-desc{
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product-case .case-item .case-item-more {
    font-size: 13px;
    color: #f39c12;
    margin-top: 15px;
    display: block;
    font-weight: 500;
    transition: color 0.3s ease;
}
.product-case .case-item:hover .case-item-title{
    color: #ea222d;
}
.product-case .case-item:hover .case-item-more{
    color: #ea222d;
}
.product-case-button-prev,
.product-case-button-next{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dbe4f0;
    background: #fff;
    position: absolute;
    top: calc(50% - 60px);
    transform: translateY(-50%);
    z-index: 12;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.product-case-button-prev:hover,
.product-case-button-next:hover{
    background: #ea222d;
    border-color: #ea222d;
}
.product-case-button-prev:hover::after,
.product-case-button-next:hover::after{
    border-color: #fff;
}
.product-case-button-prev{
    left: -18px;
}
.product-case-button-next{
    right: -18px;
}
.product-case-button-prev::after,
.product-case-button-next::after{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0d57b7;
    border-right: 2px solid #0d57b7;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
}
.product-case-button-prev::after{
    transform: translate(-40%, -50%) rotate(-135deg);
}
.product-case-button-next::after{
    transform: translate(-60%, -50%) rotate(45deg);
}
.product-case-pagination{
    margin-top: 24px;
    text-align: center;
}
.product-case-pagination .swiper-pagination-bullet{
    width: 32px;
    height: 5px;
    border-radius: 0;
    margin: 0 4px;
    background-color: #c7d2e3;
    opacity: 1;
    transition: all 0.3s ease;
}
.product-case-pagination .swiper-pagination-bullet-active{
    background-color: #0d57b7;
}

.product-faq{
    max-width: 1400px;
    width: 94%;
    margin: 80px auto;
}
.product-faq .title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #1A1A1A;
}
.product-faq .faq-wrap{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
/* Left Side (35%) */
.product-faq .faq-contact{
    width: 35%;
    position: relative;
    color: #fff;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
    box-sizing: border-box;
}
.product-faq .faq-contact-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top right, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.4) 70%, rgba(10, 10, 10, 0.1) 100%);
    z-index: 1;
}
.product-faq .faq-contact-content {
    position: relative;
    z-index: 2;
}
.product-faq .faq-contact-title{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
}
.product-faq .faq-contact-desc{
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #e5e7eb;
}
.product-faq .faq-contact-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 16px 32px;
    background: #ea222d;
    box-shadow: 0 4px 14px rgba(234, 34, 45, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}
.product-faq .faq-contact-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 8px;
}
.product-faq .faq-contact-btn:hover{
    background: #ff2b37;
    box-shadow: 0 6px 20px rgba(234, 34, 45, 0.4);
    color: #fff;
    text-decoration: none;
}
.product-faq .faq-contact-btn:hover span {
    transform: translateX(6px);
}

/* Right Side (60%) */
.product-faq .faq-list{
    width: 60%;
}
.product-faq .faq-item{
    background: transparent;
    border-bottom: 1px solid #eaeaea;
    padding: 28px 0;
}
.product-faq .faq-item:first-child{
    border-top: 1px solid #eaeaea;
}
.product-faq .faq-question{
    font-size: 18px;
    color: #1A1A1A;
    font-weight: bold;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    transition: color 0.3s;
}
.product-faq .faq-item:hover .faq-question {
    color: #1A1A1A;
}
.product-faq .faq-index {
    color: #4B5563;
    font-size: 16px;
    font-weight: bold;
    width: 36px;
    flex-shrink: 0;
    padding-top: 2px;
}
.product-faq .faq-text {
    flex: 1;
}
.product-faq .faq-toggle {
    font-style: normal;
    color: #1A1A1A;
    font-size: 28px;
    line-height: 1;
    margin-left: 20px;
    font-weight: 300;
    transition: transform 0.3s, color 0.3s;
}
.product-faq .faq-item.active .faq-toggle {
    color: #4B5563;
    transform: rotate(90deg);
}
.product-faq .faq-answer{
    display: none;
    margin-top: 15px;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.8;
    padding-left: 36px;
}
.product-faq .faq-item.active .faq-answer{
    display: block;
}



@media only screen and (max-width: 767px) {
    .products-banner{
        min-height: 420px;
    }
    .products-banner__title{
        font-size: 30px;
    }
    .products-banner__desc{
        font-size: 15px;
    }
    .category-grid{
        grid-template-columns: 1fr;
    }
    .category-hero__title{
        font-size: 28px;
    }
    .category-hero__image{
        height: 280px;
    }
    .product_list_item_title,
    .product_list_item_category{
        min-height: auto;
    }

}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .product-case{
        width: 900px;
        margin-top: 56px;
    }
    .product-case .title{
        font-size: 30px;
    }
    .product-case .case-item{
        margin-top: 0;
    }
    .product-case .case-item .case-item-content{
        padding: 20px 15px;
        margin-top: -80px;
    }
    .product-case .case-item .case-item-title{
        font-size: 16px;
    }
    .product-case .case-item .case-item-desc{
        font-size: 13px;
        margin-top: 8px;
    }

    .product-faq {
        width: 90%;
        margin: 60px auto;
    }
    .product-faq .title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .product-faq .faq-contact {
        width: 35%;
        padding: 40px 20px;
    }
    .product-faq .faq-list {
        width: 62%;
    }
    .product-faq .faq-item {
        padding: 18px 0;
    }
    .product-faq .faq-question {
        font-size: 16px;
    }
    .product-faq .faq-toggle {
        font-size: 24px;
        margin-left: 16px;
    }
    .product-faq .faq-answer {
        margin-top: 10px;
        font-size: 14px;
        padding-left: 32px;
    }
    .product-faq .faq-contact-title {
        font-size: 24px;
    }
    .product-faq .faq-contact-desc {
        font-size: 14px;
    }
    .product-faq .faq-contact-btn {
        margin-top: 20px;
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 1000px) {
    .product-case{
        width: 700px;
        margin-top: 40px;
    }
    .product-case .title{
        font-size: 28px;
    }
    .product-case .case-item{
        margin-top: 0;
    }
    .product-case-button-prev,
    .product-case-button-next{
        display: none;
    }
    .product-case .case-item .case-item-content{
        padding: 15px 12px;
        margin-top: -60px;
    }
    .product-case .case-item .case-item-title{
        font-size: 14px;
    }
    .product-case .case-item .case-item-desc{
        font-size: 12px;
        margin-top: 6px;
    }

    .product-faq {
        width: 100%;
        padding: 0 5%;
        margin: 40px auto;
    }
    .product-faq .title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .product-faq .faq-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .product-faq .faq-contact {
        width: 100%;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }
    .product-faq .faq-list {
        width: 100%;
    }
    .product-faq .faq-item {
        padding: 15px 0;
    }
    .product-faq .faq-question {
        font-size: 16px;
    }
    .product-faq .faq-index {
        font-size: 14px;
        margin-right: 12px;
    }
    .product-faq .faq-toggle {
        font-size: 24px;
        margin-left: 10px;
    }
    .product-faq .faq-answer {
        font-size: 14px;
        padding-left: 26px;
    }
    .product-faq .faq-contact-title {
        font-size: 22px;
    }
    .product-faq .faq-contact-desc {
        font-size: 14px;
    }
    .product-faq .faq-contact-btn {
        margin-top: 20px;
        font-size: 14px;
        padding: 10px 20px;
    }
}
