@import url("./fonts.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2540;
    --accent: #c9a961;
    --accent-soft: rgba(201, 169, 97, 0.14);
    --gray-950: #0d1624;
    --gray-900: #1a1a1a;
    --gray-700: #4a4a4a;
    --gray-500: #8a8a8a;
    --gray-300: #d4d4d4;
    --gray-100: #f5f5f5;
    --gray-50: #fafafa;
    --white: #ffffff;
    --line: #e8e8e8;
    --shadow: 0 18px 45px rgba(9, 21, 36, 0.08);
    --nav-drawer-width: 420px;
    --nav-drawer-width-fluid: 86vw;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    font-optical-sizing: auto;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    max-width: 100%;
}

body.page-network,
body.page-factories,
body.page-contact,
body.page-news,
body.page-products,
body.page-product-detail {
    background: var(--gray-50);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

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

[hidden] {
    display: none !important;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.9rem, 6vw, 5.1rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--gray-700);
}

.container {
    width: min(1400px, calc(100% - 4rem));
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--line);
}

.section-intro {
    max-width: 760px;
    margin-bottom: 3rem;
}

.section-intro.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-title {
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--gray-700);
    line-height: 1.75;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.95rem 1.6rem;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: #d7b977;
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    border-color: var(--line);
    color: var(--primary);
    background: var(--white);
}

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

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    width: min(1400px, calc(100% - 4rem));
    margin: 0 auto;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 64px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link,
.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    background: transparent;
    color: var(--gray-900);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.active,
.nav-trigger.active,
.nav-item.open > .nav-trigger {
    color: var(--accent);
}

.nav-item {
    position: relative;
}

.nav-item[data-nav-dropdown]::after {
    content: "";
    position: absolute;
    left: -0.85rem;
    right: -0.85rem;
    top: 100%;
    height: 1rem;
}

.nav-trigger-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    min-width: 248px;
    padding: 0.75rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease;
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-link {
    display: block;
    padding: 0.85rem 0.95rem;
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s ease;
}

.dropdown-link:hover {
    background: var(--gray-50);
    color: var(--accent);
}

.dropdown-link.active {
    background: var(--gray-50);
    color: var(--accent);
    font-weight: 600;
}

.nav-more-btn,
.nav-drawer-backdrop {
    display: none;
}

.nav-more-btn {
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nav-more-btn:hover,
.nav-more-btn[aria-expanded="true"] {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-more-icon {
    width: 18px;
    display: inline-grid;
    gap: 4px;
}

.nav-more-icon span {
    height: 2px;
    width: 100%;
    background: currentColor;
}

body.nav-drawer-open {
    overflow: hidden;
}

body.nav-drawer-open,
body.nav-drawer-mounted {
    overflow-x: clip;
}

.hero {
    position: relative;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.96), rgba(26, 58, 92, 0.78));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(12, 28, 47, 0.88), rgba(20, 45, 71, 0.55)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -18% 45%;
    height: 62%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.24), transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1400px, calc(100% - 4rem));
    margin: 0 auto;
    padding: 8rem 0 6rem;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero h1 strong {
    font-weight: 700;
    color: var(--accent);
}

.hero p {
    max-width: 720px;
    margin: 1.35rem 0 2.2rem;
    color: var(--gray-300);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-note {
    margin-bottom: 2.25rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 5.6rem 0 4.4rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(12, 28, 47, 0.84), rgba(18, 42, 68, 0.55)), var(--page-hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.92;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 4rem));
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb span {
    color: var(--accent);
}

.page-hero p {
    max-width: 760px;
    margin: 1rem auto 0;
    color: var(--gray-300);
    font-size: 1.05rem;
}

.page-hero h1 strong {
    color: var(--accent);
    font-weight: 700;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.media-panel {
    overflow: hidden;
    border: 1px solid var(--line);
}

.media-panel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.bullet-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--gray-700);
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    background: var(--accent);
}

.card-grid {
    display: grid;
    gap: 2rem;
}

.card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.56);
    box-shadow: var(--shadow);
}

