:root {
    --bg: #ffffff;
    --bg-2: #f7f8fb;
    --bg-3: #eef1f6;
    --text: #0f172a;
    --text-2: #475569;
    --muted: #94a3b8;
    --line: #e2e8f0;
    --line-2: #cbd5e1;
    --primary: #2563eb;
    --primary-d: #1d4ed8;
    --primary-l: #dbeafe;
    --accent: #10b981;
    --warn: #f59e0b;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 4px rgba(15, 23, 42, .05);
    --shadow: 0 4px 14px rgba(15, 23, 42, .08);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, .10);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
}

*, *::before, *::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Arial', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none;
    transition: .2s
}

button {
    font: inherit;
    cursor: pointer
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text)
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -.5px
}

.nav {
    display: flex;
    gap: 6px;
    align-items: center
}

.nav a {
    padding: 9px 14px;
    border-radius: 10px;
    color: var(--text-2);
    font-weight: 500;
    font-size:16px
}

.nav a:hover {
    background: var(--bg-2);
    color: var(--text)
}

.nav a.active {
    color: var(--primary);
    background: var(--primary-l)
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid transparent;
    transition: .2s;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--primary-d);
    box-shadow: var(--shadow)
}

.btn-outline {
    background: #fff;
    color: var(--text);
    border-color: var(--line-2)
}

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

.btn-ghost {
    background: transparent;
    color: var(--text)
}

.btn-ghost:hover {
    background: var(--bg-2)
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15.5px
}

.burger {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    border-radius: 2px;
    transition: .2s
}
.hero {
    padding: 80px 0 70px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-l) 0%, transparent 60%);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative
}

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-l);
    color: var(--primary-d);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.hero h1 {
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    font-weight: 700
}

.hero h1 em {
    font-style: normal;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-lead {
    font-size: 18px;
    color: var(--text-2);
    margin: 0 0 28px;
    max-width: 540px;
    line-height: 1.65
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-3), #fff);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-visual .placeholder {
    padding: 40px;
    text-align: center;
    color: var(--muted)
}

.hero-visual .placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    opacity: .6
}

/* === SECTIONS === */
.section {
    padding: 80px 0
}

.section-tight {
    padding: 60px 0
}

.section-alt {
    background: var(--bg-2)
}

.section-head {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center
}

.section-head h2 {
    font-size: 38px;
    letter-spacing: -1px;
    margin: 14px 0 12px;
    font-weight: 700;
    line-height: 1.2
}

.section-head p {
    color: var(--text-2);
    font-size: 16.5px;
    margin: 0;
    line-height: 1.6
}

.section-head.left {
    text-align: left;
    margin: 0 0 40px
}

/* === FEATURES === */
.features {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: .25s
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-l);
    color: var(--primary-d);
    display: grid;
    place-items: center;
    margin-bottom: 16px
}

.feature-icon svg {
    width: 22px;
    height: 22px
}

.feature-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
    font-weight: 600
}

.feature-card p {
    color: var(--text-2);
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6
}

/* === STATS === */
.stats {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    text-align: center
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 18px
}

.stat-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1.5px;
    line-height: 1
}

.stat-label {
    color: var(--text-2);
    font-size: 14px;
    margin-top: 8px
}

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .25s;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.product-img {
    aspect-ratio: 1;
    background: var(--bg-2);
    overflow: hidden
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s
}

.product-card:hover .product-img img {
    transform: scale(1.05)
}

.product-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-cat {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.product-body h3 {
    font-size: 15.5px;
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.4
}

.product-body h3 a:hover {
    color: var(--primary)
}

.product-price {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin-top: auto
}

.product-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0 0 12px
}

.product-price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 400;
    margin-left: 6px
}

/* === NEWS GRID === */
.news-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px
}

.news-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .25s
}

.news-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.news-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-2)
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s
}

.news-card:hover .news-img img {
    transform: scale(1.05)
}

.news-body {
    padding: 20px
}

.news-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.news-body h3 {
    font-size: 17px;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.35
}

.news-body h3 a:hover {
    color: var(--primary)
}

.news-body p {
    color: var(--text-2);
    font-size: 14px;
    margin: 0;
    line-height: 1.6
}

/* === TESTIMONIALS === */
.testimonial-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px
}

.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px
}

.testimonial-quote {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-l);
    color: var(--primary-d);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0
}

.testimonial-name {
    font-weight: 600;
    font-size: 14.5px
}

.testimonial-role {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 2px
}

.stars {
    color: var(--warn);
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px
}

/* === FAQ === */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .2s
}

.faq-item[open] {
    border-color: var(--primary)
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 15.5px
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
    transition: .2s
}

.faq-item[open] summary::after {
    transform: rotate(45deg)
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--text-2);
    line-height: 1.7;
    font-size: 14.5px
}

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .15) 0%, transparent 60%);
    pointer-events: none
}

.cta-banner h2 {
    font-size: 32px;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -.5px
}

.cta-banner p {
    font-size: 16.5px;
    margin: 0 0 28px;
    opacity: .94;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--primary)
}

.cta-banner .btn-primary:hover {
    background: var(--bg-2)
}

.cta-banner .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .5)
}

.cta-banner .btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    color: #fff
}

/* === PAGE === */
.page {
    padding: 60px 0 80px
}

.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px
}

.breadcrumb a {
    color: var(--text-2)
}

.breadcrumb a:hover {
    color: var(--primary)
}

.page-title {
    font-size: 42px;
    letter-spacing: -1px;
    margin: 0 0 14px;
    font-weight: 700;
    line-height: 1.15
}

.page-desc {
    color: var(--text-2);
    font-size: 16.5px;
    margin: 0 0 36px;
    max-width: 680px
}

/* === FORMS === */
.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.form-group {
    display: block;
    margin-bottom: 14px
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 13.5px;
    color: var(--text);
    margin-bottom: 6px
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 14.5px;
    font-family: inherit;
    background: #fff;
    transition: .2s
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-l)
}

.form-textarea {
    min-height: 120px;
    resize: vertical
}

.required {
    color: var(--danger)
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 50px;
    align-items: start
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-l);
    color: var(--primary-d);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.contact-item-icon svg {
    width: 20px;
    height: 20px
}

.contact-item-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px
}

.contact-item-value {
    font-weight: 600;
    font-size: 15px;
    color: var(--text)
}

.contact-item-value a:hover {
    color: var(--primary)
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px
}

.contact-form h3 {
    font-size: 22px;
    margin: 0 0 6px
}

.contact-form > p {
    color: var(--text-2);
    margin: 0 0 24px;
    font-size: 14.5px
}

.map-wrap {
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line)
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0
}

/* === DETAIL === */
.detail-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 50px;
    align-items: start
}

.detail-img {
    aspect-ratio: 1;
    background: var(--bg-2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line)
}

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

.detail-info h1 {
    font-size: 32px;
    margin: 6px 0 16px;
    letter-spacing: -.5px;
    line-height: 1.2
}

.detail-price {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -.5px
}

.detail-price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 400;
    margin-left: 10px
}

.detail-short {
    color: var(--text-2);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px
}

.detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.detail-body {
    margin-top: 60px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px
}

.detail-body h2 {
    font-size: 22px;
    margin: 0 0 18px
}

.detail-body {
    color: var(--text-2);
    line-height: 1.8
}

.article-body {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-2)
}

.article-body h2, .article-body h3 {
    color: var(--text);
    margin: 1.6em 0 .6em
}

.article-body img {
    border-radius: var(--radius);
    margin: 1.4em 0
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 6px 0 6px 20px;
    color: var(--text);
    font-style: italic;
    margin: 1.4em 0;
    background: var(--bg-2);
    border-radius: 0 10px 10px 0
}

.article-excerpt {
    font-size: 18px;
    color: var(--text);
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
    line-height: 1.6
}

/* === FILTER PILLS === */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px
}

.pill {
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--text);
    font-weight: 500;
    transition: .2s
}

.pill:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.pill.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text)
}

/* === ALERT/EMPTY === */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca
}

.empty-state {
    text-align: center;
    padding: 80px 30px;
    background: var(--bg-2);
    border-radius: var(--radius)
}

.empty-state p {
    color: var(--text-2);
    font-size: 15px;
    margin: 0 0 18px
}

/* === FOOTER === */
.site-footer {
    background: var(--text);
    color: #cbd5e1;
    padding: 60px 0 28px;
    margin-top: 80px
}

.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 14px
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 18px
}

.footer-social {
    display: flex;
    gap: 10px
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    color: #cbd5e1;
    transition: .2s
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff
}

.footer-social svg {
    width: 16px;
    height: 16px
}

.footer-col h4 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-col a, .footer-col span {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    padding: 6px 0;
    line-height: 1.5
}

.footer-col a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: #94a3b8
}

.footer-bottom a {
    color: #cbd5e1
}

.footer-bottom a:hover {
    color: var(--primary)
}

/* === FLOAT BUTTONS === */
.float-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: .25s;
    position: relative
}

.float-btn:hover {
    transform: scale(1.08)
}

.float-btn svg {
    width: 24px;
    height: 24px
}

.float-phone {
    background: var(--accent)
}

.float-zalo {
    background: var(--primary)
}

.float-btn .tip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .2s
}

.float-btn:hover .tip {
    opacity: 1;
    right: 62px
}

.float-phone::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }
    100% {
        transform: scale(1.6);
        opacity: 0
    }
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: .7s
}

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

/* === PAGINATION === */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap
}

.pagination li {
    display: flex
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 14px;
    padding: 0 12px;
    color: var(--text)
}

.pagination svg {
    width: 16px;
    height: 16px
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.pagination .active span, .pagination [aria-current="page"] span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.pagination .disabled span {
    opacity: .4
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .hero {
        padding: 60px 0 50px
    }

    .hero h1 {
        font-size: 40px
    }

    .hero-grid {
        grid-template-columns:1fr;
        gap: 36px
    }

    .hero-visual {
        order: -1
    }

    .section {
        padding: 60px 0
    }

    .section-head h2 {
        font-size: 30px
    }

    .contact-grid, .detail-grid {
        grid-template-columns:1fr;
        gap: 30px
    }

    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 30px
    }

    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 14px 24px;
        display: none;
        box-shadow: var(--shadow);
        max-height: calc(100vh - 64px);
        overflow-y: auto
    }

    .nav.open {
        display: flex
    }

    .nav a {
        padding: 12px 14px;
        border-radius: 8px
    }

    .header-cta .btn-outline {
        display: none
    }

    .burger {
        display: block
    }

    .form-row {
        grid-template-columns:1fr
    }
}

