/* ===== Reset & Base ===== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body, html {
    width: 100%;
}
body {
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}
html {
    scroll-behavior: smooth;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== Utility Classes ===== */
.flex { display: flex; }
.flex-align-items { align-items: center; }
.flex-justify-content { justify-content: center; }
.flex-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

.fluid {
    max-width: 1290px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

/* ===== Top Strip ===== */
.top-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("../img/smallsine100x50.483750705d84.jpg") repeat-x left center;
    background-size: auto 100%;
    z-index: 101;
}

/* ===== Header / Nav ===== */
header .nav {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    padding: 16px 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav .logo img {
    height: 50px;
    width: auto;
}
.nav .logo strong {
    font-size: 20px;
    color: #1e3a5f;
}
.nav-links {
    gap: 32px;
    font-size: 15px;
    font-weight: 500;
}
.nav-links a {
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
    white-space: nowrap;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00a79d;
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}
.nav-links a:hover {
    color: #00a79d;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: auto;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* ===== Main ===== */
main {
    padding-top: 132px;
    min-height: calc(100vh - 300px);
}

/* ===== Page Banner ===== */
.page-banner {
    background: #1e3a5f;
    color: #fff;
    padding: 40px 0 30px;
}
.page-banner h1 {
    font-size: 32px;
    margin-bottom: 5px;
}
.page-banner .txt-en {
    font-size: 14px;
    opacity: 0.6;
    text-transform: uppercase;
}
.breadcrumb {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== Hero Banner (Homepage) ===== */
.hero-banner {
    position: relative;
    height: 500px;
    background: #1e3a5f;
    overflow: hidden;
    padding: 4px 0;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.hero-placeholder {
    background: linear-gradient(135deg, #1e3a5f 0%, #00a79d 100%);
}
.hero-banner .headSwp {
    width: 100%;
    height: 100%;
}
.hero-banner .headSwp .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Section Styles ===== */
section {
    padding: 50px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 32px;
    color: #1e3a5f;
}
.section-subtitle {
    font-size: 14px;
    color: #aaa;
    margin-top: 5px;
    text-transform: uppercase;
}

/* ===== Category Grid ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.category-card.large img {
    height: 240px;
}
.category-name {
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
}
.category-name h3 {
    font-size: 18px;
    margin-bottom: 4px;
}
.category-name p {
    font-size: 13px;
    color: #888;
    font-weight: normal;
}
.placeholder-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #bbb;
    font-weight: bold;
}

/* ===== Product Carousel ===== */
.product-carousel {
    position: relative;
    padding: 0 50px;
}
.product-carousel .swiper-container {
    overflow: hidden;
}
.product-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 20px;
}
.slide-item {
    position: relative;
    text-align: center;
    transition: transform 0.4s ease;
}
.slide-item img,
.slide-item .placeholder-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.slide-item .placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #bbb;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}
.slide-title {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.swiper-slide-active .slide-item {
    transform: scale(1.3);
}
.swiper-slide-active .slide-title {
    opacity: 1;
}
.swiper-btn-prev,
.swiper-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}
.swiper-btn-prev {
    left: 0;
}
.swiper-btn-next {
    right: 0;
}
.swiper-btn-prev::after,
.swiper-btn-next::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 3px solid #1e3a5f;
    border-right: 3px solid #1e3a5f;
    position: absolute;
    top: 50%;
    left: 50%;
}
.swiper-btn-prev::after {
    transform: translate(-30%, -50%) rotate(-135deg);
}
.swiper-btn-next::after {
    transform: translate(-70%, -50%) rotate(45deg);
}
.swiper-btn-prev:hover::after,
.swiper-btn-next:hover::after {
    border-color: #00a79d;
}
.product-carousel .swiper-pagination {
    position: relative;
    margin-top: 16px;
}
.product-carousel .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    opacity: 0.5;
    font-size: 13px;
    color: #333;
    margin: 0 8px;
}
.product-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    color: #00a79d;
    font-weight: 600;
}
@media (max-width: 768px) {
    .product-carousel {
        padding: 0 30px;
    }
    .slide-item img,
    .slide-item .placeholder-img {
        width: 140px;
        height: 140px;
    }
}

/* ===== AI-Ready Banner ===== */
.ai-ready-banner {
    background: #00a79d;
    color: #fff;
    padding: 28px 0;
}
.ai-ready-banner h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.ai-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}
.ai-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    font-weight: 700;
    font-size: 16px;
}
.ai-step p {
    font-size: 14px;
    line-height: 1.5;
}
.ai-step code {
    background: rgba(255,255,255,0.2);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 13px;
}
.ai-note {
    text-align: center;
    font-size: 13px;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .ai-steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .ai-step {
        max-width: 100%;
    }
}