.service-card {
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-card-body {
    padding: 1.7rem;
}

.eyebrow {
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card h3,
.stat-card h3,
.factory-card h3,
.news-card h3,
.contact-card h3,
.region-column h3,
.office-card h3,
.compare-card h3,
.feature-card h3 {
    color: var(--primary);
}

.service-tags,
.meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 1.4rem;
}

.service-tags span,
.meta-tags span,
.country-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.45rem 0.8rem;
    background: var(--gray-50);
    border: 1px solid var(--line);
    color: var(--gray-700);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.service-link {
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-section,
.network-preview,
.dark-band,
.contact-band,
.network-page-band {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

body.page-network .page-hero {
    background: linear-gradient(135deg, #1c446a, #2f5f88);
}

body.page-network .page-hero::before {
    background-image: linear-gradient(120deg, rgba(24, 52, 80, 0.68), rgba(38, 74, 108, 0.42)), var(--page-hero-image);
    opacity: 0.88;
}

.network-page-band {
    background: linear-gradient(135deg, #20496f, #346690);
    max-width: 100%;
    overflow-x: clip;
}

.stat-section .section-title,
.stat-section .section-subtitle,
.network-preview .section-title,
.network-preview .section-subtitle,
.dark-band .section-title,
.dark-band .section-subtitle,
.contact-band .section-title,
.contact-band .section-subtitle,
.network-page-band .section-title,
.network-page-band .section-subtitle {
    color: var(--white);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    padding: 2rem 1.4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.stat-card:hover {
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(201, 169, 97, 0.08);
}

.stat-number,
.network-number {
    color: var(--accent);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label,
.network-label {
    color: var(--gray-300);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.timeline {
    display: grid;
    gap: 1.2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 1.6rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}

.timeline-item:last-child {
    border-bottom: 1px solid var(--line);
}

.timeline-year {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 600;
}

.timeline-copy h3 {
    margin-bottom: 0.5rem;
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.logo-cell {
    min-height: 110px;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.cert-card {
    padding: 2.2rem 1.6rem;
    border: 2px solid var(--line);
    background: var(--white);
    text-align: center;
}

.cert-card strong {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.cert-card span {
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.network-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 2rem;
    align-items: start;
    margin-top: 3rem;
}

.network-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.network-stat-block {
    min-height: 220px;
    padding: 2rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.8rem;
}

.network-stat-block .network-number {
    font-size: clamp(2.25rem, 3.2vw, 3.8rem);
    margin-bottom: 0;
}

.region-panel {
    display: grid;
    gap: 1rem;
}

.region-column {
    padding: 1.7rem;
    border-left: 2px solid var(--accent);
    background: rgba(255, 255, 255, 0.03);
}

.region-column h3 {
    margin-bottom: 0.7rem;
}

.region-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.region-column ul,
.office-meta,
.compare-list,
.contact-list,
.detail-list {
    list-style: none;
}

.region-column li {
    padding: 0.45rem 0;
    color: var(--gray-300);
}

.office-meta li,
.compare-list li,
.contact-list li,
.detail-list li {
    padding: 0.45rem 0;
    color: var(--gray-700);
}

.factory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.factory-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
}

.factory-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.factory-body {
    padding: 1.8rem;
}

.factory-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.factory-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.factory-stat strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--accent);
    font-size: 1.3rem;
}

.factory-stat span {
    color: var(--gray-500);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.news-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
}

.news-card-image,
.news-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-card-carousel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--gray-100);
}

.news-card-slides {
    position: absolute;
    inset: 0;
}

.news-card-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.news-card-slide.active {
    opacity: 1;
}

.news-card-dots {
    position: absolute;
    right: 1rem;
    bottom: 0.85rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.news-card-dot {
    width: 34px;
    height: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.95);
    background: rgba(10, 18, 28, 0.72);
    box-shadow: 0 0 0 1px rgba(10, 18, 28, 0.85);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-card-dot.active {
    width: 54px;
    border-color: rgba(255, 255, 255, 0.98);
    background: #ffd166;
    box-shadow: 0 0 0 1px rgba(116, 79, 0, 0.95);
}

.news-card-body {
    padding: 1.6rem;
}

.news-date {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.news-card p {
    margin-top: 0.85rem;
}

.contact-band .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}

.contact-pill {
    padding: 1.7rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.contact-pill-label {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--gray-300);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.contact-pill-value {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
}

.product-filter {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
}

.product-filter div {
    min-height: 88px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 600;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.product-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
}

.product-card[data-sku] {
    cursor: pointer;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-card-body {
    padding: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card,
.compare-card,
.office-card,
.contact-card,
.detail-card {
    padding: 1.8rem;
    background: var(--white);
    border: 1px solid var(--line);
}

.feature-card p,
.compare-card p,
.office-card p,
.contact-card p,
.detail-card p {
    margin-top: 0.75rem;
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.kpi-card {
    padding: 2rem 1.4rem;
    border: 1px solid var(--line);
    background: var(--white);
    text-align: center;
}

.kpi-card strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 400;
}

.kpi-card span {
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.network-visual {
    position: relative;
    min-height: 480px;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 169, 97, 0.2), transparent 24%),
        radial-gradient(circle at 80% 28%, rgba(201, 169, 97, 0.16), transparent 22%),
        radial-gradient(circle at 58% 75%, rgba(201, 169, 97, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.network-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.22;
}

.signal-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.72), rgba(201, 169, 97, 0.18));
    transform-origin: left center;
}

.signal-node {
    position: absolute;
    z-index: 1;
    width: 170px;
    padding: 1rem 1rem 1rem 1.1rem;
    border-left: 2px solid var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.signal-node::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 1.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.55);
    animation: pulse 2.1s infinite;
}

.signal-node strong {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
}

.signal-node span {
    display: block;
    margin-top: 0.35rem;
    color: var(--gray-300);
    font-size: 0.84rem;
}

.signal-node small {
    display: block;
    margin-top: 0.7rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.country-regions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.country-region {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.country-region h3 {
    color: var(--white);
}

.country-region p {
    color: var(--gray-300);
    margin: 0.7rem 0 1.1rem;
}

.country-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.country-region .country-chip {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-100);
    animation: chipFade 0.8s ease both;
}

.country-region .country-chip:nth-child(2n) {
    animation-delay: 0.08s;
}

.country-region .country-chip:nth-child(3n) {
    animation-delay: 0.16s;
}

.product-detail-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
    gap: 2rem;
    align-items: start;
}

.product-visual-panel {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 1.5rem;
}

.product-visual-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.product-visual-media {
    position: relative;
    min-height: 390px;
    background:
        linear-gradient(160deg, rgba(11, 27, 47, 0.22), rgba(11, 27, 47, 0.58)),
        var(--detail-visual-image, url("../images/production-floor.jpg"));
    background-position: center;
    background-size: cover;
}

.product-visual-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(10, 21, 35, 0), rgba(10, 21, 35, 0.72));
}

.product-visual-icon {
    position: absolute;
    left: 1.6rem;
    top: 1.6rem;
    z-index: 1;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 2rem;
    backdrop-filter: blur(8px);
}

.product-detail-sku {
    margin-top: 0.9rem;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.product-detail-content {
    display: grid;
    gap: 2rem;
}

.product-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.product-spec-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1rem;
}

.product-spec-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.95rem;
    border-top: 1px solid var(--line);
}

.product-spec-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.product-spec-row span {
    color: var(--gray-500);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.product-spec-row strong {
    color: var(--primary);
    font-size: 0.96rem;
    text-align: right;
}

.product-inquiry-card h3 {
    color: var(--primary);
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.product-detail-actions .btn {
    flex: 1 1 190px;
}

.product-detail-section {
    display: grid;
    gap: 1.5rem;
}

.product-detail-section .section-intro {
    margin-bottom: 0;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-gallery-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(10, 20, 35, 0.12), rgba(10, 20, 35, 0.7)),
        var(--detail-gallery-image);
    background-size: cover;
    background-position: center;
}

.product-gallery-tile span {
    position: absolute;
    left: 1.1rem;
    bottom: 1rem;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

body.page-product-detail {
    background: var(--white);
}

.detail-reference-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--primary-dark);
}

.detail-reference-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(105deg, rgba(15, 37, 64, 0.9), rgba(15, 37, 64, 0.72)), var(--detail-hero-image);
    background-position: center;
    background-size: cover;
}

.detail-reference-hero-inner {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2.7rem;
}

.detail-reference-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.detail-reference-breadcrumb strong {
    color: var(--white);
}

.detail-reference-hero h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
}

.detail-reference-hero h1 strong {
    color: var(--accent);
    font-weight: 700;
}

.detail-reference-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.detail-reference-section {
    padding: 2rem 0 5rem;
}

.detail-reference-page {
    display: grid;
    gap: 1.4rem;
}

.detail-reference-top,
.detail-reference-story,
.detail-reference-size-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.8rem;
}

.detail-reference-gallery,
.detail-reference-info,
.detail-reference-story-copy,
.detail-reference-story-image,
.detail-reference-size-card,
.detail-reference-size-note {
    min-width: 0;
}

.detail-reference-main-frame {
    position: relative;
    padding: 1.7rem;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(11, 24, 40, 0.05);
}

.detail-reference-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    background: linear-gradient(180deg, #fefefe, #f7f9fc);
}

.detail-reference-main-image img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
}