/* Final TNV sizing overrides — kept last to win over inherited widget rules. */
header.site-header{border-bottom-color:#cad5e3}header.site-header .header-inner{min-height:112px;gap:30px}header.site-header .brand-logo{max-height:98px;width:auto}header.site-header .nav{gap:10px}header.site-header .nav a{padding:13px 16px;font-size:15px;font-weight:600}header.site-header .header-actions{gap:16px}header.site-header .header-actions .btn-primary,header.site-header .header-actions>a.btn-primary,.btn{min-height:46px;padding:13px 20px;font-size:15px}.tnv-home{font-size:17px}.tnv-hero p{font-size:17px}.tnv-kicker,.tnv-section-label{font-size:12px}.tnv-button,.tnv-small-button{min-height:48px;padding:15px 23px;font-size:15px}.tnv-about p:not(.tnv-section-label),.tnv-card-copy p,.tnv-news-card p,.tnv-review-card p,.tnv-contact-copy>p:not(.tnv-section-label){font-size:15px}.tnv-card-copy h3,.tnv-news-card h3{font-size:19px}.tnv-card-copy a,.tnv-news-card>a,.tnv-text-link{font-size:14px}.tnv-contact input,.tnv-contact textarea{padding:13px 14px;font-size:14px}.footer-logo{max-height:72px;width:auto}.footer-desc,.footer-links a,.footer-contact-row{font-size:15px}
@media(max-width:800px){header.site-header .header-inner{min-height:82px}header.site-header .brand-logo{max-height:68px}header.site-header .nav{top:82px}header.site-header .header-actions .btn-primary{display:none}}
@media(max-width:560px){header.site-header .header-inner{min-height:70px}header.site-header .brand-logo{max-height:48px}.tnv-hero p,.tnv-about p:not(.tnv-section-label),.tnv-card-copy p,.tnv-news-card p,.tnv-review-card p{font-size:16px}.tnv-button,.tnv-small-button{width:100%;min-height:50px;font-size:16px}.tnv-actions{width:100%}}

/* Footer and logo overrides: deliberately last so legacy theme rules cannot shrink them. */
header.site-header .header-inner{min-height:140px}
header.site-header .brand-logo{width:220px;height:122px;max-height:none;object-fit:contain}
.site-footer{background:#eef3f8;border-top:1px solid #cad7e5;color:#17365e}
.site-footer .footer-grid{grid-template-columns:minmax(340px,1.7fr) repeat(2,minmax(175px,1fr));gap:48px;padding:46px 0 34px;align-items:start}
.site-footer .footer-brand-col{padding-right:38px;border-right:1px solid #cad7e5}
.site-footer .footer-brand{display:inline-flex;width:230px;height:142px;align-items:center;justify-content:center;padding:10px 14px;background:#fff;border:1px solid #d2deea;border-radius:4px;box-shadow:0 7px 18px rgba(25,62,108,.10)}
.site-footer .footer-logo{width:200px;height:122px;max-height:none;object-fit:contain}
.site-footer .footer-title{color:#102f59;font-size:17px}
.site-footer .footer-desc,.site-footer .footer-links a,.site-footer .footer-contact-row,.site-footer .footer-contact-row a,.site-footer .footer-editor-content,.site-footer .contact-links{color:#405b7c}
.site-footer .footer-links a:hover,.site-footer .footer-contact-row a:hover{color:#07549f}
.site-footer .footer-contact-row svg{color:#07549f}
.site-footer .footer-bottom{background:#dfe8f1;border-top:1px solid #cad7e5;color:#405b7c}
.site-footer .footer-bottom span{color:inherit}
@media(max-width:800px){header.site-header .header-inner{min-height:98px}header.site-header .brand-logo{width:165px;height:82px}header.site-header .nav{top:98px}.site-footer .footer-grid{grid-template-columns:1fr 1fr;gap:32px}.site-footer .footer-brand-col{grid-column:1/-1;padding:0 0 28px;border-right:0;border-bottom:1px solid #cad7e5}.site-footer .footer-brand{width:210px;height:130px}.site-footer .footer-logo{width:182px;height:110px}}
@media(max-width:560px){header.site-header .header-inner{min-height:82px}header.site-header .brand-logo{width:130px;height:62px}.site-footer .footer-grid{grid-template-columns:1fr;gap:26px;padding:34px 0 28px}.site-footer .footer-brand-col{grid-column:auto}.site-footer .footer-brand{width:190px;height:118px}.site-footer .footer-logo{width:165px;height:96px}}

/* Final navigation and controls. */
.btn,.tnv-button,.tnv-small-button,.tnv-about-cta-button{border-radius:6px}
header.site-header .header-actions .btn-primary{border-radius:10px}
.tnv-hero-media{background:none}
.tnv-hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .7s ease;background:linear-gradient(90deg,rgba(244,248,252,.98) 4%,rgba(233,241,249,.86) 43%,rgba(21,76,137,.34)),url('../images/xingfa-guangdong-banner.jpg') center/cover}
.tnv-hero-slide-alt{background-position:right center;filter:saturate(.82) contrast(1.06)}
.tnv-hero-slide:nth-child(1){background-image:linear-gradient(90deg,rgba(244,248,252,.72) 4%,rgba(233,241,249,.42) 43%,rgba(21,76,137,.18)),url('../images/xingfa-composite-panel.jpg')}
.tnv-hero-slide:nth-child(2){background-image:linear-gradient(90deg,rgba(244,248,252,.72) 4%,rgba(233,241,249,.42) 43%,rgba(21,76,137,.18)),url('../images/xingfa-space-house.jpg')}
.tnv-hero-slide:nth-child(3){background-image:linear-gradient(90deg,rgba(244,248,252,.72) 4%,rgba(233,241,249,.42) 43%,rgba(21,76,137,.18)),url('../images/xingfa-curtain-wall-cclass.jpg')}
.tnv-hero-slide.is-active{opacity:1}
.nav-menu-trigger{display:inline-flex;align-items:center;gap:4px;padding:13px 16px;border:0;background:transparent;color:inherit;font:inherit;font-size:15px;font-weight:600;cursor:pointer}
.nav-menu-trigger:hover,.nav-item-products.is-open .nav-menu-trigger{color:var(--primary)}
.nav-item-products .nav-dropdown{min-width:290px}
.nav-item-products.is-open .nav-dropdown,.nav-item-products:focus-within .nav-dropdown{opacity:1!important;visibility:visible!important;transform:translateY(0)!important}
.nav-product-dropdown a{white-space:normal;line-height:1.4}
.nav-product-dropdown .nav-product-all{margin-top:5px;border-top:1px solid var(--line);border-radius:0;color:var(--primary);font-weight:700}
.tnv-carousel-button{width:auto;min-width:72px;height:44px;padding:0 13px;border-radius:6px;font-size:13px;font-weight:700}
@media(max-width:800px){header.site-header .nav{top:98px}.nav-menu-trigger{width:100%;justify-content:space-between;padding:13px 0}.nav-item-products .nav-dropdown{position:static;display:none;min-width:0;margin:0;padding:4px 0;box-shadow:none;border:0;transform:none}.nav-item-products.is-open .nav-dropdown{display:block}.tnv-carousel-button{min-width:58px}}
@media(max-width:560px){header.site-header .nav{top:82px}.tnv-carousel-button{min-width:48px;padding:0 8px;font-size:12px}}
@media(prefers-reduced-motion:reduce){.tnv-hero-slide{transition:none}}

/* About page: navy industrial story layout. */
.tnv-about-page{color:var(--tnv-ink);background:#fff}.tnv-about-hero{background:linear-gradient(120deg,#061b42 0%,#063476 58%,#082656 100%);color:#fff;overflow:hidden}.tnv-about-hero-grid{min-height:390px;display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;padding-top:46px;padding-bottom:46px}.tnv-about-hero-copy{max-width:520px}.tnv-about-eyebrow{margin:0 0 14px;font-size:12px;font-weight:700;letter-spacing:.11em;color:#1f5fae}.tnv-about-hero .tnv-about-eyebrow{color:#a8d0ff}.tnv-about-hero h1,.tnv-about-hero h2{margin:0;font-size:clamp(32px,4vw,52px);line-height:1.08;color:#fff}.tnv-about-hero-copy>p:not(.tnv-about-eyebrow){margin:20px 0 0;color:#d8e5f5;max-width:490px;line-height:1.75}.tnv-about-metrics{display:flex;gap:0;margin-top:30px}.tnv-about-metrics div{display:grid;gap:3px;min-width:126px;padding:0 22px;border-left:1px solid rgba(215,231,249,.6)}.tnv-about-metrics div:first-child{padding-left:0;border-left:0}.tnv-about-metrics strong{font-size:29px;line-height:1}.tnv-about-metrics span{font-size:12px;color:#c7d8ed}.tnv-about-hero-image{justify-self:end;width:min(100%,400px);padding:7px;background:rgba(151,195,242,.22);border:1px solid rgba(203,227,252,.5);box-shadow:0 18px 35px rgba(0,8,29,.36)}.tnv-about-hero-image img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover}.tnv-about-section{padding:72px 0}.tnv-about-section-muted{background:#f3f6fa}.tnv-about-heading{max-width:670px;margin:0 auto 34px;text-align:center}.tnv-about-heading h2,.tnv-about-assurance h2,.tnv-about-cta h2{margin:0;color:#0a2f61;font-size:clamp(25px,3vw,36px);line-height:1.2}.tnv-about-heading p{margin:13px auto 0;color:#52637b;line-height:1.7;max-width:610px}.tnv-about-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.tnv-about-card{min-height:190px;padding:24px;background:#fff;border:1px solid #e0e7ef;box-shadow:0 8px 20px rgba(13,44,84,.04)}.tnv-about-card h3{margin:16px 0 9px;color:#102f59;font-size:17px;line-height:1.35}.tnv-about-card p{margin:0;color:#596a82;font-size:14px;line-height:1.65}.tnv-about-icon{display:grid;place-items:center;width:32px;height:32px;border:1px solid #d4e1ef;background:#f4f8fc;color:#0b4b93;font-size:16px}.tnv-about-card-compact{min-height:136px;display:flex;gap:14px;padding:21px}.tnv-about-card-compact h3{margin:0 0 7px;font-size:16px}.tnv-about-assurance{display:grid;grid-template-columns:1.2fr .8fr;gap:58px;align-items:center}.tnv-about-assurance>div>p:not(.tnv-about-eyebrow){max-width:620px;margin:14px 0;color:#52637b;line-height:1.75}.tnv-about-assurance ul{display:grid;gap:10px;margin:24px 0 0;padding:0;list-style:none;color:#183e70;font-size:14px;font-weight:600}.tnv-about-assurance li{padding-left:20px;position:relative}.tnv-about-assurance li:before{content:'✓';position:absolute;left:0;color:#0d65b6}.tnv-about-badges{display:grid;grid-template-columns:1fr 1fr;gap:16px}.tnv-about-badges>div{min-height:150px;display:flex;flex-direction:column;gap:8px;justify-content:center;padding:20px;background:#fff;border:1px solid #dfe7f0;box-shadow:0 8px 22px rgba(12,42,81,.07)}.tnv-about-badges span{font-size:24px;color:#0d4d98}.tnv-about-badges strong{font-size:15px;color:#12345d}.tnv-about-badges small{color:#66768d;line-height:1.5}.tnv-about-cta-wrap{padding:0 0 74px}.tnv-about-cta{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:34px 38px;background:#062b62;color:#fff;box-shadow:0 14px 25px rgba(5,35,81,.18)}.tnv-about-cta h2{color:#fff;font-size:29px}.tnv-about-cta p{margin:8px 0 0;color:#cbdcf0}.tnv-about-cta-button{flex:none;background:#fff;color:#082f63;border-color:#fff}.tnv-about-cta-button:hover{background:#e6f0fb;color:#082f63}@media(max-width:800px){.tnv-about-hero-grid,.tnv-about-assurance{grid-template-columns:1fr;gap:34px}.tnv-about-hero-image{justify-self:start;max-width:380px}.tnv-about-card-grid{grid-template-columns:1fr 1fr}.tnv-about-card-grid .tnv-about-card:last-child{grid-column:1/-1}.tnv-about-cta{align-items:flex-start;flex-direction:column}}@media(max-width:560px){.tnv-about-hero-grid{min-height:auto;padding-top:48px;padding-bottom:48px}.tnv-about-hero h1{font-size:34px}.tnv-about-metrics{margin-top:26px}.tnv-about-metrics div{min-width:0;padding:0 15px}.tnv-about-section{padding:52px 0}.tnv-about-card-grid,.tnv-about-badges{grid-template-columns:1fr}.tnv-about-card-grid .tnv-about-card:last-child{grid-column:auto}.tnv-about-cta{padding:28px 24px}.tnv-about-cta-button{width:100%;justify-content:center}}

/* Final footer contrast overrides. */
header.site-header .header-inner{min-height:132px}header.site-header .brand-logo{max-height:118px}.site-footer{background:#edf2f7;border-top:1px solid #cfdae7;color:#16345f}.site-footer .footer-grid{grid-template-columns:minmax(300px,1.55fr) repeat(2,minmax(160px,1fr));gap:52px;padding:56px 0 42px}.site-footer .footer-brand-col{padding-right:42px;border-right:1px solid #cbd7e5}.site-footer .footer-brand{display:inline-flex;align-items:center;padding:10px 16px;background:#fff;border:1px solid #d5e0ec;box-shadow:0 7px 20px rgba(25,62,108,.1)}.site-footer .footer-logo{max-height:118px;width:auto}.site-footer .footer-title{color:#102e56;font-size:17px}.site-footer .footer-desc,.site-footer .footer-links a,.site-footer .footer-contact-row,.site-footer .footer-contact-row a,.site-footer .footer-editor-content,.site-footer .contact-links{color:#405571}.site-footer .footer-links a:hover,.site-footer .footer-contact-row a:hover{color:#0a4c98}.site-footer .footer-contact-row svg{color:#0a4c98}.site-footer .footer-bottom{background:#dfe8f2;color:#405571;border-top:1px solid #cbd7e5}.site-footer .footer-bottom span{color:inherit}@media(max-width:800px){header.site-header .header-inner{min-height:94px}header.site-header .brand-logo{max-height:78px}.site-footer .footer-grid{grid-template-columns:1fr 1fr;gap:34px}.site-footer .footer-brand-col{grid-column:1/-1;border-right:0;border-bottom:1px solid #cbd7e5;padding:0 0 30px}}@media(max-width:560px){header.site-header .header-inner{min-height:82px}header.site-header .brand-logo{max-height:66px}.site-footer .footer-grid{grid-template-columns:1fr;gap:28px}.site-footer .footer-brand-col{grid-column:auto}.site-footer .footer-logo{max-height:92px}}

/* Footer contrast and enlarged brand mark. */
header.site-header .header-inner{min-height:132px}header.site-header .brand-logo{max-height:118px}.site-footer{background:#edf2f7;border-top:1px solid #cfdae7;color:#16345f}.site-footer .footer-grid{grid-template-columns:minmax(300px,1.55fr) repeat(2,minmax(160px,1fr));gap:52px;padding:56px 0 42px}.site-footer .footer-brand-col{padding-right:42px;border-right:1px solid #cbd7e5}.site-footer .footer-brand{display:inline-flex;align-items:center;padding:10px 16px;background:#fff;border:1px solid #d5e0ec;box-shadow:0 7px 20px rgba(25,62,108,.1)}.site-footer .footer-logo{max-height:118px;width:auto}.site-footer .footer-title{color:#102e56;font-size:17px}.site-footer .footer-desc,.site-footer .footer-links a,.site-footer .footer-contact-row,.site-footer .footer-contact-row a,.site-footer .footer-editor-content,.site-footer .contact-links{color:#405571}.site-footer .footer-links a:hover,.site-footer .footer-contact-row a:hover{color:#0a4c98}.site-footer .footer-contact-row svg{color:#0a4c98}.site-footer .footer-bottom{background:#dfe8f2;color:#405571;border-top:1px solid #cbd7e5}.site-footer .footer-bottom span{color:inherit}@media(max-width:800px){header.site-header .header-inner{min-height:94px}header.site-header .brand-logo{max-height:78px}.site-footer .footer-grid{grid-template-columns:1fr 1fr;gap:34px}.site-footer .footer-brand-col{grid-column:1/-1;border-right:0;border-bottom:1px solid #cbd7e5;padding:0 0 30px}}@media(max-width:560px){header.site-header .header-inner{min-height:82px}header.site-header .brand-logo{max-height:66px}.site-footer .footer-grid{grid-template-columns:1fr;gap:28px}.site-footer .footer-brand-col{grid-column:auto}.site-footer .footer-logo{max-height:92px}}

.tnv-product-carousel{display:grid;grid-template-columns:52px minmax(0,1fr) 52px;gap:16px;align-items:center}.tnv-product-viewport{overflow:hidden}.tnv-product-carousel .tnv-product-grid{display:flex;gap:19px;transition:transform .28s ease;will-change:transform}.tnv-product-carousel .tnv-product-card{flex:0 0 calc((100% - 38px)/3)}.tnv-carousel-button{width:52px;height:52px;border:1px solid rgba(255,255,255,.55);border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:26px;line-height:1;cursor:pointer;transition:background .2s,color .2s}.tnv-carousel-button:hover:not(:disabled){background:#fff;color:var(--tnv-navy)}.tnv-carousel-button:focus-visible{outline:3px solid #fff;outline-offset:3px}.tnv-carousel-button:disabled{opacity:.35;cursor:not-allowed}@media(max-width:800px){.tnv-product-carousel .tnv-product-card{flex-basis:calc((100% - 19px)/2)}}@media(max-width:560px){.tnv-product-carousel{grid-template-columns:42px minmax(0,1fr) 42px;gap:8px}.tnv-product-carousel .tnv-product-card{flex-basis:100%}.tnv-carousel-button{width:42px;height:42px;font-size:22px}}
.tnv-product-carousel .tnv-carousel-button{width:48px;min-width:48px;height:48px;padding:0;font-size:24px}
@media(prefers-reduced-motion:reduce){.tnv-product-carousel .tnv-product-grid{transition:none}}

@media (max-width: 560px) {
    .container {
        padding: 0 18px
    }

    .hero h1 {
        font-size: 32px
    }

    .hero-lead {
        font-size: 16px
    }

    .section-head h2 {
        font-size: 24px
    }

    .page-title {
        font-size: 30px
    }

    .cta-banner {
        padding: 36px 24px
    }

    .cta-banner h2 {
        font-size: 24px
    }

    .footer-grid {
        grid-template-columns:1fr;
        gap: 30px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}

/* Readable Tan Ngoc Vinh scale: logo, header and interactive controls. */
.site-header{border-bottom-color:#cad5e3}.header-inner{min-height:112px;gap:30px}.brand-logo{max-height:98px;width:auto}.nav{gap:10px}.nav a{padding:13px 16px;font-size:15px;font-weight:600}.header-actions{gap:16px}.header-actions .btn-primary,.header-actions>a.btn-primary,.btn{min-height:46px;padding:13px 20px;font-size:15px}.tnv-home{font-size:17px}.tnv-hero p{font-size:17px}.tnv-kicker,.tnv-section-label{font-size:12px}.tnv-button,.tnv-small-button{min-height:48px;padding:15px 23px;font-size:15px}.tnv-about p:not(.tnv-section-label),.tnv-card-copy p,.tnv-news-card p,.tnv-review-card p,.tnv-contact-copy>p:not(.tnv-section-label){font-size:15px}.tnv-card-copy h3,.tnv-news-card h3{font-size:19px}.tnv-card-copy a,.tnv-news-card>a,.tnv-text-link{font-size:14px}.tnv-contact input,.tnv-contact textarea{padding:13px 14px;font-size:14px}.footer-logo{max-height:72px;width:auto}.footer-desc,.footer-links a,.footer-contact-row{font-size:15px}
@media(max-width:800px){.header-inner{min-height:82px}.brand-logo{max-height:68px}.nav{top:82px}.header-actions .btn-primary{display:none}}
@media(max-width:560px){.header-inner{min-height:70px}.brand-logo{max-height:48px}.tnv-hero p,.tnv-about p:not(.tnv-section-label),.tnv-card-copy p,.tnv-news-card p,.tnv-review-card p{font-size:16px}.tnv-button,.tnv-small-button{width:100%;min-height:50px;font-size:16px}.tnv-actions{width:100%}}

/* ════════════════════════════════════════════════════════
   GLOBAL WIDGET STYLES — homepage is zone-driven (renders
   public/admin-assets/widgets/*). Maps widget markup onto theme tokens.
   ════════════════════════════════════════════════════════ */
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px
}

.section-head h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px
}

.section-sub {
    color: var(--text-2);
    font-size: 16px;
    margin: 0 auto
}

.subline {
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    margin: 14px auto 0
}

.section-head-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap
}

.section-head-row h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0
}

/* slider/slider_1 */
.widget-slider {
    position: relative;
    overflow: hidden
}

.widget-slider .slider-track {
    position: relative;
    height: clamp(360px, 52vw, 560px)
}

.widget-slider .slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center
}

.widget-slider .slider-slide.active {
    opacity: 1
}

.widget-slider .slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .62) 0%, rgba(15, 23, 42, .30) 55%, rgba(15, 23, 42, 0) 100%)
}

.widget-slider .slider-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    color: #fff
}

.widget-slider .slider-brand {
    display: block;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    max-width: 680px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3)
}

.widget-slider .slider-sub {
    margin-top: 14px;
    font-size: clamp(15px, 1.6vw, 19px);
    max-width: 560px;
    opacity: .95
}

.widget-slider .slider-link {
    position: absolute;
    inset: 0;
    z-index: 1
}

.widget-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .85);
    color: var(--text);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow)
}

.widget-slider .slider-nav.prev {
    left: 20px
}

.widget-slider .slider-nav.next {
    right: 20px
}

.widget-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 9px
}

.widget-slider .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    border: none;
    padding: 0
}

.widget-slider .slider-dot.active {
    background: #fff;
    width: 26px;
    border-radius: 6px
}

/* service-section/service_section_1 */
.satc-solutions {
    padding: 72px 0;
    background: var(--bg)
}

.solutions-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px
}