/* ===== News Grid ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: block;
}
.news-card:hover {
    transform: translateY(-3px);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-card-body {
    padding: 16px;
}
.news-date {
    font-size: 13px;
    color: #999;
}
.news-category {
    font-size: 12px;
    background: #00a79d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
}
.news-card-body h3 {
    font-size: 16px;
    margin-top: 8px;
    line-height: 1.4;
}

/* ===== Product Page Layout ===== */
.product-page {
    padding: 0 20px;
    min-height: 80vh;
}
.product-page .menu {
    width: 260px;
    min-width: 260px;
    padding: 20px 0;
}
.product-page .menu .menu-item {
    border-bottom: 1px solid #d0d0d0;
}
.product-page .menu .menu-item li {
    padding: 16px 20px 16px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style-type: circle;
}
.product-page .menu .menu-item li::marker {
    content: "◎ ";
    color: #d0d0d0;
}
.product-page .menu .active li::marker {
    color: #333;
}
.product-page .menu .menu-item a:hover {
    color: #00a79d;
}
.product-page .menu .menu-children {
    padding-bottom: 8px;
}
.product-page .menu .children-item a {
    display: block;
    padding: 8px 20px 8px 60px;
    font-size: 14px;
    color: #555;
    transition: background 0.2s, color 0.2s;
}
.product-page .menu .children-item a:hover,
.product-page .menu .children-item.active a {
    background: #00a79d;
    color: #fff;
}
.product-page .content {
    flex: 1;
    background: #fff;
    margin: 0 0 40px 30px;
    padding: 20px 30px;
    min-height: 80vh;
}

/* Subcategory tabs */
.subcategory-tabs {
    gap: 10px;
    margin-bottom: 20px;
}
.tab-item {
    padding: 8px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}
.tab-item:hover, .tab-item.active {
    background: #00a79d;
    color: #fff;
    border-color: #00a79d;
}