.detail-reference-apparel-mock,
.detail-reference-thumb-mock {
    width: 100%;
    height: 100%;
}

.detail-reference-apparel-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
}

.detail-reference-apparel-shell {
    width: min(100%, 300px);
    aspect-ratio: 1 / 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-reference-apparel-shell svg,
.detail-reference-thumb-mock svg {
    width: 100%;
    height: 100%;
    fill: #16365b;
    stroke: #2a5d94;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-reference-apparel-caption {
    text-align: center;
}

.detail-reference-apparel-caption strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.detail-reference-apparel-caption span {
    display: block;
    margin-top: 0.2rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.detail-reference-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.detail-reference-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.9rem;
}

.detail-reference-thumb {
    width: 84px;
    height: 84px;
    padding: 0.45rem;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    transition: 0.25s ease;
}

.detail-reference-thumb.active,
.detail-reference-thumb:hover {
    border-color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent);
}

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

.detail-reference-thumb-mock {
    padding: 0.45rem;
    background: linear-gradient(180deg, #fefefe, #f6f8fb);
}

.detail-reference-title-block {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.detail-reference-title-block h2 {
    margin-bottom: 0.3rem;
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.detail-reference-sku {
    color: var(--accent);
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.detail-reference-facts {
    display: grid;
    gap: 0.55rem;
    margin: 1.1rem 0 1rem;
}

.detail-reference-fact-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.detail-reference-fact-row span {
    color: var(--gray-500);
}

.detail-reference-fact-row strong {
    color: var(--gray-900);
    font-weight: 500;
}

.detail-reference-description {
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.detail-reference-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.detail-reference-benefit,
.detail-reference-spec-item,
.detail-reference-feature-card,
.detail-reference-size-note {
    border: 1px solid var(--line);
    background: var(--white);
}

.detail-reference-benefit {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 78px;
    padding: 0.9rem 1rem;
}

.detail-reference-benefit span,
.detail-reference-spec-item strong,
.detail-reference-size-note h3 {
    color: var(--primary);
    font-weight: 600;
}

.detail-reference-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 97, 0.42);
    color: var(--accent);
    background: rgba(201, 169, 97, 0.08);
}

.detail-reference-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-reference-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.detail-reference-actions .btn {
    min-width: 220px;
}

.detail-reference-specband {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: var(--white);
}

.detail-reference-spec-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    min-height: 102px;
    padding: 1.2rem 1.25rem;
    border-width: 0 1px 0 0;
}

.detail-reference-spec-item:last-child {
    border-right: 0;
}

.detail-reference-spec-item span {
    display: block;
    margin-top: 0.15rem;
    color: var(--gray-700);
    font-size: 0.92rem;
}

.detail-reference-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-reference-story-copy h2 {
    margin-bottom: 0.9rem;
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 3.15rem);
}

.detail-reference-story-copy p {
    margin-bottom: 1rem;
}

.detail-reference-bullets {
    display: grid;
    gap: 0.7rem;
    list-style: none;
}

.detail-reference-bullets li {
    position: relative;
    padding-left: 1.7rem;
    color: var(--gray-700);
}

.detail-reference-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}

.detail-reference-story-image {
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f7f9fc;
}

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

.detail-reference-block {
    display: grid;
    gap: 0.85rem;
}

.detail-reference-feature-grid,
.detail-reference-photo-grid,
.detail-reference-related-grid {
    display: grid;
    gap: 1rem;
}

.detail-reference-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.detail-reference-feature-card {
    padding: 1.25rem 1rem;
    text-align: center;
}

.detail-reference-feature-card .detail-reference-icon {
    margin: 0 auto 0.9rem;
}

.detail-reference-feature-card h3 {
    margin-bottom: 0.55rem;
    color: var(--primary);
    font-size: 1rem;
}

.detail-reference-feature-card p {
    font-size: 0.87rem;
    line-height: 1.55;
}

.detail-reference-photo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.detail-reference-photo-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
}

.detail-reference-photo-image {
    position: relative;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
}

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

.detail-reference-photo-badge {
    position: absolute;
    left: 0.7rem;
    top: 0.7rem;
}

.detail-reference-photo-copy {
    padding: 0.95rem 0.95rem 1rem;
    text-align: center;
}

.detail-reference-photo-copy h3 {
    margin-bottom: 0.4rem;
    color: var(--primary);
    font-size: 0.96rem;
}

.detail-reference-photo-copy p {
    font-size: 0.82rem;
    line-height: 1.5;
}

