:root {
    --orange: #FF8C00;
    --orange-dark: #E07B00;
    --orange-glow: rgba(255, 140, 0, 0.35);
    --navy: #0c0c0e;
    --ink: #f4f4f2;
    --ink-soft: #c6c6ce;
    --gray-700: #b7b7c0;
    --gray-500: #8b8b95;
    --gray-300: #46464e;
    --surface: #1c1c20;
    --surface-alt: #18181b;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1200px;
    --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Space Grotesk has no Cyrillic subset (latin/latin-ext/vietnamese only),
   so Russian headings would silently fall back to Inter. Manrope covers
   Cyrillic with the closest geometric-sans character to Space Grotesk. */
html[lang="ru"] {
    --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-soft);
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin: 0 0 16px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.eyebrow-light { color: rgba(255, 255, 255, 0.85); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
    border: 1.5px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 24px var(--orange-glow);
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 16px 32px var(--orange-glow); }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--ink);
}

.btn-outline:hover { border-color: var(--orange); background: var(--orange); color: var(--white); transform: translateY(-3px); }

/* Scroll reveal — hidden state only applies once JS has run (html.js class,
   set by the inline <head> script). Without JS, content stays visible
   instead of being permanently stuck at opacity:0. */
html.js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

html.js [data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.82);
    backdrop-filter: blur(10px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 8px;
    padding-bottom: 8px;
}

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

.main-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
    font-weight: 600;
    font-size: 0.92rem;
}

.main-nav a {
    position: relative;
    color: var(--ink);
    opacity: 0.78;
    padding: 6px 0;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: right 0.28s var(--ease);
}

.main-nav a:hover { opacity: 1; color: var(--ink); }
.main-nav a:hover::after { right: 0; }

.main-nav a.active { opacity: 1; color: var(--ink); }
.main-nav a.active::after { right: 0; }

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font: inherit;
    font-weight: 600;
    color: var(--ink);
    opacity: 0.78;
    padding: 6px 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nav-dropdown-trigger svg { transition: transform 0.25s var(--ease); }
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { opacity: 1; }
.nav-dropdown.open .nav-dropdown-trigger svg,
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 2px;
    min-width: 340px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    opacity: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active { background: var(--surface-alt); color: var(--orange); }

.lang-switch {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 2px;
    padding: 3px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.lang-switch-btn {
    border: none;
    background: none;
    font: inherit;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    padding: 7px 13px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch-btn:hover { color: var(--ink); }

.lang-switch-btn.active {
    background: var(--orange);
    color: var(--white);
}

.nav-cta { flex-shrink: 0; padding: 12px 26px; font-size: 0.9rem; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 148px 0 116px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 560px at 82% -10%, var(--orange-glow), transparent 60%),
        radial-gradient(ellipse 700px 500px at -10% 110%, rgba(255, 140, 0, 0.16), transparent 60%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 64px),
        var(--navy);
    pointer-events: none;
}

.hero-inner { position: relative; max-width: 800px; }

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin: 0 0 22px;
    color: var(--white);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.14rem;
    line-height: 1.65;
    margin: 0 0 40px;
    max-width: 620px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Page hero (interior pages) */
.page-hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 116px 0 76px;
    overflow: hidden;
}

.page-hero-inner { position: relative; max-width: 760px; }

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--white);
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.06rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.page-hero .hero-actions { margin-top: 32px; }

/* Sections */
.section { padding: 128px 0; }
.section-alt { background: var(--surface-alt); }

.section-heading { max-width: 640px; margin: 0 0 56px; }
.section-heading h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); margin: 0 0 14px; }
.section-subtitle { color: var(--gray-700); margin: 0; font-size: 1.02rem; }

/* About */
.about-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); margin: 0 0 20px; }
.about-text p { color: var(--gray-700); font-size: 1.03rem; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat {
    background: var(--surface-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 26px 14px;
    text-align: center;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.stat:hover { transform: translateY(-4px); border-color: var(--orange); }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-700);
    margin-top: 6px;
}

/* Brands */
.brand-strip {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.brand-badge {
    flex: 1 1 180px;
    background: var(--surface);
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 34px 16px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
    transition: color 0.25s ease, background-color 0.25s ease;
}

.brand-badge:hover { color: var(--orange); background: var(--surface-alt); }

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Center a lone card left over in the final row (e.g. 7 cards = 2 full rows + 1) */
.category-grid > .category-card:nth-child(3n+1):last-child {
    grid-column: 2;
}

.category-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 140, 0, 0.35);
}

.category-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(150deg, #efefec, #dcdcdb);
    overflow: hidden;
}

.category-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 22px;
    transition: transform 0.5s var(--ease);
}