/* ===== Product Filter ===== */
.expandable-form {
    width: 100%;
    margin-bottom: 20px;
}
.form-toggle { display: none; }
.expand-button {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    background: #f5f5f5;
    transition: background 0.3s;
}
.expand-button:hover { background: #e8e8e8; }
.expand-button .top {
    font-weight: 700;
    font-size: 18px;
}
.form-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    border: 1px solid transparent;
}
.form-toggle:checked ~ .form-content {
    max-height: 800px;
    border-color: #ddd;
    padding: 15px;
    margin-top: 5px;
}
.forms {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.forms .item { margin-left: 12px; }
.forms .item .label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}
.form-item-checkbox-flex {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}
.form-item-checkbox {
    appearance: auto !important;
    width: 18px !important;
    height: 18px;
    margin-right: 8px;
}
.query-btns {
    gap: 10px;
    margin-top: 12px;
    justify-content: flex-end;
}
.query-btns .btn {
    padding: 8px 24px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    transition: background 0.2s;
}
.query-btns .btn:hover { background: #00a79d; }
.query-btns .reset { background: #666; }

/* ===== Data Table ===== */
.data-table {
    overflow-x: auto;
    padding: 20px 0;
}
.data-table table {
    width: 100%;
    border-collapse: collapse;
    color: #333;
}
.data-table table thead {
    font-weight: 600;
}
.data-table table thead td {
    border-bottom: 2px solid #333;
    padding: 8px;
    white-space: nowrap;
    text-align: center;
}
.data-table table thead td span:last-child { display: none; }
.data-table table tbody tr:hover {
    background: #f5f5f5;
    cursor: pointer;
}
.data-table table tbody td {
    border-bottom: 1px solid #ddd;
    padding: 8px 6px;
    text-align: center;
}
.data-table table tbody td a {
    text-decoration: underline;
    color: #1e3a5f;
}
.data-table table tbody td a:hover { color: #00a79d; }
.data-table table tbody td img {
    width: 60px;
    margin: 0 auto;
}

/* ===== Product Detail (productInfo) ===== */
.product-info {
    padding: 40px 0 60px;
}
.product-info .info {
    gap: 40px;
    margin-bottom: 40px;
}
.product-img {
    width: 400px;
    min-width: 300px;
}
.info-rht {
    flex: 1;
}
.info-rht .tit {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1e3a5f;
}
.features h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}
.feature-text {
    margin-bottom: 20px;
    line-height: 1.8;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
}
.spec-table th, .spec-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.spec-table th {
    font-weight: 600;
    color: #555;
    width: 150px;
}
.detail-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}
.detail-section h2 {
    font-size: 22px;
    color: #1e3a5f;
    margin-bottom: 20px;
}
.detail-content img {
    max-width: 100%;
}
.power-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}
.spec-item {
    padding: 10px 16px;
    background: #f8f8f8;
    border-radius: 4px;
    font-size: 14px;
}
.related-products {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}
.related-products h2 {
    font-size: 22px;
    color: #1e3a5f;
    margin-bottom: 20px;
}
.related-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.related-card {
    text-align: center;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: border-color 0.2s;
    width: 140px;
}
.related-card:hover {
    border-color: #00a79d;
}
.related-card img {
    margin: 0 auto 8px;
}
.related-card span {
    font-size: 13px;
    font-weight: 500;
}