.detail-reference-scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.detail-reference-scenario-card {
    position: relative;
    min-height: 156px;
    overflow: hidden;
    border: 1px solid var(--line);
}

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

.detail-reference-scenario-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.55rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(10, 22, 36, 0.1), rgba(10, 22, 36, 0.76));
    color: var(--white);
}

.detail-reference-scenario-overlay .detail-reference-icon {
    width: 38px;
    height: 38px;
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.detail-reference-size-card {
    padding: 1.1rem 1.1rem 1.25rem;
    border: 1px solid var(--line);
    background: var(--white);
}

.detail-reference-size-table-wrap {
    overflow-x: auto;
}

.detail-reference-size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.detail-reference-size-table th,
.detail-reference-size-table td {
    padding: 0.75rem 0.7rem;
    border: 1px solid var(--line);
    text-align: center;
}

.detail-reference-size-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.detail-reference-size-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem;
}

.detail-reference-size-note-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.detail-reference-size-note-icon svg {
    width: 54px;
    height: 54px;
    stroke: currentColor;
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-reference-size-note p {
    margin-top: 0.35rem;
}

.detail-reference-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.55rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.detail-reference-cta-copy {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-reference-cta-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.detail-reference-cta-icon svg {
    width: 42px;
    height: 42px;
    stroke: currentColor;
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-reference-cta h3 {
    margin-bottom: 0.25rem;
}

.detail-reference-cta p {
    color: rgba(255, 255, 255, 0.86);
}

.detail-reference-cta .btn-primary {
    min-width: 180px;
    background: #d4af5f;
}

.detail-reference-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-reference-related-card {
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--white);
    text-align: center;
}

.detail-reference-related-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 176px;
    margin-bottom: 0.9rem;
    background: linear-gradient(180deg, #fdfdfd, #f4f7fb);
}

.detail-reference-related-image .detail-reference-apparel-mock {
    gap: 0.4rem;
    padding: 0.75rem;
}

.detail-reference-related-image .detail-reference-apparel-shell {
    width: min(100%, 130px);
}

.detail-reference-related-image .detail-reference-apparel-caption strong {
    font-size: 0.92rem;
}

.detail-reference-related-image .detail-reference-apparel-caption span {
    font-size: 0.74rem;
}

.detail-reference-related-card h3 {
    margin-bottom: 0.3rem;
    color: var(--primary);
    font-size: 1rem;
}

.detail-reference-related-card span {
    display: block;
    margin-bottom: 0.9rem;
    color: var(--gray-500);
    font-size: 0.82rem;
}

.detail-reference-related-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 40px;
    padding: 0.65rem 1rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.detail-reference-related-card a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Reference-style product detail page */
.page-product-detail {
    background: var(--white);
}

.page-product-detail .breadcrumb-bar {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--line);
    background: var(--gray-50);
}

.page-product-detail .breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    color: var(--gray-500);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.page-product-detail .breadcrumb a {
    color: var(--gray-500);
    transition: color 0.25s ease;
}

.page-product-detail .breadcrumb a:hover {
    color: var(--accent);
}

.page-product-detail .breadcrumb-sep {
    margin: 0 0.6rem;
    color: var(--gray-300);
}

.page-product-detail .breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

.product-detail {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    position: relative;
    width: 100%;
    padding: 2rem;
    border: 1px solid var(--line);
    background: var(--gray-50);
}

.product-main-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
}

.product-main-visual img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.product-zoom-lens {
    position: absolute;
    z-index: 4;
    display: none !important;
    width: var(--zoom-lens-width, 210px);
    height: var(--zoom-lens-height, 210px);
    pointer-events: none;
}

.product-zoom-preview {
    position: fixed;
    z-index: 30;
    display: none;
    top: 0;
    left: 0;
    width: var(--product-zoom-preview-size, 380px);
    height: var(--product-zoom-preview-size, 380px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--gray-50);
    box-shadow: 0 24px 70px rgba(9, 21, 36, 0.18);
    pointer-events: none;
}

.product-zoom-preview.active {
    display: block;
}

.product-zoom-preview-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-zoom-source-clone {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    background: var(--gray-50);
    transform-origin: 0 0;
    will-change: transform;
}

.product-art-no {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.detail-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    width: 100%;
    max-width: calc(76px * 5 + 0.6rem * 4);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.detail-thumbs::-webkit-scrollbar,
.color-options::-webkit-scrollbar {
    display: none;
}

.detail-thumb {
    width: 76px;
    flex: 0 0 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    scroll-snap-align: start;
}

.detail-thumb-card {
    width: 76px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--line);
    border-radius: 6px;
    background: #f7f7f7;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.detail-thumb-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.detail-thumb:hover .detail-thumb-card,
.detail-thumb.active .detail-thumb-card {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 41, 66, 0.12);
}

.detail-thumb.active .detail-thumb-card {
    border-color: var(--primary);
}

.detail-thumb span {
    color: var(--gray-500);
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: center;
}

.product-info-panel {
    padding-top: 1rem;
}