/* Beyaz stüdyo zemini olan ürün fotoğrafları için: piksel bazlı kesim
   yerine .category-photo'nun kendi açık gri gradientine karıştırılıyor.
   Beyaz zemin multiply altında görünmez olur, ürünün kendi gölgesi ise
   zeminle doğal şekilde karışıp korunur — kenarlarda kesim kaynaklı
   halo/leke riski yok. */
.category-photo img.blend-multiply {
    mix-blend-mode: multiply;
}

.category-card:hover .category-photo img { transform: scale(1.05); }

.category-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -22px 26px -14px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.category-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-bottom: 2px solid transparent;
    box-shadow: inset 0 0 0 0 var(--orange);
    transition: box-shadow 0.35s var(--ease);
    pointer-events: none;
    z-index: 1;
}

.category-card:hover .category-photo::before { box-shadow: inset 0 -3px 0 0 var(--orange); }

.category-photo-fallback,
.category-photo--empty {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.38);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 10px, transparent 10px 20px),
        var(--surface-alt);
}

.category-photo--empty {
    position: static;
    display: flex;
}

.category-photo.is-broken img { display: none; }
.category-photo.is-broken .category-photo-fallback { display: flex; }

.category-photo-fallback span,
.category-photo--empty span {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.category-card-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.category-card h3 { margin: 0; font-size: 1.18rem; }
.category-card p { margin: 0; color: var(--gray-700); font-size: 0.94rem; flex-grow: 1; line-height: 1.55; }

.category-link {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.category-link-arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.category-card:hover .category-link,
.category-link:hover { color: var(--orange); }
.category-card:hover .category-link-arrow,
.category-link:hover .category-link-arrow { transform: translateX(4px); }

/* Why */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    text-align: center;
    padding: 12px;
    transition: transform 0.35s var(--ease);
}

.why-card:hover { transform: translateY(-4px); }

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid rgba(255, 140, 0, 0.25);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.why-card:hover .why-icon { background: var(--orange); color: var(--white); }

.why-card h3 { margin: 0 0 10px; font-size: 1.08rem; }
.why-card p { margin: 0; color: var(--gray-700); font-size: 0.92rem; line-height: 1.55; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}

.contact-card {
    background: var(--surface-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-card:hover { transform: translateY(-4px); border-color: var(--orange); }

.contact-label {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

.contact-value { font-weight: 600; font-size: 1.02rem; }

.contact-cta { text-align: center; }

/* Footer */
.site-footer {
    position: relative;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.68);
    padding-top: 76px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 52px;
    margin-bottom: 18px;
    background: var(--white);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.footer-brand p { font-size: 0.92rem; line-height: 1.6; max-width: 260px; }

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 18px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 0;
    text-align: center;
    font-size: 0.82rem;
}

/* Static sitemap row — always-crawlable links to all 10 pages, independent
   of the JS-rendered footer above it */
.sitemap-block {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
}

.sitemap-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 0.76rem;
}

.sitemap-inner a {
    color: var(--gray-500);
    opacity: 0.85;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.sitemap-inner a:hover { color: var(--orange); opacity: 1; }

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
    z-index: 90;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.5); }

/* Part type chips */
.part-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.part-type-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.part-type-chip:hover { border-color: var(--orange); transform: translateY(-2px); }

.part-type-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* CTA banner */
.cta-banner {
    background: var(--navy);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 15% 0%, var(--orange-glow), transparent 65%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.72); margin: 0 0 32px; font-size: 1.03rem; }