/* ===== News Detail ===== */
.news-detail {
    padding: 40px 0 60px;
}
.news-header {
    margin-bottom: 30px;
}
.news-header h1 {
    font-size: 28px;
    color: #1e3a5f;
    margin-bottom: 10px;
}
.news-meta .date {
    color: #999;
    font-size: 14px;
}
.news-meta .category {
    font-size: 12px;
    background: #00a79d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 10px;
}
.news-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}
.news-body {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.news-body img { max-width: 100%; height: auto; }
.news-body p { margin-bottom: 1em; }
.news-body h2 { font-size: 1.5em; margin: 1.2em 0 0.6em; }
.news-body h3 { font-size: 1.25em; margin: 1em 0 0.5em; }
.news-body h4 { font-size: 1.1em; margin: 0.8em 0 0.4em; }
.news-body ul, .news-body ol { margin: 0.5em 0 1em 1.5em; }
.news-body ul { list-style: disc; }
.news-body ol { list-style: decimal; }
.news-body li { margin-bottom: 0.3em; }
.news-body blockquote {
    border-left: 3px solid #00a79d;
    padding: 0.5em 1em;
    margin: 1em 0;
    color: #555;
}
.news-body a { color: #007bff; text-decoration: underline; }
.news-body a:hover { color: #00a79d; }
.news-body hr { margin: 1.5em 0; border: none; border-top: 1px solid #ddd; }
.news-nav {
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.nav-link {
    color: #1e3a5f;
    font-weight: 500;
}
.nav-link:hover { color: #00a79d; }

/* ===== About / Capacity ===== */
.about-content, .capacity-content {
    padding: 40px 0 60px;
}
.about-text, .capacity-text {
    margin-bottom: 30px;
    line-height: 1.8;
}
.about-image, .capacity-image {
    margin: 20px 0 30px;
    border-radius: 8px;
    overflow: hidden;
}
.timeline-entry {
    gap: 20px;
    margin-bottom: 20px;
    padding: 16px;
    border-left: 3px solid #00a79d;
}
.timeline-year {
    font-size: 20px;
    font-weight: bold;
    color: #1e3a5f;
    min-width: 80px;
}
.capability-card {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.capability-card h3 {
    font-size: 20px;
    color: #1e3a5f;
    margin-bottom: 12px;
}

/* ===== Contact ===== */
.contact-section {
    padding: 40px 0 60px;
}
.contact-layout {
    gap: 40px;
}
.contact-info {
    flex: 1;
    min-width: 280px;
}
.contact-info .intro {
    margin-bottom: 24px;
}
.info-item {
    margin-bottom: 16px;
}
.info-item strong {
    display: block;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.contact-form-wrap {
    flex: 1.5;
    min-width: 400px;
}
.contactForm {
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contactForm .inner { max-width: 600px; margin: 0 auto; }
.contactForm .form-tit {
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 20px;
}
.contactForm .line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 24px;
}
.contactForm .fg {
    margin-bottom: 20px;
    align-items: flex-start;
}
.contactForm .fg .lbl {
    width: 160px;
    font-size: 15px;
    padding-top: 8px;
}
.contactForm .fg input,
.contactForm .fg textarea,
.contactForm .fg select {
    flex: 1;
    background: #f0f0f0;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}
.contactForm .fg input:focus,
.contactForm .fg textarea:focus {
    border-color: #00a79d;
    outline: none;
}
.contactForm .fg textarea { min-height: 120px; }
.contactForm .t { text-align: right; margin-top: 10px; }
.contactForm button[type="submit"] {
    display: inline-block;
    background: #1e3a5f;
    color: #fff;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    width: auto;
}
.contactForm button[type="submit"]:hover { background: #00a79d; }

/* ===== Applications ===== */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.app-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.app-card:hover { transform: translateY(-3px); }
.app-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.app-name {
    padding: 16px;
}
.app-name h3 {
    font-size: 18px;
    font-weight: 600;
}
.application-detail {
    padding: 40px 0 60px;
}
.app-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}
.app-description, .app-body {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== Resource/Downloads ===== */
.resource-content {
    padding: 40px 0 60px;
}
.resource-body {
    line-height: 1.8;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination-item, .pagination-prev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.2s;
}
.pagination-prev { border-radius: 18px; }
.pagination-item:hover, .pagination-prev:hover {
    background: #00a79d;
    color: #fff;
    border-color: #00a79d;
}
.pagination-item.active {
    background: #00a79d;
    color: #fff;
    border-color: #00a79d;
}

/* ===== Thank You ===== */
.thank-you {
    padding: 60px 0;
    text-align: center;
}
.thank-you a {
    color: #00a79d;
    font-weight: 500;
}

/* ===== Footer ===== */
footer {
    color: #fff;
}
.footer-main {
    background: #1e3a5f;
    padding: 50px 0 40px;
}
.footer-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}
.footer-info > p {
    opacity: 0.7;
    margin-bottom: 20px;
}
.footer-contact p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 4px;
}
.footer-links h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.footer-links a {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 6px;
    transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-bottom {
    background: #007bff;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
}

/* ===== Intro ===== */
.intro {
    margin-bottom: 30px;
    line-height: 1.8;
}
.content-intro {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 6px;
    line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .product-page .menu { display: none; }
    .product-page .content { margin-left: 0; }
    .forms { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 132px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 16px;
    }
    .nav-links.open { display: flex; }
    .mobile-menu-btn { display: flex; }

    .hero-banner { height: 200px; }

    .category-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .news-grid { grid-template-columns: 1fr; }

    .product-info .info { flex-direction: column; }
    .product-img { width: 100%; min-width: 0; }

    .contact-layout { flex-direction: column; }
    .contact-form-wrap { min-width: 0; }
    .contactForm { padding: 20px; }
    .contactForm .fg { flex-direction: column; }
    .contactForm .fg .lbl { width: 100%; padding-top: 0; margin-bottom: 4px; }

    .forms { grid-template-columns: repeat(2, 1fr); }
    .data-table table thead td span:last-child { display: inline; }
    .data-table table thead td span:first-child { display: none; }

    .page-banner h1 { font-size: 24px; }
    .footer-main .flex { flex-direction: column; gap: 30px; }
}