.product-category-tag {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.product-title {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.product-subtitle {
    margin-bottom: 2.5rem;
    color: var(--gray-500);
    font-size: 1.1rem;
}

.spec-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.spec-section:last-of-type {
    border-bottom: 0;
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.spec-number {
    width: 32px;
    height: 32px;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
}

.spec-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.spec-content {
    padding-left: 3rem;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.8;
}

.spec-content strong {
    color: var(--primary);
    font-weight: 600;
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding-left: 3rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--line);
    background: var(--gray-50);
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-pill::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
}

.color-options {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    width: 100%;
    max-width: calc(76px * 5 + 0.6rem * 4);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.color-swatch {
    width: 76px;
    flex: 0 0 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    scroll-snap-align: start;
}

.color-card {
    width: 76px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--line);
    border-radius: 6px;
    background: #f7f7f7;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-card img,
.color-card .thumb-mock {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-swatch:hover .color-card,
.color-swatch.active .color-card {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 41, 66, 0.12);
}

.color-swatch.active .color-card {
    border-color: var(--primary);
}

.option-carousel {
    display: grid;
    grid-template-columns: 34px minmax(0, auto) 34px;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    max-width: 100%;
}

.product-gallery > .option-carousel {
    margin: 1.2rem auto 0;
}

.spec-section .option-carousel {
    margin-left: 3rem;
}

.option-carousel:not(.has-overflow) {
    grid-template-columns: minmax(0, auto);
}

.option-carousel:not(.has-overflow) .option-carousel-arrow {
    display: none;
}

.option-carousel-arrow {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.option-carousel-arrow:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.option-carousel-arrow:disabled {
    cursor: default;
    opacity: 0.3;
}

.color-name {
    color: var(--gray-500);
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: center;
}

.product-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.product-detail-btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.product-detail-btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.product-detail-btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.product-detail-btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.manufacturer-section {
    padding: 2rem 2rem 0;
    background: transparent;
}

.manufacturer-rich-text {
    max-width: 1400px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 0.98rem;
    line-height: 1.8;
}

.manufacturer-rich-text > :first-child {
    margin-top: 0;
}

.manufacturer-rich-text > :last-child {
    margin-bottom: 0;
}

.manufacturer-rich-text h1,
.manufacturer-rich-text h2,
.manufacturer-rich-text h3,
.manufacturer-rich-text h4,
.manufacturer-rich-text h5,
.manufacturer-rich-text h6 {
    margin: 0 0 0.5rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
}

.manufacturer-rich-text p,
.manufacturer-rich-text ul,
.manufacturer-rich-text ol,
.manufacturer-rich-text blockquote {
    margin: 0 0 0.8rem;
}

.manufacturer-rich-text ul,
.manufacturer-rich-text ol {
    padding-left: 1.4rem;
}

.manufacturer-rich-text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.manufacturer-rich-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.4rem 0 1.8rem;
}

.manufacturer-rich-gallery figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    background: var(--white);
}

.manufacturer-rich-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.manufacturer-rich-gallery figcaption {
    padding: 0.75rem 0.85rem;
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.4;
}

.related-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.related-header {
    margin-bottom: 3rem;
    text-align: center;
}

.related-header h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.related-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.related-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    color: var(--accent);
    font-size: 3.5rem;
    transition: background 0.35s ease, color 0.35s ease;
}

.related-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.related-card:hover .related-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.related-info {
    padding: 1.2rem;
    text-align: center;
}

.related-name {
    margin-bottom: 0.3rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.related-sku {
    color: var(--gray-500);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.product-detail-apparel-mock {
    width: min(100%, 320px);
    display: grid;
    place-items: center;
    gap: 0.75rem;
    color: var(--primary);
}

.product-detail-apparel-shell {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1.15;
}

.product-detail-apparel-shell svg,
.thumb-mock svg {
    width: 100%;
    height: 100%;
    fill: #16365b;
    stroke: #2a5d94;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-detail-apparel-caption {
    text-align: center;
}

.product-detail-apparel-caption strong,
.product-detail-apparel-caption span {
    display: block;
}

.product-detail-apparel-caption strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.product-detail-apparel-caption span {
    margin-top: 0.2rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.related-image .product-detail-apparel-mock {
    width: min(80%, 150px);
}

.related-image .product-detail-apparel-caption {
    display: none;
}

@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-zoom-preview,
    .product-zoom-lens {
        display: none !important;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .manufacturer-rich-gallery {
        grid-template-columns: 1fr;
    }
}

@media (hover: none), (pointer: coarse) {
    .product-main-visual {
        cursor: default;
    }

    .product-zoom-preview,
    .product-zoom-lens {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .page-product-detail .breadcrumb-bar {
        padding: 1rem;
    }

    .product-detail {
        padding: 2rem 1rem;
    }

    .product-main-image {
        padding: 1rem;
    }

    .product-main-visual {
        min-height: 360px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .spec-content,
    .features-tags {
        padding-left: 0;
    }

    .spec-section .option-carousel {
        margin-left: 0;
    }

    .product-cta {
        flex-direction: column;
    }

    .product-detail-btn {
        width: 100%;
        text-align: center;
    }

    .related-section {
        padding: 3rem 1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

.world-map-layout {
    margin: 0 auto;
    width: min(100%, calc(100% - 2.2rem));
    max-width: 100%;
}

.world-map-bleed {
    margin-top: 3rem;
    max-width: 100%;
    overflow-x: clip;
}

.world-map-stage {
    position: relative;
    aspect-ratio: 2754 / 1398;
    padding: 0;
    overflow: visible;
    background: transparent;
}

.world-map-stage::before {
    display: none;
}

.world-map-graphic-shell {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.world-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.62;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.18));
}

.map-marker {
    position: absolute;
    z-index: 1;
    left: var(--x);
    top: var(--y);
}

.map-marker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: var(--line-length, 84px);
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.88), rgba(201, 169, 97, 0.18));
    transform: rotate(var(--line-angle, 0deg));
    transform-origin: 0 50%;
    pointer-events: none;
}

.map-marker-pin {
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.55);
    animation: pulse 2.2s infinite;
}

.map-marker-card {
    position: absolute;
    z-index: 1;
    left: var(--card-x, 22px);
    top: var(--card-y, -48px);
    width: var(--card-width, clamp(210px, 14vw, 250px));
    padding: 0.95rem 1rem 1rem 1.1rem;
    border-left: 2px solid var(--accent);
    background: rgba(10, 23, 40, 0.78);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 34px rgba(4, 12, 24, 0.2);
}

.map-marker strong {
    display: block;
    color: var(--white);
    font-size: 1.04rem;
}

.map-marker span {
    display: block;
    margin-top: 0.45rem;
    color: var(--gray-300);
    font-size: 0.86rem;
}

.map-marker small {
    display: block;
    margin-top: 0.7rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .world-map-layout {
        width: min(100%, calc(100% - 2.2rem));
    }

    .map-marker-card {
        width: min(220px, 18vw);
        padding: 0.9rem 0.9rem 0.95rem 1rem;
    }

    .region-north-america .map-marker-card,
    .region-uk .map-marker-card,
    .region-europe .map-marker-card,
    .region-nordics .map-marker-card,
    .region-asia-pacific .map-marker-card,
    .region-china-hub .map-marker-card,
    .region-bangladesh-hub .map-marker-card {
        left: var(--card-x);
        top: var(--card-y);
    }
}

.factory-operations-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.factory-overview-panel {
    position: static;
    padding: 1.5rem 1.6rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--white), #f6f7fa);
}

.factory-overview-panel .section-title {
    margin-bottom: 0.7rem;
}

.factory-overview-panel .section-subtitle {
    margin-bottom: 1.1rem;
    max-width: 940px;
}

.factory-summary-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.factory-summary-item {
    padding: 0.9rem 0.95rem;
    border-left: 2px solid var(--accent);
    background: var(--gray-50);
}

.factory-summary-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 0.96rem;
}