.solution-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.solution-card .img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-3)
}

.solution-card .body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0
}

.solution-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.solution-card ul li {
    position: relative;
    padding-left: 20px;
    color: var(--text-2);
    font-size: 14px
}

.solution-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary)
}

.solution-card .more {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px
}

/* product-group / post-group (projects-strip) */
.projects-strip {
    padding: 72px 0
}

.projects-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    position: relative
}

.project-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.project-card .img, .project-card .project-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-3)
}

.project-card .body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.project-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4
}

.project-card .badge {
    align-self: flex-start;
    background: var(--primary-l);
    color: var(--primary-d);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px
}

.proj-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.proj-nav:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

/* newsletter/newsletter_1 (cta-band) */
.cta-band {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
    color: #fff
}

.cta-band-grid {
    display: grid;
    grid-template-columns:1.1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

.cta-band h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff
}

.cta-band p {
    opacity: .92;
    margin: 0 0 18px
}

.cta-band .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.cta-band .badges span {
    background: rgba(255, 255, 255, .18);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500
}

.cta-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cta-form .row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.cta-form .form-input, .cta-form .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font: inherit;
    background: #fff;
    color: var(--text)
}

.cta-form .form-textarea {
    min-height: 90px;
    resize: vertical
}

.cta-form .form-msg {
    font-size: 13px
}

/* footer widgets: menu / social-links / editor */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    color: rgba(255, 255, 255, .72);
    font-size: 14px
}

.footer-links a:hover {
    color: #fff
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.social-btn:hover {
    background: var(--primary)
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.footer-editor-content, .contact-links {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.8
}

.footer-editor-content a, .contact-links a {
    color: rgba(255, 255, 255, .72)
}

.footer-editor-content a:hover {
    color: #fff
}

/* footer contact (theme partial) */
.footer-brand-col .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px
}

.footer-contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, .72)
}

.footer-contact-row svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary-l)
}

.footer-contact-row a {
    color: rgba(255, 255, 255, .72)
}

.footer-logo {
    max-height: 40px;
    width: auto
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.brand-name {
    font-weight: 700;
    font-size: 20px
}

.brand-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted)
}

.brand-logo {
    max-height: 46px;
    width: auto
}

/* header nav dropdown + hotline (theme partial) */
.nav-item {
    position: relative
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
    z-index: 60
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav-dropdown a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 8px
}

.nav-dropdown a:hover {
    background: var(--bg-2);
    color: var(--primary)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.hotline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary)
}

/* home sidebar layout */
.home-with-sidebar {
    display: grid;
    grid-template-columns:1fr 320px;
    gap: 32px;
    padding: 40px 24px
}

@media (max-width: 960px) {
    .cta-band-grid {
        grid-template-columns:1fr
    }

    .home-with-sidebar {
        grid-template-columns:1fr
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 14px
    }
}

/* Tan Ngoc Vinh — industrial landing page */
:root {
    --tnv-navy: #062b62;
    --tnv-blue: #0d4d98;
    --tnv-ink: #13294b;
    --tnv-cloud: #f4f6fa;
    --tnv-line: #d9e0e9
}

.tnv-home {
    color: var(--tnv-ink);
    overflow: hidden
}

.tnv-home h1, .tnv-home h2, .tnv-home h3, .tnv-home p {
    margin-top: 0
}

.tnv-hero {
    min-height: 530px;
    position: relative;
    display: grid;
    align-items: center;
    background: #eaf0f8
}

.tnv-hero-media {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(244, 248, 252, .98) 4%, rgba(233, 241, 249, .86) 43%, rgba(21, 76, 137, .34)), url('../images/xingfa-guangdong-banner.jpg') center/cover
}

.tnv-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 58px;
    padding-bottom: 58px
}

.tnv-kicker, .tnv-section-label {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: normal;
    color: #345b8d
}

.tnv-kicker {
    display: inline-block;
    padding: 7px 10px;
    border: 1px solid #bdcad8;
    background: rgba(255, 255, 255, .56);
    margin-bottom: 16px
}

.tnv-hero h1 {
    max-width: 630px;
    font-size: clamp(34px, 4.8vw, 64px);
    letter-spacing: -.065em;
    line-height: 1.01;
    margin-bottom: 18px
}

.tnv-hero p {
    max-width: 500px;
    font-size: 15px;
    color: #3d516d;
    line-height: 1.72
}

.tnv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px
}

.tnv-button, .tnv-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    padding: 12px 17px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: .2s
}

.tnv-button:hover, .tnv-small-button:hover {
    transform: translateY(-2px)
}

.tnv-button-primary {
    background: var(--tnv-navy);
    color: #fff
}

.tnv-button-light {
    background: #fff;
    color: var(--tnv-navy);
    border-color: #cbd5e1
}

.tnv-about {
    padding: 92px 0
}

.tnv-about-grid {
    display: grid;
    grid-template-columns:1fr .95fr;
    gap: 70px;
    align-items: center
}

.tnv-about h2 {
    max-width: 475px;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.045em
}

.tnv-about p:not(.tnv-section-label) {
    max-width: 525px;
    color: #4e5b70;
    font-size: 14px;
    line-height: 1.76
}

.tnv-text-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--tnv-navy)
}

.tnv-text-link span {
    margin-left: 6px
}

.tnv-about-media {
    min-height: 345px;
    background: linear-gradient(135deg, rgba(235, 239, 245, .45), rgba(8, 26, 54, .48)), url('../images/xingfa-factory.jpg') center/cover;
    border-radius: 5px;
    box-shadow: 0 20px 25px rgba(5, 28, 65, .18)
}

.tnv-products {
    padding: 78px 0;
    background: linear-gradient(125deg, #062354, #093e83 58%, #062555);
    color: #fff
}

.tnv-section-heading {
    text-align: center;
    margin-bottom: 34px
}

.tnv-section-heading p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    margin-bottom: 8px;
    color: #60769a
}

.tnv-section-heading h2 {
    font-size: clamp(27px, 3.3vw, 39px);
    letter-spacing: -.045em;
    line-height: 1.12;
    margin-bottom: 0
}

.tnv-section-heading-light p {
    color: #b7c9e5
}

.tnv-product-grid, .tnv-news-grid, .tnv-review-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 19px
}

.tnv-product-card {
    min-width: 0;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    overflow: hidden
}

.tnv-card-media {
    height: 180px;
    background: #536170 url('../images/xingfa-guangdong-banner.jpg') center/cover;
    background-blend-mode: multiply;
    filter: saturate(.55)
}