.cta-banner .hero-actions { justify-content: center; }
.cta-banner .btn-outline { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Export map */
.export-map {
    position: relative;
    background: linear-gradient(180deg, #0e0e11, var(--navy) 60%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.export-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 620px 420px at 4% -8%, var(--orange-glow), transparent 62%),
        radial-gradient(ellipse 520px 360px at 100% 112%, rgba(255, 140, 0, 0.14), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.export-map-scroll {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.export-map-hint {
    display: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: right;
    margin: 10px 2px 0;
}

@media (max-width: 760px) {
    .export-map-hint { display: block; }
    .export-map-scroll::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 34px;
        background: linear-gradient(90deg, transparent, var(--navy));
        pointer-events: none;
    }
}

.export-map-svg {
    display: block;
    width: 100%;
    min-width: 760px;
    height: auto;
}

.export-map-corner { fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: square; opacity: 0.8; }

.export-map-eyebrow {
    fill: rgba(255, 255, 255, 0.68);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.export-map-tag {
    fill: var(--orange);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.export-map-rule { stroke: rgba(255, 255, 255, 0.1); stroke-width: 1; }

.export-map-route {
    fill: none;
    stroke: rgba(255, 140, 0, 0.55);
    stroke-width: 1.6;
    stroke-dasharray: 5 7;
    animation: exportMapFlow 3.4s linear infinite;
}

@keyframes exportMapFlow {
    to { stroke-dashoffset: -120; }
}

.export-map-dot { fill: var(--orange); }

.export-map-pulse {
    fill: var(--orange);
    opacity: 0.55;
    transform-box: fill-box;
    transform-origin: center;
    animation: exportMapPulse 2.6s ease-out infinite;
}

.export-map-pin:nth-of-type(3n) .export-map-pulse { animation-delay: 0.4s; }
.export-map-pin:nth-of-type(3n+1) .export-map-pulse { animation-delay: 0.8s; }

@keyframes exportMapPulse {
    0% { transform: scale(0.55); opacity: 0.55; }
    100% { transform: scale(3.2); opacity: 0; }
}

.export-map-label {
    fill: rgba(255, 255, 255, 0.88);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    paint-order: stroke;
    stroke: var(--navy);
    stroke-width: 5px;
    stroke-linejoin: round;
}

.export-map-hub-dot { fill: var(--white); stroke: var(--orange); stroke-width: 3; }
.export-map-hub-ring { fill: none; stroke: rgba(255, 140, 0, 0.5); stroke-width: 1.4; }

.export-map-hub-label {
    fill: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.03em;
    paint-order: stroke;
    stroke: var(--navy);
    stroke-width: 8px;
    stroke-linejoin: round;
}

.export-map-hub-sublabel {
    fill: rgba(255, 255, 255, 0.62);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
}

.export-map-legend-dot { fill: var(--orange); }
.export-map-legend-text {
    fill: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12.5px;
}
.export-map-legend-line { stroke: rgba(255, 140, 0, 0.55); stroke-width: 1.6; stroke-dasharray: 5 7; }

@media (prefers-reduced-motion: reduce) {
    .export-map-route, .export-map-pulse { animation: none; }
}

/* Region chips (about page) */
.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.region-chip {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-soft);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.region-chip:hover { border-color: var(--orange); color: var(--orange); }

/* Contact page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.contact-cta-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px 36px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 320px at 100% 0%, var(--orange-glow), transparent 65%);
    pointer-events: none;
}

.contact-cta-card > * { position: relative; }
.contact-cta-card h2 { color: var(--white); font-size: 1.3rem; margin: 0 0 12px; }
.contact-cta-card p { color: rgba(255, 255, 255, 0.72); margin: 0 0 28px; font-size: 0.96rem; line-height: 1.6; }
.contact-cta-card .btn-outline { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.contact-cta-card .btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.contact-cta-card .hero-actions { flex-direction: column; align-items: stretch; }
.contact-cta-card .btn { text-align: center; }

.map-embed {
    position: relative;
    width: 100%;
    padding-top: 42%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.product-card--hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 140, 0, 0.3);
}

.product-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(150deg, #efefec, #dcdcdb);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform 0.4s var(--ease);
}

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

.product-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -16px 20px -12px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.product-card-fallback {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.38);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 10px, transparent 10px 20px),
        var(--surface-alt);
}

.product-card-fallback span {
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-card-image.is-broken img { display: none; }
.product-card-image.is-broken .product-card-fallback { display: flex; }

.product-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.product-card-brand {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
}

.product-card-name {
    margin: 0;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-oem {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.product-card-cta {
    margin-top: auto;
    padding-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease;
}

.product-card-cta:hover { color: var(--orange); }

.product-grid-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 960px) {
    .about-inner { grid-template-columns: 1fr; gap: 44px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .section { padding: 96px 0; }
    .part-types-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .main-nav.open { max-height: 900px; }
    .main-nav a { padding: 16px 28px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
    .main-nav a::after { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }

    .lang-switch { padding: 2px; }
    .lang-switch-btn { padding: 6px 9px; font-size: 0.68rem; }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 16px 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-dropdown-panel,
    .nav-dropdown:hover .nav-dropdown-panel,
    .nav-dropdown.open .nav-dropdown-panel {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        background: var(--surface-alt);
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height 0.3s var(--ease);
    }
    .nav-dropdown.open .nav-dropdown-panel { max-height: 400px; }
    .nav-dropdown-link { padding: 14px 40px; border-radius: 0; }

    .category-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero { padding: 116px 0 84px; }
    .page-hero { padding: 100px 0 56px; }
    .section { padding: 76px 0; }
    .section-heading { margin-bottom: 40px; }
    .part-types-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 64px 0; }
    .contact-cta-card { padding: 32px 26px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