.factory-summary-item span {
    color: var(--gray-700);
    font-size: 0.9rem;
}

.factory-lanes {
    display: grid;
    gap: 1.5rem;
}

.factory-lane {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--white);
}

.factory-lane.reverse {
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
}

.factory-lane-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.factory-lane-body {
    padding: 2rem;
}

.factory-lane-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.factory-lane-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1.2rem;
}

.factory-lane-head h3 {
    color: var(--primary);
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
    line-height: 1.05;
}

.factory-lane-heading {
    display: grid;
    gap: 0.3rem;
}

.factory-lane-company,
.factory-lane-role {
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.factory-lane-role {
    display: block;
}

.factory-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.15rem 0 1.25rem;
}

.factory-brief-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.factory-brief-list li {
    color: var(--gray-700);
}

.lane-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.lane-metric strong {
    display: block;
    color: var(--accent);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.lane-metric span {
    color: var(--gray-500);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.factory-route-band {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.factory-route-band .section-title,
.factory-route-band .section-subtitle {
    color: var(--white);
}

.factory-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.route-card {
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.route-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
}

.route-card h3 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.route-card p {
    color: var(--gray-300);
}

.contact-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.contact-snapshot-card {
    padding: 1.8rem;
    border: 1px solid var(--line);
    background: var(--white);
}

.contact-snapshot-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-snapshot-card h3 {
    color: var(--primary);
}

.news-page-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.4rem;
}

.news-page-copy {
    max-width: 720px;
}

.news-page-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-width: min(100%, 260px);
}

.news-meta-box {
    padding: 1rem;
    border: 1px solid var(--line);
    background: var(--white);
    text-align: center;
}

.news-meta-box strong {
    display: block;
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 500;
}

.news-meta-box span {
    color: var(--gray-500);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.news-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-list-card .news-card-body {
    display: grid;
    gap: 0.7rem;
}

.news-card-tag {
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.pagination-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0 1rem;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
}

.page-news-detail {
    background: linear-gradient(180deg, #f8f8f6 0%, #ffffff 24%, #f8f8f6 100%);
}

.news-detail-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
    background-image: var(--news-detail-hero-image);
    background-position: center;
    background-size: cover;
}

.news-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 27, 48, 0.86) 0%, rgba(10, 27, 48, 0.7) 45%, rgba(10, 27, 48, 0.72) 100%);
}

.news-detail-hero-inner {
    position: relative;
    z-index: 1;
    padding: 3.4rem 0 3.2rem;
    color: var(--white);
}

.news-detail-hero .breadcrumb {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.news-detail-hero .breadcrumb span {
    color: var(--accent);
}

.news-detail-hero h1 {
    max-width: 980px;
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 300;
    line-height: 1.02;
}

.news-detail-hero h1 span {
    color: var(--accent);
    font-weight: 600;
}

.news-detail-hero p {
    max-width: 760px;
    margin-top: 1.3rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-news-detail .news-detail-hero h1,
.page-news-detail .news-detail-hero p {
    display: none;
}

.news-detail-section {
    background: transparent;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.78fr);
    gap: 2rem;
    align-items: start;
}

.news-detail-article,
.news-detail-sidebar-card,
.news-detail-stats-card {
    border: 1px solid var(--line);
    background: var(--white);
}

.news-detail-article {
    padding: 1.7rem;
}

.news-detail-title {
    max-width: 900px;
    margin-bottom: 1.05rem;
    color: var(--primary);
    font-size: clamp(2rem, 4.3vw, 3.45rem);
    line-height: 1.08;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 1.5rem;
    margin-bottom: 1.55rem;
}

.news-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gray-700);
    font-size: 0.88rem;
}

.news-detail-meta-item::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid var(--accent);
}

.news-detail-feature-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 1.75rem;
}

.news-detail-copy {
    display: grid;
    gap: 1.2rem;
}

.news-detail-copy p {
    font-size: 1rem;
    line-height: 1.9;
}

.news-detail-body-section {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

.news-detail-body-section h3 {
    color: var(--primary);
    font-size: 1.7rem;
}

.news-detail-quote {
    margin: 0.25rem 0;
    padding: 0.2rem 0 0.2rem 1.6rem;
    border-left: 3px solid var(--accent);
}

.news-detail-quote p {
    color: var(--primary);
    font-size: 1.24rem;
    font-style: italic;
    line-height: 1.7;
}

.news-detail-quote footer {
    margin-top: 0.7rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gray-700);
    font-size: 0.94rem;
}

.news-detail-sidebar {
    display: grid;
    gap: 1.3rem;
}

.news-detail-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-detail-stat-box {
    display: grid;
    place-items: center;
    min-height: 114px;
    padding: 1rem;
    border-right: 1px solid var(--line);
    background: var(--white);
    text-align: center;
}

.news-detail-stat-box:last-child {
    border-right: 0;
}

.news-detail-stat-box strong {
    color: var(--accent);
    font-size: 1.7rem;
    font-weight: 500;
}