.tnv-card-media img { width: 100%; height: 100%; object-fit: cover; }

.tnv-card-copy {
    padding: 18px 18px 20px
}

.tnv-card-copy h3 {
    font-size: 16px;
    margin-bottom: 9px
}

.tnv-card-copy p {
    color: #d3ddec;
    font-size: 13px;
    line-height: 1.6;
    min-height: 63px
}

.tnv-card-copy a {
    font-size: 12px;
    font-weight: 700;
    color: #fff
}

.tnv-center {
    text-align: center;
    margin-top: 28px
}

.tnv-news {
    padding: 78px 0;
    background: #f7f8fb
}

.tnv-row-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 29px
}

.tnv-row-heading h2 {
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -.045em;
    margin-bottom: 0
}

.tnv-small-button {
    border-color: #9eafc6;
    color: var(--tnv-navy);
    padding: 10px 14px;
    white-space: nowrap
}

.tnv-news-card {
    min-width: 0
}

.tnv-news-media {
    height: 185px;
    background: #343b47 url('../images/xingfa-coating-line.jpg') center/cover;
    background-blend-mode: multiply;
    border-radius: 4px;
    filter: saturate(.55)
}
.tnv-news-media{display:block;overflow:hidden}.tnv-news-media img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.tnv-news-card:hover .tnv-news-media img{transform:scale(1.04)}.tnv-news-empty{grid-column:1/-1;padding:34px;border:1px solid #d5e0ec;background:#fff;color:#63758e;text-align:center}

/* Homepage events: populated from the CMS category named "Sự kiện". */
.tnv-events{padding:72px 0;background:#f3f3f6}
.tnv-events-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.tnv-event-card{display:grid;grid-template-columns:minmax(120px,.78fr) 1fr;min-height:188px;border:1px solid #c2c6d3;border-radius:4px;overflow:hidden;background:#fff;transition:border-color .2s ease,transform .2s ease}
.tnv-event-card:hover{border-color:#737781;transform:translateY(-2px)}
.tnv-event-media{display:block;min-height:100%;background:#e2e2e5}.tnv-event-media img{width:100%;height:100%;object-fit:cover}
.tnv-event-copy{display:flex;min-width:0;flex-direction:column;align-items:flex-start;padding:18px}
.tnv-event-copy time{margin-bottom:8px;color:#434750;font:500 11px/16px Arial,sans-serif;letter-spacing:.04em}
.tnv-event-copy h3{margin:0 0 8px;font-size:16px;font-weight:600;line-height:1.4}.tnv-event-copy h3 a{color:#1a1c1e}
.tnv-event-copy p{margin:0 0 12px;color:#434750;font-size:13px;line-height:1.55}.tnv-event-copy .tnv-text-link{margin-top:auto;font-size:13px}
.tnv-events-empty{grid-column:1/-1;padding:32px;border:1px dashed #c2c6d3;color:#434750;background:#fff}
@media(max-width:960px){.tnv-events-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.tnv-events{padding:48px 0}.tnv-events-grid{grid-template-columns:1fr;gap:12px}.tnv-event-card{grid-template-columns:110px 1fr;min-height:156px}.tnv-event-copy{padding:14px}.tnv-event-copy h3{font-size:14px}.tnv-event-copy p{display:none}}

.tnv-news-card time {
    display: block;
    margin-top: 13px;
    font-size: 11px;
    color: #77869b
}

.tnv-news-card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin: 6px 0
}

.tnv-news-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #5c6a7e
}

.tnv-news-card > a {
    font-size: 12px;
    font-weight: 700;
    color: var(--tnv-navy)
}

/* Raised article cards for the homepage news section. */
.tnv-home .tnv-news-card {
    min-width: 0;
    overflow: hidden;
    padding: 0 18px 18px;
    border: 1px solid #d5e0ec;
    border-radius: 4px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease;
}

.tnv-home .tnv-news-card:hover {
    border-color: #9eafc6;
    transform: translateY(-2px);
}

.tnv-home .tnv-news-card .tnv-news-media {
    margin: 0 -18px;
    border-radius: 0;
}

.tnv-home .tnv-news-card h3 { font-weight: 600; }
.tnv-home .tnv-news-card > a { font-weight: 600; }

.tnv-news-page .tnv-news-list-card {
    overflow: hidden;
    border: 1px solid #dce4ee;
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease;
}

.tnv-news-page .tnv-news-list-card:hover { border-color: #9fb8d5; transform: translateY(-2px); }
.tnv-news-page .tnv-news-list-card > div { padding: 18px; }

.tnv-reviews {
    padding: 70px 0;
    background: #eef1f6
}

.tnv-review-card {
    display: flex;
    min-width: 0;
    min-height: 205px;
    flex-direction: column;
    padding: 22px;
    background: #fff;
    border: 1px solid #dfe5ed;
    border-radius: 4px
}

.tnv-stars {
    font-size: 13px;
    letter-spacing: 2px;
    color: #0c4385
}

.tnv-review-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #536177;
    flex: 1;
    margin: 12px 0
}

.tnv-review-card strong {
    font-size: 12px
}

.tnv-review-card span {
    font-size: 11px;
    color: #8491a3;
    margin-top: 3px
}

.tnv-review-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.tnv-google-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: none;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #8fa8c6;
    border-radius: 8px;
    background: #fff;
    color: #0a3e81;
    font-size: 14px;
    font-weight: 600;
}

.tnv-google-review:hover { border-color: #0a3e81; background: #f7faff; }
.tnv-google-review span { font-size: 17px; line-height: 1; }
.tnv-review-empty { grid-column: 1 / -1; padding: 30px; border: 1px dashed #c8d4e1; background: #fff; color: #63758e; text-align: center; }

@media (max-width: 560px) {
    .tnv-review-heading { align-items: stretch; flex-direction: column; }
    .tnv-google-review { justify-content: center; }
}

.tnv-contact {
    padding: 76px 0;
    background: #fff
}

.tnv-contact-box {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 30px;
    padding: 26px;
    border: 1px solid #dfe5ed;
    box-shadow: 0 8px 24px rgba(12, 43, 91, .08)
}

.tnv-contact-copy h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -.04em;
    margin-bottom: 10px
}

.tnv-contact-copy > p:not(.tnv-section-label) {
    font-size: 13px;
    color: #59677c
}

.tnv-contact form {
    margin-top: 21px
}

.tnv-form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 9px
}

.tnv-contact input, .tnv-contact textarea {
    display: block;
    width: 100%;
    border: 1px solid #d7dee8;
    background: #fafbfd;
    margin-bottom: 9px;
    padding: 11px 12px;
    font: inherit;
    font-size: 12px;
    color: var(--tnv-ink)
}

.tnv-contact textarea {
    min-height: 88px;
    resize: vertical
}

.tnv-contact button {
    cursor: pointer
}

.tnv-map {
    width: 100%;
    min-height: 375px;
    border: 0;
    background: #dbe9f0
}

.site-header {
    position: relative;
    background: #fff;
    backdrop-filter: none
}

.header-inner {
    min-height: 70px;
    padding: 0
}

.brand-mark {
    display: none
}

.brand-name {
    color: var(--tnv-navy);
    font-size: 17px;
    letter-spacing: .04em
}

.brand-tag {
    display: none
}

.nav a {
    font-size: 12px;
    color: #33455e
}

.header-actions .hotline {
    display: none
}

.header-actions .btn-primary, .header-actions > a.btn-primary {
    padding: 10px 14px;
    border-radius: 2px;
    background: var(--tnv-navy);
    font-size: 12px
}

.site-footer {
    background: #131a27
}

.footer-grid {
    padding-top: 50px;
    padding-bottom: 40px
}

.footer-brand {
    color: #fff
}

.footer-desc {
    font-size: 13px
}

@media (max-width: 800px) {
    .tnv-hero {
        min-height: 490px
    }

    .tnv-about-grid, .tnv-contact-box {
        grid-template-columns:1fr;
        gap: 35px
    }

    .tnv-about-media {
        min-height: 280px;
        order: -1
    }

    .tnv-product-grid, .tnv-news-grid, .tnv-review-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .tnv-map {
        min-height: 300px
    }

    .nav {
        top: 70px
    }

    .header-actions .btn-primary {
        display: none
    }
}

@media (max-width: 560px) {
    .tnv-hero-inner {
        padding-top: 54px;
        padding-bottom: 54px
    }

    .tnv-hero h1 {
        font-size: 36px
    }

    .tnv-about, .tnv-products, .tnv-news, .tnv-reviews, .tnv-contact {
        padding: 56px 0
    }

    .tnv-product-grid, .tnv-news-grid, .tnv-review-grid, .tnv-form-row {
        grid-template-columns:1fr
    }

    .tnv-card-media {
        height: 190px
    }

    .tnv-row-heading {
        align-items: start;
        flex-direction: column
    }

    .tnv-contact-box {
        padding: 18px
    }

    .tnv-map {
        min-height: 255px
    }
}

/* Final TNV sizing overrides — must remain after every inherited rule. */
header.site-header{border-bottom-color:#cad5e3}header.site-header .header-inner{min-height:112px;gap:30px}header.site-header .brand-logo{max-height:98px;width:auto}header.site-header .nav{gap:10px}header.site-header .nav a{padding:13px 16px;font-size:15px;font-weight:600}header.site-header .header-actions{gap:16px}header.site-header .header-actions .btn-primary,header.site-header .header-actions>a.btn-primary,.btn{min-height:46px;padding:13px 20px;font-size:15px}.tnv-home{font-size:17px}.tnv-hero p{font-size:17px}.tnv-kicker,.tnv-section-label{font-size:12px}.tnv-button,.tnv-small-button{min-height:48px;padding:15px 23px;font-size:15px}.tnv-about p:not(.tnv-section-label),.tnv-card-copy p,.tnv-news-card p,.tnv-review-card p,.tnv-contact-copy>p:not(.tnv-section-label){font-size:15px}.tnv-card-copy h3,.tnv-news-card h3{font-size:19px}.tnv-card-copy a,.tnv-news-card>a,.tnv-text-link{font-size:14px}.tnv-contact input,.tnv-contact textarea{padding:13px 14px;font-size:14px}.footer-logo{max-height:72px;width:auto}.footer-desc,.footer-links a,.footer-contact-row{font-size:15px}
@media(max-width:800px){header.site-header .header-inner{min-height:82px}header.site-header .brand-logo{max-height:68px}header.site-header .nav{top:82px}header.site-header .header-actions .btn-primary{display:none}}
@media(max-width:560px){header.site-header .header-inner{min-height:70px}header.site-header .brand-logo{max-height:48px}.tnv-hero p,.tnv-about p:not(.tnv-section-label),.tnv-card-copy p,.tnv-news-card p,.tnv-review-card p{font-size:16px}.tnv-button,.tnv-small-button{width:100%;min-height:50px;font-size:16px}.tnv-actions{width:100%}}

/* Final navigation and controls. */
.btn,.tnv-button,.tnv-small-button,.tnv-about-cta-button{border-radius:6px}
.tnv-hero-media{background:none}
.tnv-hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .7s ease;background:linear-gradient(90deg,rgba(244,248,252,.98) 4%,rgba(233,241,249,.86) 43%,rgba(21,76,137,.34)),url('../images/xingfa-guangdong-banner.jpg') center/cover}
.tnv-hero-slide-alt{background-position:right center;filter:none!important}
.tnv-hero .tnv-hero-inner{max-width:none;margin-left:0;margin-right:0;padding-left:clamp(20px,5vw,64px);padding-right:24px}
.tnv-hero-slide:nth-child(1){background-image:linear-gradient(90deg,rgba(244,248,252,.50) 4%,rgba(233,241,249,.22) 43%,rgba(21,76,137,.08)),url('../images/xingfa-composite-panel.jpg')}
.tnv-hero-slide:nth-child(2){background-image:linear-gradient(90deg,rgba(244,248,252,.50) 4%,rgba(233,241,249,.22) 43%,rgba(21,76,137,.08)),url('../images/xingfa-space-house.jpg')}
.tnv-hero-slide:nth-child(3){background-image:linear-gradient(90deg,rgba(244,248,252,.50) 4%,rgba(233,241,249,.22) 43%,rgba(21,76,137,.08)),url('../images/xingfa-curtain-wall-cclass.jpg')}
.tnv-hero-slide.is-active{opacity:1}
.nav-menu-trigger{display:inline-flex;align-items:center;gap:4px;padding:13px 16px;border:0;background:transparent;color:inherit;font:inherit;font-size:15px;font-weight:600;cursor:pointer}
.nav-menu-trigger:hover,.nav-item-products.is-open .nav-menu-trigger{color:var(--primary)}
.nav-item-products .nav-dropdown{min-width:290px}
.nav-item-products.is-open .nav-dropdown,.nav-item-products:focus-within .nav-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.nav-product-dropdown a{white-space:normal;line-height:1.4}
.nav-product-dropdown .nav-product-all{margin-top:5px;border-top:1px solid var(--line);border-radius:0;color:var(--primary);font-weight:700}
.tnv-carousel-button{width:auto;min-width:72px;height:44px;padding:0 13px;border-radius:6px;font-size:13px;font-weight:700}
@media(max-width:800px){header.site-header .nav{top:98px}.nav-menu-trigger{width:100%;justify-content:space-between;padding:13px 0}.nav-item-products .nav-dropdown{position:static;display:none;min-width:0;margin:0;padding:4px 0;box-shadow:none;border:0;transform:none}.nav-item-products.is-open .nav-dropdown{display:block}.tnv-carousel-button{min-width:58px}}
@media(max-width:560px){header.site-header .nav{top:82px}.tnv-carousel-button{min-width:48px;padding:0 8px;font-size:12px}}
@media(prefers-reduced-motion:reduce){.tnv-hero-slide{transition:none}}

/* News index layout. */
.tnv-news-page{background:#f7f9fc;color:#112e57}.tnv-news-intro{margin:0 auto;padding:52px 0 44px;background:#183d7b;color:#fff;text-align:center}.tnv-news-intro .container{max-width:780px}.tnv-news-intro h1{margin:0;font-size:clamp(28px,3.5vw,42px);color:#fff}.tnv-news-intro p{max-width:590px;margin:14px auto 0;color:#d9e6fa;line-height:1.7}.tnv-news-content{padding:28px 0 64px}.tnv-news-featured{position:relative;min-height:330px;overflow:hidden;border-radius:6px;background:#0e346a}.tnv-news-featured>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.82}.tnv-news-featured-overlay{position:relative;z-index:1;min-height:330px;display:flex;max-width:690px;flex-direction:column;justify-content:end;padding:38px;color:#fff;background:linear-gradient(90deg,rgba(5,28,61,.86),rgba(5,28,61,.43),transparent)}.tnv-news-featured-overlay p,.tnv-news-list-card>div>p{margin:0 0 10px;font-size:12px;font-weight:700;letter-spacing:.07em;text-transform:uppercase}.tnv-news-featured-overlay h2{margin:0;font-size:clamp(25px,3.5vw,42px);line-height:1.12;color:#fff}.tnv-news-featured-overlay div{margin-top:12px;color:#e2edfa;line-height:1.6}.tnv-news-featured-overlay a,.tnv-news-read{margin-top:17px;color:inherit;font-weight:700;font-size:13px}.tnv-news-tools{display:flex;justify-content:space-between;gap:20px;align-items:center;padding:22px 0;border-bottom:1px solid #dce4ee}.tnv-news-categories{display:flex;gap:18px;flex-wrap:wrap}.tnv-news-categories a{font-size:13px;color:#50627a}.tnv-news-categories a.is-active{color:#0a3e81;font-weight:700}.tnv-news-search{display:flex;width:250px;border:1px solid #d4deea;background:#fff}.tnv-news-search input{min-width:0;flex:1;padding:9px 11px;border:0;font:inherit;font-size:12px}.tnv-news-search button{padding:0 12px;border:0;background:#fff;color:#0a3e81;font-weight:700;cursor:pointer}.tnv-news-list{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;padding-top:26px}.tnv-news-list-card{min-width:0}.tnv-news-list-media{display:block;overflow:hidden;aspect-ratio:1.45;background:#dce5ef}.tnv-news-list-media img{width:100%;height:100%;object-fit:cover;transition:transform .25s}.tnv-news-list-card:hover img{transform:scale(1.04)}.tnv-news-list-card>div{padding:14px 2px}.tnv-news-list-card>div>p{color:#63758e}.tnv-news-list-card h2{margin:0 0 9px;font-size:18px;line-height:1.35}.tnv-news-list-card h2 a{color:#112e57}.tnv-news-list-card>div>div{color:#5e6d82;font-size:14px;line-height:1.65}.tnv-news-read{display:inline-block;color:#0b4c96}.tnv-news-pagination{margin-top:30px;text-align:center}.tnv-news-subscribe{padding:0 0 72px}.tnv-news-subscribe>.container{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:34px 46px;background:#fff;box-shadow:0 12px 30px rgba(16,45,88,.1)}.tnv-news-subscribe h2{margin:6px 0 0;font-size:27px;color:#102f59}.tnv-news-subscribe p:not(.tnv-section-label){margin:9px 0 0;color:#64748a;line-height:1.6}@media(max-width:800px){.tnv-news-list{grid-template-columns:1fr 1fr}.tnv-news-list-card:last-child{grid-column:1/-1}.tnv-news-tools{align-items:flex-start;flex-direction:column}.tnv-news-search{width:100%}}@media(max-width:560px){.tnv-news-intro{padding:42px 0 36px}.tnv-news-content{padding-top:18px}.tnv-news-featured,.tnv-news-featured-overlay{min-height:350px}.tnv-news-featured-overlay{padding:25px;background:linear-gradient(0deg,rgba(5,28,61,.88),rgba(5,28,61,.2))}.tnv-news-list{grid-template-columns:1fr}.tnv-news-list-card:last-child{grid-column:auto}.tnv-news-subscribe>.container{align-items:stretch;flex-direction:column;padding:28px 24px}.tnv-news-subscribe .tnv-button{width:100%}}

/* Full-width news content and refined search control. */
.tnv-news-content>.container,.tnv-news-subscribe>.container{width:100%;max-width:none;padding-left:clamp(24px,5vw,88px);padding-right:clamp(24px,5vw,88px)}
.tnv-news-search{width:min(100%,360px);height:46px;border:1px solid #cbd8e7;border-radius:6px;overflow:hidden;box-shadow:0 4px 12px rgba(14,49,94,.05)}
.tnv-news-search .sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.tnv-news-search input{padding:0 14px;font-size:14px;color:#1b365d;outline:0}.tnv-news-search input::placeholder{color:#8a9ab0}
.tnv-news-search button{padding:0 17px;background:#0a3e81;color:#fff;font-size:13px;white-space:nowrap}.tnv-news-search button:hover{background:#062e63}
.tnv-news-subscribe>.container{max-width:none;margin:0}
@media(max-width:800px){.tnv-news-content>.container,.tnv-news-subscribe>.container{padding-left:24px;padding-right:24px}.tnv-news-search{width:100%}}

/* News category tabs. */
.tnv-news-categories{gap:28px}
.tnv-news-categories a{position:relative;padding:10px 0 12px;font-size:16px;font-weight:500;color:#53657d;transition:color .2s ease}
.tnv-news-categories a::after{position:absolute;right:0;bottom:0;left:0;height:2px;background:#00346f;content:"";transform:scaleX(0);transform-origin:center;transition:transform .2s ease}
.tnv-news-categories a:hover,.tnv-news-categories a.is-active{color:#00346f}
.tnv-news-categories a:hover::after,.tnv-news-categories a.is-active::after{transform:scaleX(1)}
@media(max-width:560px){.tnv-news-categories{gap:20px}.tnv-news-categories a{font-size:15px}}

/* Compact sticky header and footer copyright strip. */
header.site-header{position:sticky!important;top:0;z-index:100;background:#fff}
header.site-header .header-inner{grid-template-columns:160px minmax(0,1fr) auto;min-height:92px}
header.site-header .brand-logo{width:150px;height:76px;object-fit:contain}
.site-footer .footer-bottom{min-height:0;padding:14px 0}
.site-footer .footer-bottom .container{padding-top:0;padding-bottom:0}
@media(max-width:1180px){header.site-header .header-inner{grid-template-columns:145px minmax(0,1fr) auto;min-height:84px}header.site-header .brand-logo{width:135px;height:68px}}
@media(max-width:800px){header.site-header .header-inner{min-height:72px}header.site-header .brand-logo{width:112px;height:54px}header.site-header .nav{top:72px}}

/* Restore header logo; keep the footer logo compact. */
header.site-header .header-inner{grid-template-columns:220px minmax(0,1fr) auto;min-height:140px}
header.site-header .brand-logo{width:220px;height:122px;max-height:none}
.site-footer .footer-brand{width:162px;height:98px;padding:8px 10px}
.site-footer .footer-logo{width:142px;height:80px;max-height:none}
@media(max-width:1180px){header.site-header .header-inner{grid-template-columns:190px minmax(0,1fr) auto;min-height:112px}header.site-header .brand-logo{width:190px;height:104px}}
@media(max-width:800px){header.site-header .header-inner{min-height:82px}header.site-header .brand-logo{width:130px;height:62px}header.site-header .nav{top:82px}.site-footer .footer-brand{width:142px;height:88px}.site-footer .footer-logo{width:124px;height:70px}}
@media(max-width:560px){.site-footer .footer-brand{width:132px;height:82px}.site-footer .footer-logo{width:114px;height:64px}}

/* Smaller footer mark. */
.site-footer .footer-brand{width:132px;height:80px;padding:6px 8px}
.site-footer .footer-logo{width:116px;height:64px}
@media(max-width:800px){.site-footer .footer-brand{width:122px;height:74px}.site-footer .footer-logo{width:106px;height:58px}}
@media(max-width:560px){.site-footer .footer-brand{width:112px;height:70px}.site-footer .footer-logo{width:98px;height:54px}}

/* Combined price-list anchors for the CMS built-in /bang-gia route. */
.tnv-price-page [id]{scroll-margin-top:160px}
.tnv-price-page .tnv-price-intro--next{margin-top:64px}

/* Force the click-open product menu above inherited dropdown state. */
.nav-item-products.is-open .nav-dropdown,.nav-item-products:focus-within .nav-dropdown{opacity:1!important;visibility:visible!important;transform:translateY(0)!important}

/* Final footer layout and contact alignment. */
header.site-header .header-inner{min-height:140px}
header.site-header .brand-logo{width:220px;height:122px;max-height:none;object-fit:contain}
.site-footer{background:#eef3f8;border-top:1px solid #cad7e5;color:#17365e}
.site-footer .footer-grid{grid-template-columns:minmax(340px,1.7fr) repeat(2,minmax(175px,1fr));gap:48px;padding:46px 0 34px;align-items:start}
.site-footer .footer-brand-col{padding-right:38px;border-right:1px solid #cad7e5}
.site-footer .footer-brand{display:inline-flex;width:230px;height:142px;align-items:center;justify-content:center;padding:10px 14px;background:#fff;border:1px solid #d2deea;border-radius:4px;box-shadow:0 7px 18px rgba(25,62,108,.10)}
.site-footer .footer-logo{width:200px;height:122px;max-height:none;object-fit:contain}
.site-footer .footer-contact-row{display:flex;align-items:center;gap:10px;line-height:1.45}
.site-footer .footer-contact-row svg{margin-top:0;align-self:center}
.site-footer .footer-contact-row a{display:inline-block;line-height:inherit}
.site-footer .footer-title{color:#102f59;font-size:17px}
.site-footer .footer-desc,.site-footer .footer-links a,.site-footer .footer-contact-row,.site-footer .footer-contact-row a,.site-footer .footer-editor-content,.site-footer .contact-links{color:#405b7c}
.site-footer .footer-links a:hover,.site-footer .footer-contact-row a:hover{color:#07549f}
.site-footer .footer-contact-row svg{color:#07549f}
.site-footer .footer-bottom{background:#dfe8f1;border-top:1px solid #cad7e5;color:#405b7c}
.site-footer .footer-bottom span{color:inherit}
@media(max-width:800px){header.site-header .header-inner{min-height:98px}header.site-header .brand-logo{width:165px;height:82px}.site-footer .footer-grid{grid-template-columns:1fr 1fr;gap:32px}.site-footer .footer-brand-col{grid-column:1/-1;padding:0 0 28px;border-right:0;border-bottom:1px solid #cad7e5}.site-footer .footer-brand{width:210px;height:130px}.site-footer .footer-logo{width:182px;height:110px}}
@media(max-width:560px){header.site-header .header-inner{min-height:82px}header.site-header .brand-logo{width:130px;height:62px}.site-footer .footer-grid{grid-template-columns:1fr;gap:26px;padding:34px 0 28px}.site-footer .footer-brand-col{grid-column:auto}.site-footer .footer-brand{width:190px;height:118px}.site-footer .footer-logo{width:165px;height:96px}}

/* Product catalogue and detail pages. */

/* Footer links for the product catalogue. */
.site-footer .footer-grid{grid-template-columns:minmax(300px,1.45fr) repeat(3,minmax(155px,1fr));gap:38px}.site-footer .footer-title{margin-bottom:15px;font-size:16px;font-weight:600}.site-footer .footer-links{gap:10px}.site-footer .footer-links a{font-size:14px;line-height:1.45}.site-footer .footer-links a:before{content:'›';display:inline-block;margin-right:8px;color:#0a4c98;font-size:16px;line-height:1;vertical-align:-1px}.site-footer .footer-desc{max-width:420px;line-height:1.65}.site-footer .footer-contact{gap:10px;margin-top:18px}@media(max-width:1000px){.site-footer .footer-grid{grid-template-columns:minmax(280px,1.4fr) repeat(2,minmax(150px,1fr));gap:30px}.site-footer .footer-brand-col{grid-row:span 2}}@media(max-width:800px){.site-footer .footer-grid{grid-template-columns:1fr 1fr}.site-footer .footer-brand-col{grid-column:1/-1;grid-row:auto}}@media(max-width:560px){.site-footer .footer-grid{grid-template-columns:1fr}.site-footer .footer-brand-col{grid-column:auto}}

/* Industrial Precision visual system for product catalogue. */

/* Keep product typography consistent with the rest of the theme. */
.tnv-products-page .tnv-products-breadcrumb,.tnv-products-page .tnv-products-eyebrow,.tnv-products-page .tnv-related-heading p,.tnv-products-page .tnv-product-list-body>p,.tnv-products-page .tnv-product-detail-category,.tnv-products-page .tnv-products-resultbar,.tnv-products-page .tnv-product-list-link,.tnv-products-page .tnv-product-call,.tnv-product-detail-page .tnv-products-breadcrumb,.tnv-product-detail-page .tnv-products-eyebrow,.tnv-product-detail-page .tnv-related-heading p,.tnv-product-detail-page .tnv-product-list-body>p,.tnv-product-detail-page .tnv-product-detail-category,.tnv-product-detail-page .tnv-products-resultbar,.tnv-product-detail-page .tnv-product-list-link,.tnv-product-detail-page .tnv-product-call,.tnv-products-page .tnv-products-search button,.tnv-products-page .tnv-products-categories a,.tnv-product-detail-page .tnv-products-search button,.tnv-product-detail-page .tnv-products-categories a,.tnv-product-detail-page .tnv-product-detail-actions .btn-primary,.tnv-products-page .tnv-product-list-price.is-quote,.tnv-product-detail-page .tnv-product-list-price.is-quote,.tnv-product-detail-page .tnv-product-detail-price.is-quote{font-family:Arial, sans-serif}.tnv-products-page .tnv-products-breadcrumb,.tnv-product-detail-page .tnv-products-breadcrumb,.tnv-products-page .tnv-products-resultbar,.tnv-product-detail-page .tnv-products-resultbar{font-weight:500}.tnv-products-page .tnv-products-eyebrow,.tnv-product-detail-page .tnv-products-eyebrow,.tnv-products-page .tnv-related-heading p,.tnv-product-detail-page .tnv-related-heading p,.tnv-products-page .tnv-product-list-body>p,.tnv-product-detail-page .tnv-product-list-body>p,.tnv-product-detail-page .tnv-product-detail-category,.tnv-products-page .tnv-products-categories a,.tnv-product-detail-page .tnv-product-detail-actions .btn-primary,.tnv-products-page .tnv-product-list-link,.tnv-product-detail-page .tnv-product-list-link{font-weight:600}.tnv-products-page .tnv-products-search button,.tnv-product-detail-page .tnv-products-search button{font-weight:700}.tnv-products-page .tnv-product-list-price.is-quote,.tnv-product-detail-page .tnv-product-list-price.is-quote,.tnv-product-detail-page .tnv-product-detail-price.is-quote{font-weight:600;text-transform:none;letter-spacing:0}

/* Product catalogue: compact cards with an always-visible category filter. */

/* Refined product cards. */
.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body h2{font-size:15px!important;font-weight:500!important}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body h2 a{font-weight:inherit}@media(max-width:480px){.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body h2{font-size:13px!important;font-weight:500!important}}
.tnv-products-page .tnv-product-catalog-main .tnv-products-grid{gap:20px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-card{border-color:#d5e0ec;border-radius:8px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-card:hover{transform:translateY(-4px);border-color:#9bb6d5;box-shadow:0 14px 28px rgba(17,54,96,.12)}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-image{aspect-ratio:1.16;background:#eef3f8}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body{min-height:170px;padding:17px 17px 16px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body>p{margin-bottom:7px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body h2{font-size:16px;line-height:1.42}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-price{margin:12px 0 14px;font-size:15px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-link{font-size:12px}@media(max-width:800px){.tnv-products-page .tnv-product-catalog-main .tnv-products-grid{gap:16px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body{min-height:158px;padding:15px}}@media(max-width:480px){.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body{min-height:151px;padding:13px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-body h2{font-size:14px}.tnv-products-page .tnv-product-catalog-main .tnv-product-list-price{font-size:14px}}
.tnv-product-catalog-main .tnv-products-grid{gap:20px}.tnv-product-catalog-main .tnv-product-list-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid #d5e0ec;border-radius:8px;background:#fff;box-shadow:0 2px 6px rgba(20,54,94,.035);transition:border-color .22s,box-shadow .22s,transform .22s}.tnv-product-catalog-main .tnv-product-list-card:hover{transform:translateY(-4px);border-color:#9bb6d5;box-shadow:0 14px 28px rgba(17,54,96,.12)}.tnv-product-catalog-main .tnv-product-list-image{position:relative;aspect-ratio:1.16;background:#eef3f8}.tnv-product-catalog-main .tnv-product-list-image:after{content:'';position:absolute;inset:auto 0 0;height:36%;background:linear-gradient(transparent,rgba(13,45,84,.08));pointer-events:none}.tnv-product-catalog-main .tnv-product-list-image img{object-fit:cover;transition:transform .4s ease}.tnv-product-catalog-main .tnv-product-list-card:hover .tnv-product-list-image img{transform:scale(1.045)}.tnv-product-catalog-main .tnv-product-list-body{flex:1;min-height:170px;padding:17px 17px 16px}.tnv-product-catalog-main .tnv-product-list-body>p{margin:0 0 7px;color:#71849c;font-size:10px;font-weight:700;letter-spacing:.08em}.tnv-product-catalog-main .tnv-product-list-body h2{display:-webkit-box;overflow:hidden;margin:0;-webkit-box-orient:vertical;-webkit-line-clamp:2;color:#112e57;font-size:16px;font-weight:600;line-height:1.42}.tnv-product-catalog-main .tnv-product-list-price{margin:12px 0 14px;color:#0a3e81;font-size:15px;font-weight:600}.tnv-product-catalog-main .tnv-product-list-price.is-quote{font-size:12px;color:#63758e}.tnv-product-catalog-main .tnv-product-list-link{display:inline-flex;align-items:center;gap:7px;padding-top:10px;border-top:1px solid #edf1f5;color:#0a3e81;font-size:12px;font-weight:600}.tnv-product-catalog-main .tnv-product-list-link span{font-size:16px}.tnv-product-catalog-main .tnv-product-list-link:hover{color:#062e63}@media(max-width:800px){.tnv-product-catalog-main .tnv-products-grid{gap:16px}.tnv-product-catalog-main .tnv-product-list-body{min-height:158px;padding:15px}}@media(max-width:480px){.tnv-product-catalog-main .tnv-product-list-body{min-height:151px;padding:13px}.tnv-product-catalog-main .tnv-product-list-body h2{font-size:14px}.tnv-product-catalog-main .tnv-product-list-price{font-size:14px}}

.nav-item-quote .nav-dropdown{min-width:350px}
.nav-product-mega{left:50%;width:min(940px,calc(100vw - 40px));min-width:0;margin-left:-350px;padding:18px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.nav-product-mega .nav-product-group{min-width:0}.nav-product-mega .nav-product-group-title{min-height:42px;padding:7px 8px 10px;color:#0a3e81;font-size:13px;font-weight:700;line-height:1.35}.nav-product-mega .nav-product-group>a:not(.nav-product-group-title){padding:6px 8px;color:#50627a;font-size:12.5px;line-height:1.35}.nav-product-mega .nav-product-group>a:not(.nav-product-group-title):hover{background:#f2f6fa;color:#0a3e81}.nav-product-mega .nav-product-all{grid-column:1/-1;margin-top:0;padding:11px 8px 3px}@media(max-width:800px){.nav-product-mega{display:block;width:auto;margin-left:0;padding:4px 0}.nav-product-mega .nav-product-group{padding:8px 0}.nav-product-mega .nav-product-group-title{min-height:0;padding:7px 0;color:#0a3e81}.nav-product-mega .nav-product-group>a:not(.nav-product-group-title){padding:7px 0 7px 12px;font-size:13px}.nav-product-mega .nav-product-all{padding:10px 0}}

/* Balanced header after adding the price-list menu. */
.tnv-price-page .tnv-price-hero>div>p,.tnv-price-page .tnv-price-kicker{font-weight:600}.tnv-price-page .tnv-price-table thead th,.tnv-price-page .tnv-price-table .tnv-price-section th{font-weight:700}.tnv-price-page .tnv-price-value{font-weight:600}.tnv-price-page .tnv-price-table tbody th,.tnv-price-page .tnv-price-notes h2{font-weight:600}.tnv-price-page .tnv-price-notes ol{font-weight:400}
.tnv-price-page--accessories .tnv-price-hero h1,.tnv-price-page--guangdong .tnv-price-hero h1{margin-left:auto;margin-right:auto;text-align:center}
.tnv-price-table .tnv-price-section th{padding:13px 24px;background:#f0f4f8;color:#0a3e81;font-size:13px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}.tnv-price-notes{margin-top:28px;padding:26px 30px;border:1px solid #d5e0ec;background:#fff}.tnv-price-notes h2{margin:0 0 13px;color:#112e57;font-size:20px}.tnv-price-notes ol{margin:0;padding-left:21px;color:#506984;font-size:14px;line-height:1.7}.tnv-price-notes li+li{margin-top:5px}@media(max-width:560px){.tnv-price-notes{padding:22px 20px}.tnv-price-notes ol{font-size:13px}}
.tnv-price-page{background:#f7f9fc;color:#112e57}.tnv-price-hero{padding:54px 0 58px;background:#183d7b;color:#fff}.tnv-price-hero .container,.tnv-price-content .container{max-width:1280px}.tnv-price-breadcrumb{display:flex;gap:9px;flex-wrap:wrap;margin:0 0 22px;color:#c9d8ee;font-size:13px}.tnv-price-breadcrumb a{color:inherit}.tnv-price-breadcrumb a:hover{color:#fff}.tnv-price-hero>div>p{margin:0 0 9px;color:#b7c9e5;font-size:12px;font-weight:700;letter-spacing:.09em;text-transform:uppercase}.tnv-price-hero h1{max-width:940px;margin:0;color:#fff;font-size:clamp(30px,4vw,46px);line-height:1.14;letter-spacing:-.04em}.tnv-price-content{padding:46px 0 78px}.tnv-price-intro{display:flex;justify-content:space-between;align-items:end;gap:28px;margin-bottom:25px}.tnv-price-kicker{margin:0 0 8px;color:#63758e;font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.tnv-price-intro h2{margin:0;color:#112e57;font-size:27px;line-height:1.25}.tnv-price-intro .btn-primary{border-radius:4px;background:#0a3e81}.tnv-price-table-wrap{overflow:auto;border:1px solid #d5e0ec;background:#fff}.tnv-price-table{width:100%;min-width:870px;border-collapse:collapse;text-align:left}.tnv-price-table th,.tnv-price-table td{padding:22px 24px;border-bottom:1px solid #dce4ee;vertical-align:top}.tnv-price-table thead th{padding-top:15px;padding-bottom:15px;background:#edf2f7;color:#17365e;font-size:13px;font-weight:700}.tnv-price-table thead th:first-child{width:23%}.tnv-price-table thead th:last-child{width:19%}.tnv-price-table tbody tr:last-child th,.tnv-price-table tbody tr:last-child td{border-bottom:0}.tnv-price-table tbody th{color:#112e57;font-size:16px;line-height:1.45}.tnv-price-table ul{margin:0;padding-left:18px;color:#506984;font-size:14px;line-height:1.6}.tnv-price-table li+li{margin-top:3px}.tnv-price-value{color:#0a3e81;font-size:19px;font-weight:700;white-space:nowrap}.tnv-price-value span{display:block;margin-top:4px;color:#63758e;font-size:12px;font-weight:600}@media(max-width:800px){.tnv-price-hero{padding:43px 0}.tnv-price-content{padding:32px 0 54px}.tnv-price-intro{align-items:start;flex-direction:column}.tnv-price-table th,.tnv-price-table td{padding:18px}.tnv-price-table ul{font-size:13px}}@media(max-width:560px){.tnv-price-hero h1{font-size:30px}.tnv-price-intro h2{font-size:24px}.tnv-price-intro .btn-primary{width:100%;text-align:center}}
.site-header .nav>a,.site-header .nav-menu-trigger{position:relative;border-radius:4px;color:#243b5a;transition:background .2s,color .2s,transform .2s}.site-header .nav>a:hover,.site-header .nav-menu-trigger:hover,.site-header .nav-item-products.is-open .nav-menu-trigger{background:#edf2f7;color:#112e57;transform:translateY(-1px)}.site-header .nav>a.active{background:transparent!important;color:#243b5a!important;transform:none}.site-header .nav>a.active:hover{background:#edf2f7!important;color:#112e57!important}.site-header .nav-menu-trigger:focus-visible,.site-header .nav>a:focus-visible{outline:2px solid #7b9ee0;outline-offset:2px}.nav-product-mega{padding:20px 22px;gap:22px}.nav-product-mega .nav-product-group{display:flex;flex-direction:column;align-items:stretch}.nav-product-mega .nav-product-group-title{min-height:0;margin-bottom:7px;padding:0 0 10px;border-bottom:1px solid #dce4ee;color:#112e57;font-family:Arial, sans-serif;font-size:14px;font-weight:700;line-height:1.45}.nav-product-mega .nav-product-group>a:not(.nav-product-group-title){padding:6px 0;color:#526a87;font-family:Arial, sans-serif;font-size:13px;font-weight:400;line-height:1.45}.nav-product-mega .nav-product-group>a:not(.nav-product-group-title):hover{background:transparent;color:#0a3e81;text-decoration:underline;text-underline-offset:3px}.nav-product-mega .nav-product-all{padding:13px 0 0;color:#0a3e81;font-size:13px}.nav-product-mega .nav-product-all:hover{background:transparent;text-decoration:underline;text-underline-offset:3px}
.nav-order-home{order:1}.nav-order-products{order:2}.nav-order-quote{order:3}.nav-order-news{order:4}.nav-order-about{order:5}.nav-order-contact{order:6}.nav-order-other{order:10}
header.site-header .header-inner{display:grid;grid-template-columns:220px minmax(0,1fr) auto;gap:24px;align-items:center}header.site-header .nav{display:flex;justify-content:center;gap:2px;min-width:0;white-space:nowrap}header.site-header .nav>a,header.site-header .nav-menu-trigger{padding:12px 11px;font-size:14px;line-height:20px}header.site-header .header-actions{gap:12px;justify-content:flex-end;white-space:nowrap}header.site-header .header-actions .btn-primary{padding:12px 16px}@media(max-width:1180px){header.site-header .header-inner{grid-template-columns:190px minmax(0,1fr) auto;gap:14px}header.site-header .brand-logo{width:190px;height:104px}header.site-header .nav>a,header.site-header .nav-menu-trigger{padding-left:8px;padding-right:8px;font-size:13px}header.site-header .header-actions .hotline{display:none}}@media(max-width:940px){header.site-header .header-inner{grid-template-columns:165px minmax(0,1fr) auto;gap:8px;min-height:90px}header.site-header .brand-logo{width:165px;height:80px}header.site-header .nav>a,header.site-header .nav-menu-trigger{padding-left:6px;padding-right:6px;font-size:12px}header.site-header .header-actions .btn-primary{padding:10px 12px;font-size:13px}}@media(max-width:800px){header.site-header .header-inner{display:flex;min-height:82px;gap:16px}header.site-header .nav{display:none;white-space:normal}header.site-header .nav.open{display:flex;justify-content:flex-start;gap:0}header.site-header .brand-logo{width:130px;height:62px}header.site-header .header-actions{margin-left:auto}.nav-item-quote .nav-dropdown{min-width:0}}

.tnv-product-sidebar{position:sticky;top:24px;margin-left:-64px;border-left:0;border-radius:0 6px 6px 0}.tnv-product-filter-form{display:grid;gap:0}.tnv-product-filter-option{display:flex;gap:10px;align-items:flex-start;padding:11px 0;color:#50627a;font-size:14px;line-height:1.45;cursor:pointer}.tnv-product-filter-option+.tnv-product-filter-option{border-top:1px solid #eef2f6}.tnv-product-filter-option input{width:16px;height:16px;margin:2px 0 0;accent-color:#0a3e81;flex:0 0 auto}.tnv-product-filter-option:has(input:checked){color:#0a3e81;font-weight:700}.tnv-product-filter-actions{display:flex;align-items:center;gap:14px;margin-top:15px;padding-top:15px;border-top:1px solid #dce4ee}.tnv-product-filter-actions button{min-height:36px;padding:8px 14px;border:0;border-radius:4px;background:#0a3e81;color:#fff;font:inherit;font-size:13px;font-weight:700;cursor:pointer}.tnv-product-filter-actions button:hover{background:#062e63}.tnv-product-filter-actions a{color:#50627a;font-size:13px}.tnv-product-filter-actions a:hover{color:#0a3e81}@media(max-width:800px){.tnv-product-sidebar{position:static;margin-left:0;border-left:1px solid #dce4ee;border-radius:6px}.tnv-product-filter-option{padding:8px 10px}.tnv-product-filter-option+.tnv-product-filter-option{border-top:1px solid #dce4ee}}
.tnv-product-filter-label{margin:3px 0 8px;color:#112e57;font-size:13px;font-weight:700;line-height:1.4}.tnv-product-filter-hint{margin:0;color:#63758e;font-size:13px;line-height:1.55}.tnv-product-price-filter{display:grid;gap:9px;margin-top:17px;padding-top:17px;border-top:1px solid #dce4ee}.tnv-product-price-filter label{display:grid;grid-template-columns:34px minmax(0,1fr);align-items:center;gap:8px;color:#63758e;font-size:13px}.tnv-product-price-filter input{width:100%;height:36px;padding:0 10px;border:1px solid #cbd8e7;border-radius:4px;background:#fff;color:#17365e;font:inherit;font-size:13px;outline:0}.tnv-product-price-filter input:focus{border-color:#0a3e81;box-shadow:0 0 0 2px rgba(10,62,129,.1)}.tnv-product-price-filter input::-webkit-inner-spin-button{opacity:.6}@media(max-width:800px){.tnv-product-price-filter{max-width:360px}.tnv-product-filter-hint{padding:4px 0}}

/* Latest header/footer dimensions. */
header.site-header{position:sticky!important;top:0;z-index:100;background:#fff}
header.site-header .header-inner{grid-template-columns:160px minmax(0,1fr) auto;min-height:92px}
header.site-header .brand-logo{width:150px;height:76px;object-fit:contain}
.site-footer .footer-bottom{min-height:0;padding:14px 0}
.site-footer .footer-bottom .container{padding-top:0;padding-bottom:0}
@media(max-width:1180px){header.site-header .header-inner{grid-template-columns:145px minmax(0,1fr) auto;min-height:84px}header.site-header .brand-logo{width:135px;height:68px}}
@media(max-width:800px){header.site-header .header-inner{min-height:72px}header.site-header .brand-logo{width:112px;height:54px}header.site-header .nav{top:72px}}
.tnv-products-toolbar{display:flex;align-items:center;justify-content:space-between;gap:24px;margin:0 0 26px;padding:0 0 22px;border-bottom:1px solid #dce4ee}.tnv-products-toolbar h2{margin:0;color:#112e57;font-size:25px;line-height:1.25}.tnv-products-toolbar p{margin:6px 0 0;color:#63758e;font-size:14px}.tnv-product-catalog-main .tnv-products-search{width:min(100%,430px);height:46px;margin:0;border:1px solid #cbd8e7;border-radius:6px;box-shadow:none}.tnv-product-catalog-main .tnv-products-search input{padding:0 14px;font-size:14px}.tnv-product-catalog-main .tnv-products-search button{min-width:102px;padding:0 15px;background:#0a3e81;font-size:13px}.tnv-product-catalog-main .tnv-products-grid{padding-top:0}.tnv-product-catalog-main .tnv-product-list-card{border-color:#dce4ee;border-radius:6px}.tnv-product-catalog-main .tnv-product-list-card:hover{transform:translateY(-2px);border-color:#9fb8d5;box-shadow:0 8px 20px rgba(16,45,88,.08)}.tnv-product-catalog-main .tnv-product-list-image{background:#f1f4f8}.tnv-product-catalog-main .tnv-product-list-body{display:flex;flex-direction:column;min-height:154px}.tnv-product-catalog-main .tnv-product-list-link{margin-top:auto}@media(max-width:800px){.tnv-products-toolbar{align-items:stretch;flex-direction:column;gap:16px}.tnv-product-catalog-main .tnv-products-search{width:100%;max-width:none}}@media(max-width:480px){.tnv-products-toolbar{margin-bottom:20px;padding-bottom:18px}.tnv-products-toolbar h2{font-size:22px}.tnv-product-catalog-main .tnv-products-search{height:44px}.tnv-product-catalog-main .tnv-products-search button{min-width:88px;padding:0 10px;font-size:12px}}
.tnv-product-catalog-layout{display:grid;grid-template-columns:230px minmax(0,1fr);gap:32px;align-items:start}.tnv-product-sidebar{padding:21px 18px;background:#fff;border:1px solid #dce4ee;border-radius:6px}.tnv-product-sidebar h2{margin:0 0 13px;padding-bottom:13px;border-bottom:1px solid #dce4ee;color:#112e57;font-size:17px;font-weight:700}.tnv-product-sidebar .tnv-products-categories{display:block;margin:0;padding:0;border:0}.tnv-product-sidebar .tnv-products-categories a{display:block;padding:10px 4px;border:0;border-radius:0;background:transparent;color:#50627a;font-size:14px}.tnv-product-sidebar .tnv-products-categories a+a{border-top:1px solid #eef2f6}.tnv-product-sidebar .tnv-products-categories a:hover,.tnv-product-sidebar .tnv-products-categories a.is-active{background:transparent;color:#0a3e81;font-weight:700}.tnv-product-sidebar .tnv-products-categories a.is-active:before{content:'';display:inline-block;width:5px;height:5px;margin:0 9px 2px 0;border-radius:50%;background:#0a3e81}.tnv-product-catalog-main .tnv-products-search{max-width:420px;margin:0}.tnv-product-catalog-main .tnv-products-resultbar{margin:21px 0 17px;padding-bottom:14px;border-bottom:1px solid #dce4ee}.tnv-product-catalog-main .tnv-products-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.tnv-product-catalog-main .tnv-product-list-image{aspect-ratio:1}.tnv-product-catalog-main .tnv-product-list-body{padding:14px}.tnv-product-catalog-main .tnv-product-list-body>p{margin-bottom:5px;font-size:10px}.tnv-product-catalog-main .tnv-product-list-body h2{font-size:15px;line-height:1.38}.tnv-product-catalog-main .tnv-product-list-price{margin:10px 0 12px;font-size:14px}.tnv-product-catalog-main .tnv-product-list-link{font-size:12px}.tnv-product-catalog-main .tnv-products-pagination{margin-top:30px}@media(max-width:1050px){.tnv-product-catalog-layout{grid-template-columns:205px minmax(0,1fr);gap:24px}.tnv-product-catalog-main .tnv-products-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:800px){.tnv-product-catalog-layout{grid-template-columns:1fr;gap:22px}.tnv-product-sidebar{padding:17px}.tnv-product-sidebar h2{margin-bottom:8px}.tnv-product-sidebar .tnv-products-categories{display:flex;flex-wrap:wrap;gap:5px}.tnv-product-sidebar .tnv-products-categories a,.tnv-product-sidebar .tnv-products-categories a+a{padding:8px 10px;border:1px solid #dce4ee;border-radius:4px}.tnv-product-sidebar .tnv-products-categories a.is-active{border-color:#0a3e81;background:#0a3e81;color:#fff}.tnv-product-sidebar .tnv-products-categories a.is-active:before{display:none}.tnv-product-catalog-main .tnv-products-search{max-width:none}.tnv-product-catalog-main .tnv-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:480px){.tnv-product-catalog-main .tnv-products-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.tnv-product-catalog-main .tnv-product-list-body{padding:12px}.tnv-product-catalog-main .tnv-product-list-body h2{font-size:14px}.tnv-product-catalog-main .tnv-product-list-link{font-size:11px}}
.tnv-products-page,.tnv-product-detail-page{--tnv-surface:#f9f9fc;--tnv-surface-low:#f3f3f6;--tnv-white:#fff;--tnv-ink:#1a1c1e;--tnv-muted:#434750;--tnv-outline:#737781;--tnv-line:#c2c6d3;--tnv-navy:#001f48;--tnv-blue:#00346f;--tnv-blue-light:#7b9ee0;background:var(--tnv-surface);color:var(--tnv-ink)}.tnv-products-page .container,.tnv-product-detail-page .container{max-width:1280px;padding-left:64px;padding-right:64px}.tnv-products-hero{padding:64px 0;background:var(--tnv-navy);border-bottom:1px solid #001b3f}.tnv-products-hero h1{font-size:48px;font-weight:700;line-height:56px;letter-spacing:-.02em}.tnv-products-breadcrumb,.tnv-products-eyebrow,.tnv-related-heading p,.tnv-product-list-body>p,.tnv-product-detail-category,.tnv-products-resultbar,.tnv-product-list-link,.tnv-product-call{font-family:Arial, sans-serif;font-weight:500}.tnv-products-breadcrumb{font-size:12px;letter-spacing:.05em}.tnv-products-eyebrow,.tnv-related-heading p,.tnv-product-list-body>p,.tnv-product-detail-category{font-size:12px;line-height:16px;letter-spacing:.05em}.tnv-products-content{padding:48px 0}.tnv-products-search{height:52px;max-width:650px;margin-bottom:24px;border:1px solid var(--tnv-outline);border-radius:4px;box-shadow:none}.tnv-products-search input{font-size:16px;color:var(--tnv-ink)}.tnv-products-search button{padding:0 24px;background:var(--tnv-blue);border-radius:0;font-family:Arial, sans-serif;font-size:12px;letter-spacing:.05em}.tnv-products-search button:hover{background:var(--tnv-navy)}.tnv-products-categories{gap:8px;padding-bottom:24px;border-color:var(--tnv-line)}.tnv-products-categories a{padding:10px 14px;border-color:var(--tnv-line);border-radius:4px;color:var(--tnv-muted);font-family:Arial, sans-serif;font-size:12px;letter-spacing:.04em}.tnv-products-categories a:hover,.tnv-products-categories a.is-active{border-color:var(--tnv-blue);background:var(--tnv-blue);color:#fff}.tnv-products-resultbar{margin:24px 0;color:var(--tnv-muted);font-size:12px;letter-spacing:.05em}.tnv-products-grid{gap:24px}.tnv-product-list-card{border-color:var(--tnv-line);border-radius:4px;box-shadow:none;background:var(--tnv-white)}.tnv-product-list-card:hover{transform:none;border-color:var(--tnv-outline);box-shadow:none}.tnv-product-list-image{background:var(--tnv-surface-low);border-bottom:1px solid var(--tnv-line);aspect-ratio:1.15}.tnv-product-list-card:hover .tnv-product-list-image img{transform:scale(1.025)}.tnv-product-list-body{padding:24px}.tnv-product-list-body>p{color:var(--tnv-muted)}.tnv-product-list-body h2{font-size:20px;font-weight:600;line-height:28px;letter-spacing:-.01em}.tnv-product-list-body h2 a{color:var(--tnv-ink)}.tnv-product-list-body h2 a:hover,.tnv-product-list-link{color:var(--tnv-blue)}.tnv-product-list-price{color:var(--tnv-navy);font-size:16px}.tnv-product-list-price.is-quote{color:var(--tnv-muted);font-family:Arial, sans-serif;font-size:12px}.tnv-product-list-link{font-size:12px;letter-spacing:.05em}.tnv-products-empty{border:1px solid var(--tnv-line);border-radius:4px;background:var(--tnv-white)}.tnv-product-detail-page{padding:48px 0 80px}.tnv-product-detail{gap:48px}.tnv-product-detail-image{border-color:var(--tnv-line);border-radius:4px;background:var(--tnv-surface-low)}.tnv-product-detail-category{color:var(--tnv-blue)}.tnv-product-detail-info h1{color:var(--tnv-ink);font-size:32px;font-weight:600;line-height:40px;letter-spacing:-.01em}.tnv-product-detail-price{color:var(--tnv-navy);font-size:24px}.tnv-product-detail-price.is-quote{color:var(--tnv-muted);font-family:Arial, sans-serif;font-size:14px}.tnv-product-detail-summary{border-color:var(--tnv-line);color:var(--tnv-muted);font-size:16px;line-height:24px}.tnv-product-detail-actions .btn-primary{border-radius:4px;background:var(--tnv-blue);font-family:Arial, sans-serif;font-size:12px;letter-spacing:.05em}.tnv-product-detail-actions .btn-primary:hover{background:var(--tnv-navy)}.tnv-product-call{color:var(--tnv-navy);font-size:12px;letter-spacing:.05em}.tnv-product-description{max-width:none;border-color:var(--tnv-line);border-radius:4px;background:var(--tnv-white);color:var(--tnv-muted);font-size:16px;line-height:24px}.tnv-product-description h2,.tnv-related-heading h2{color:var(--tnv-ink);font-size:24px;font-weight:600;line-height:32px;letter-spacing:0}.tnv-related-heading p{color:var(--tnv-muted)}@media(max-width:800px){.tnv-products-page .container,.tnv-product-detail-page .container{padding-left:32px;padding-right:32px}.tnv-products-hero{padding:48px 0}}@media(max-width:560px){.tnv-products-page .container,.tnv-product-detail-page .container{padding-left:20px;padding-right:20px}.tnv-products-hero{padding:40px 0}.tnv-products-hero h1{font-size:32px;line-height:40px}.tnv-products-content{padding:32px 0}.tnv-product-list-body{padding:20px}.tnv-product-detail-page{padding:32px 0 56px}.tnv-product-description{padding:24px 20px}}

.tnv-product-list-price.is-quote{font-size:13px;text-transform:uppercase;letter-spacing:.04em}
.tnv-product-detail-price.is-quote{font-size:18px;text-transform:uppercase;letter-spacing:.04em}

/* Product detail: structured information panels. */
.tnv-product-detail-page,.tnv-product-detail-page *{font-family:Arial,sans-serif!important}
.tnv-product-detail-page .tnv-product-detail{align-items:stretch;gap:32px}
.tnv-product-detail-page .tnv-product-detail-info h1{font-size:clamp(24px,2.5vw,32px)!important;line-height:1.2}
.tnv-product-detail-page .tnv-product-detail-image{display:flex;align-items:center;justify-content:center;min-height:460px;border:1px solid #dce4ee;border-radius:8px;background:#fff}
.tnv-product-detail-page .tnv-product-detail-info{display:flex;flex-direction:column;padding:32px;border:1px solid #dce4ee;border-radius:8px;background:#fff}
.tnv-product-detail-page .tnv-product-detail-summary{margin-top:8px}
.tnv-product-detail-page .tnv-product-detail-actions{margin-top:auto;padding-top:24px}
.tnv-product-detail-page .tnv-product-description{display:block;max-width:none;margin-top:32px;padding:32px;border:1px solid #dce4ee;border-radius:8px;background:#fff}
.tnv-product-description-heading p{margin:0 0 8px;color:#0a3e81;font:600 12px/16px Arial, sans-serif;letter-spacing:.08em}
.tnv-product-description-heading h2{margin:0;color:#112e57;font-size:26px;font-weight:600;line-height:1.25}
.tnv-product-description-content{min-width:0;margin-top:18px;color:#526b88;font-size:16px;line-height:1.75}
.tnv-product-description-content>*:first-child{margin-top:0}.tnv-product-description-content>*:last-child{margin-bottom:0}
@media(max-width:800px){.tnv-product-detail-page .tnv-product-detail-image{min-height:0}.tnv-product-detail-page .tnv-product-detail-info{padding:24px}.tnv-product-detail-page .tnv-product-description{grid-template-columns:1fr;gap:16px;padding:26px}}
@media(max-width:560px){.tnv-product-detail-page .tnv-product-detail-info{padding:20px}.tnv-product-detail-page .tnv-product-description{margin-top:24px;padding:22px 20px}.tnv-product-description-heading h2{font-size:22px}}
.tnv-products-page,.tnv-product-detail-page{background:#f5f8fb;color:#112e57}.tnv-products-hero{padding:48px 0 50px;background:#133d78;color:#fff}.tnv-products-breadcrumb{display:flex;flex-wrap:wrap;gap:9px;align-items:center;margin:0 0 23px;color:#71839d;font-size:13px}.tnv-products-hero .tnv-products-breadcrumb{color:#c6d6ed}.tnv-products-breadcrumb a{color:inherit}.tnv-products-breadcrumb a:hover{color:#0b559f}.tnv-products-hero .tnv-products-breadcrumb a:hover{color:#fff}.tnv-products-eyebrow,.tnv-related-heading p{margin:0 0 8px;color:#8eafd8;text-transform:uppercase;letter-spacing:.12em;font-size:11px;font-weight:700}.tnv-products-hero h1{margin:0;color:#fff;font-size:clamp(31px,4vw,46px);letter-spacing:-.04em;line-height:1.08}.tnv-products-content{padding:34px 0 76px}.tnv-products-search{display:flex;max-width:620px;height:50px;margin:0 0 27px;border:1px solid #cbd7e5;border-radius:5px;overflow:hidden;background:#fff;box-shadow:0 6px 20px rgba(16,46,87,.06)}.tnv-products-search input{min-width:0;flex:1;border:0;padding:0 16px;font:inherit;color:#18375f;outline:0}.tnv-products-search input::placeholder{color:#8392a6}.tnv-products-search button{border:0;padding:0 21px;background:#0a3e81;color:#fff;font:inherit;font-weight:700;font-size:13px;cursor:pointer}.tnv-products-search button:hover{background:#062e63}.tnv-products-categories{display:flex;flex-wrap:wrap;gap:7px;padding-bottom:25px;border-bottom:1px solid #d6e0eb}.tnv-products-categories a{padding:10px 15px;border:1px solid #cbd7e5;border-radius:4px;background:#fff;color:#46617f;font-size:13px;font-weight:700;transition:.2s}.tnv-products-categories a:hover,.tnv-products-categories a.is-active{border-color:#0b4c96;background:#0b4c96;color:#fff}.tnv-products-resultbar{margin:25px 0 17px;color:#60738c;font-size:13px}.tnv-products-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.tnv-product-list-card{min-width:0;background:#fff;border:1px solid #d5e0ec;box-shadow:0 5px 18px rgba(19,51,87,.05);transition:transform .22s,box-shadow .22s,border-color .22s}.tnv-product-list-card:hover{transform:translateY(-4px);border-color:#7fa5cc;box-shadow:0 14px 28px rgba(15,57,105,.12)}.tnv-product-list-image{display:block;aspect-ratio:1.13;background:#edf2f7;overflow:hidden}.tnv-product-list-image img{width:100%;height:100%;object-fit:cover;transition:transform .32s}.tnv-product-list-card:hover .tnv-product-list-image img{transform:scale(1.045)}.tnv-product-list-body{padding:18px 18px 20px}.tnv-product-list-body>p{margin:0 0 7px;color:#6380a0;font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase}.tnv-product-list-body h2{margin:0;font-size:18px;line-height:1.38}.tnv-product-list-body h2 a{color:#132f58}.tnv-product-list-body h2 a:hover{color:#07549f}.tnv-product-list-price{margin:13px 0 17px;color:#0b4c96;font-size:17px;font-weight:700}.tnv-product-list-price del,.tnv-product-detail-price del{margin-left:8px;color:#8492a3;font-size:.75em;font-weight:500;text-decoration-thickness:1px}.tnv-product-list-link{display:inline-flex;gap:8px;align-items:center;color:#0b4c96;font-size:13px;font-weight:700}.tnv-product-list-link span{font-size:17px;line-height:1;transition:transform .2s}.tnv-product-list-link:hover span{transform:translateX(3px)}.tnv-products-pagination{margin-top:36px}.tnv-products-empty{padding:70px 25px;text-align:center;background:#fff;border:1px solid #d5e0ec}.tnv-product-detail-page{padding:30px 0 78px}.tnv-product-detail{display:grid;grid-template-columns:minmax(0,1.04fr) minmax(320px,.96fr);gap:54px;align-items:start}.tnv-product-detail-image{aspect-ratio:1;background:#eaf0f6;border:1px solid #d4dfeb;overflow:hidden}.tnv-product-detail-image img{width:100%;height:100%;object-fit:cover}.tnv-product-detail-info{padding:12px 0}.tnv-product-detail-category{margin:0 0 10px;color:#0b4c96;text-transform:uppercase;letter-spacing:.1em;font-size:11px;font-weight:700}.tnv-product-detail-info h1{margin:0;color:#112e57;font-size:clamp(30px,3.2vw,43px);line-height:1.12;letter-spacing:-.035em}.tnv-product-detail-price{margin:20px 0 23px;color:#0b4c96;font-size:28px;font-weight:700}.tnv-product-detail-summary{padding:18px 0;border-top:1px solid #d6e0eb;border-bottom:1px solid #d6e0eb;color:#526b88;font-size:15px;line-height:1.75}.tnv-product-detail-summary>*:first-child{margin-top:0}.tnv-product-detail-summary>*:last-child{margin-bottom:0}.tnv-product-detail-actions{display:flex;flex-wrap:wrap;gap:13px;align-items:center;margin-top:26px}.tnv-product-detail-actions .btn-primary{background:#0a3e81}.tnv-product-detail-actions .btn-primary:hover{background:#062e63}.tnv-product-call{color:#153d70;font-size:15px;font-weight:700}.tnv-product-call:before{content:'Hotline: ';color:#70839b;font-weight:500}.tnv-product-description{max-width:900px;margin:64px 0 0;padding:34px 38px;background:#fff;border:1px solid #d5e0ec;color:#506984}.tnv-product-description h2{margin:0 0 19px;color:#112e57;font-size:25px}.tnv-related-products{margin-top:68px}.tnv-related-heading{margin-bottom:21px}.tnv-related-heading h2{margin:0;color:#112e57;font-size:28px;letter-spacing:-.025em}.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}@media(max-width:800px){.tnv-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.tnv-product-detail{grid-template-columns:1fr;gap:28px}.tnv-product-detail-info{padding:0}.tnv-product-description{margin-top:42px}}@media(max-width:560px){.tnv-products-hero{padding:38px 0 40px}.tnv-products-content,.tnv-product-detail-page{padding-top:23px;padding-bottom:54px}.tnv-products-search{height:48px}.tnv-products-search button{padding:0 15px}.tnv-products-grid{grid-template-columns:1fr;gap:16px}.tnv-product-list-body{padding:16px}.tnv-product-detail-image{aspect-ratio:1.1}.tnv-product-description{margin-top:35px;padding:25px 20px}.tnv-related-products{margin-top:46px}}