.news-detail-stat-box span {
    color: var(--gray-500);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.news-detail-share-btn {
    border: 0;
    cursor: pointer;
}

.news-detail-sidebar-card {
    padding: 1.55rem;
}

.news-detail-sidebar-title-row {
    margin-bottom: 1.15rem;
}

.news-detail-sidebar-title-row h3 {
    color: var(--primary);
    font-size: 1.7rem;
}

.news-detail-recent-list,
.news-detail-category-list {
    display: grid;
}

.news-detail-recent-item,
.news-detail-category-item {
    display: grid;
    gap: 0.9rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.news-detail-recent-item:first-child,
.news-detail-category-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.news-detail-recent-item {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
}

.news-detail-recent-item img {
    width: 88px;
    height: 70px;
    object-fit: cover;
}

.news-detail-recent-copy {
    display: grid;
    gap: 0.35rem;
}

.news-detail-recent-copy span {
    color: var(--accent);
    font-size: 0.78rem;
}

.news-detail-recent-copy strong {
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.news-detail-inline-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.news-detail-category-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.news-detail-category-item span {
    color: var(--gray-700);
}

.news-detail-category-item em {
    color: var(--gray-500);
    font-style: normal;
}

.news-detail-category-item.active span,
.news-detail-category-item:hover span {
    color: var(--accent);
}

.news-detail-cta-card {
    padding: 1.75rem;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.news-detail-cta-card h3 {
    margin-bottom: 0.9rem;
    font-size: 2rem;
}

.news-detail-cta-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.82);
}

.news-detail-cta-card .btn {
    min-width: 180px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.office-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 1.35rem;
}

.office-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.office-badge {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.office-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.office-stats strong {
    display: block;
    color: var(--accent);
    font-size: 1.4rem;
}

.office-stats span {
    color: var(--gray-500);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
}

.contact-card,
.detail-card {
    min-height: 100%;
}

.contact-label {
    display: inline-block;
    margin-bottom: 0.6rem;
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-empty {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-message-section {
    background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.contact-message-form {
    display: grid;
    gap: 1.15rem;
    padding: 2rem;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-message-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
}

.contact-message-field {
    display: grid;
}

.contact-message-field span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.contact-message-field-wide {
    grid-column: 1 / -1;
}

.contact-message-field input,
.contact-message-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 1rem 1.15rem;
    color: var(--gray-900);
    background: var(--gray-50);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-message-field textarea {
    min-height: 78px;
    resize: vertical;
}

.contact-message-field input:focus,
.contact-message-field textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}

.contact-message-note,
.contact-message-status {
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.contact-message-status {
    min-height: 1.35em;
    color: var(--primary);
    text-align: center;
}

.contact-message-submit {
    justify-self: center;
    min-width: 240px;
    min-height: 52px;
    margin-top: 0.45rem;
    border: 0;
    border-radius: 0;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-message-submit:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    border: 1px solid var(--line);
    background: var(--white);
}

footer {
    background: #050a14;
    color: var(--gray-300);
    padding: 3rem 0 1.6rem;
}

.footer-grid {
    width: min(1400px, calc(100% - 4rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 2.4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-500);
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    padding: 0.4rem 0;
}

.footer-col a {
    color: var(--gray-300);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    width: min(1400px, calc(100% - 4rem));
    margin: 1.4rem auto 0;
    color: var(--gray-500);
    font-size: 0.85rem;
    text-align: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.52);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(201, 169, 97, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }
}

@keyframes chipFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .card-grid.cols-4,
    .cert-grid,
    .stat-grid,
    .network-stat-grid,
    .contact-band .contact-grid,
    .kpi-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .logo-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .news-grid,
    .news-list-grid,
    .product-summary-grid,
    .product-gallery-grid,
    .product-showcase,
    .feature-grid,
    .country-regions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-reference-benefits,
    .detail-reference-specband,
    .detail-reference-feature-grid,
    .detail-reference-photo-grid,
    .detail-reference-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-reference-scenario-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .world-map-layout,
    .factory-operations-shell,
    .factory-route-grid,
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .factory-overview-panel {
        position: static;
    }

    .map-marker {
        width: min(220px, 31%);
    }
}

@media (max-width: 1024px) {
    .container,
    .nav-shell,
    .hero-content,
    .page-hero-content,
    .footer-grid,
    .footer-bottom {
        width: min(100%, calc(100% - 2.2rem));
    }

    .split-grid,
    .network-preview-grid,
    .world-map-layout,
    .office-grid,
    .factory-grid,
    .contact-page-grid,
    .factory-operations-shell,
    .product-detail-shell,
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-reference-top,
    .detail-reference-story,
    .detail-reference-size-grid {
        grid-template-columns: 1fr;
    }

    .product-visual-panel {
        position: static;
    }

    .product-filter {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .factory-lane,
    .factory-lane.reverse {
        grid-template-columns: 1fr;
    }

    .world-map-layout {
        width: min(100%, calc(100% - 2.2rem));
    }

    .world-map-stage {
        height: clamp(620px, 54vw, 900px);
    }

    .map-marker-card {
        width: min(240px, 24vw);
    }

    .news-page-meta {
        width: 100%;
    }

    .factory-summary-stack {
        grid-template-columns: 1fr;
    }

    .news-detail-sidebar {
        grid-template-columns: 1fr 1fr;
    }

    .news-detail-cta-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1100px) and (min-width: 821px) {
    .world-map-layout {
        width: min(100%, calc(100% - 2.2rem));
    }

    .world-map-stage {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        padding-top: min(46vw, 370px);
    }

    .world-map-graphic-shell {
        inset: 0.75rem 0.25rem auto 0.25rem;
        height: min(40vw, 340px);
    }

    .world-map-image {
        width: 100%;
        height: 100%;
    }

    .map-marker {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
    }

    .map-marker::before {
        display: none;
    }

    .map-marker-pin {
        left: 0.95rem;
        top: 1.25rem;
        transform: none;
    }

    .map-marker-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        min-height: 100%;
        padding-left: 1.9rem;
    }
}

@media (max-width: 820px) {
    .nav-shell {
        position: relative;
        min-height: 68px;
        padding: 0.55rem 0;
        align-items: center;
        flex-direction: row;
        gap: 0.7rem;
    }

    .nav-more-btn {
        display: inline-flex;
    }

    .nav-shell > .nav-links.nav-drawer-panel {
        display: none;
    }

    .nav-drawer-host {
        position: fixed;
        inset: 0;
        z-index: 10020;
        overflow: hidden;
        pointer-events: none;
    }

    .nav-drawer-host[hidden] {
        display: none !important;
    }

    .nav-drawer-host .nav-drawer-panel {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: clamp(280px, var(--nav-drawer-width-fluid), var(--nav-drawer-width));
        max-width: var(--nav-drawer-width);
        min-width: 0;
        margin: 0;
        padding: 5.4rem 1.1rem 1.3rem;
        border-left: 1px solid var(--line);
        background: var(--white);
        box-shadow: -14px 0 34px rgba(9, 21, 36, 0.16);
        box-sizing: border-box;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        flex-shrink: 0;
        overflow-y: auto;
        pointer-events: auto;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.28s ease;
        will-change: transform;
    }

    body.nav-drawer-open .nav-drawer-host .nav-drawer-panel {
        transform: translate3d(0, 0, 0);
    }

    .nav-drawer-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 10010;
        border: 0;
        background: rgba(8, 19, 33, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
    }

    body.nav-drawer-open .nav-drawer-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item[data-nav-dropdown]::after {
        display: none;
    }

    .nav-link,
    .nav-trigger {
        width: 100%;
        min-height: 40px;
        padding: 0.58rem 0.22rem;
        justify-content: space-between;
        letter-spacing: 0.65px;
    }

    .dropdown-menu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        margin: 0;
        padding: 0.22rem 0 0.48rem 0.72rem;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 0.62rem 0.4rem;
        border-radius: 0;
        font-size: 0.86rem;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .logo-wall,
    .product-filter,
    .card-grid.cols-3,
    .card-grid.cols-2,
    .news-grid,
    .news-list-grid,
    .product-summary-grid,
    .product-gallery-grid,
    .product-showcase,
    .feature-grid,
    .country-regions,
    .contact-band .contact-grid,
    .cert-grid,
    .stat-grid,
    .network-stat-grid,
    .kpi-row,
    .contact-snapshot-grid,
    .news-page-meta,
    .contact-message-grid {
        grid-template-columns: 1fr;
    }

    .contact-message-submit {
        width: 100%;
        min-width: 0;
    }

    .detail-reference-benefits,
    .detail-reference-specband,
    .detail-reference-feature-grid,
    .detail-reference-photo-grid,
    .detail-reference-scenario-grid,
    .detail-reference-related-grid {
        grid-template-columns: 1fr;
    }

    .factory-stats,
    .office-stats,
    .lane-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .detail-reference-cta,
    .detail-reference-cta-copy,
    .detail-reference-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .network-page-band {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .network-page-band .world-map-bleed {
        margin-top: 0;
    }

    .network-page-band .world-map-layout {
        width: min(100%, calc(100% - 2.2rem));
    }

    .network-page-band .world-map-stage {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
        padding: 0;
        overflow: hidden;
        background: transparent;
    }

    .network-page-band .world-map-stage::before {
        display: none;
    }

    .network-page-band .world-map-graphic-shell {
        position: relative;
        inset: auto;
        order: -1;
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 2754 / 1398;
        max-height: 200px;
        margin: 0 0 0.35rem;
        border-radius: 12px;
        overflow: hidden;
        background: transparent;
    }

    .network-page-band .world-map-image {
        width: 100%;
        height: 100%;
        opacity: 0.58;
    }

    .network-page-band .map-marker {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        display: block;
    }

    .network-page-band .map-marker::before,
    .network-page-band .map-marker-pin {
        display: none;
    }

    .network-page-band .map-marker-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        min-height: 0;
        padding: 1rem 1.05rem 1.05rem 1.15rem;
        border-left: 3px solid var(--accent);
        border-radius: 10px;
    }

    .network-page-band .map-marker strong {
        font-size: 1rem;
    }

    .network-page-band .map-marker span {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .news-page-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-detail-sidebar {
        grid-template-columns: 1fr;
    }

    .news-detail-stats-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-stat-box {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .news-detail-stat-box:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4.5rem 0;
    }

    .hero-content {
        padding: 7rem 0 5rem;
    }

    .footer-brand img {
        height: 54px;
    }

    .logo img {
        height: 36px;
        max-width: 118px;
    }

    .detail-reference-hero-inner {
        padding: 2.35rem 0 2.1rem;
    }

    .detail-reference-main-frame {
        padding: 1rem;
    }

    .detail-reference-main-image {
        min-height: 280px;
    }

    .detail-reference-thumb {
        width: 72px;
        height: 72px;
    }

    .detail-reference-fact-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .detail-reference-size-card,
    .detail-reference-size-note {
        padding: 1rem;
    }

    .factory-stats,
    .office-stats,
    .lane-metrics {
        grid-template-columns: 1fr;
    }

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

    .dropdown-menu {
        min-width: 0;
    }

    .network-stat-block {
        min-height: 180px;
    }

    .news-detail-hero-inner {
        padding: 3.4rem 0 3.8rem;
    }

    .news-detail-article,
    .news-detail-sidebar-card,
    .news-detail-cta-card {
        padding: 1.15rem;
    }

    .news-detail-title {
        font-size: 2.2rem;
    }

    .news-detail-body-section h3,
    .news-detail-sidebar-title-row h3 {
        font-size: 1.45rem;
    }

    .news-detail-recent-item {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .news-detail-recent-item img {
        width: 72px;
        height: 62px;
    }

    .product-visual-media {
        min-height: 300px;
    }

    .product-detail-actions .btn {
        flex-basis: 100%;
    }

    .network-page-band .world-map-graphic-shell {
        max-height: 180px;
    }

}
