/* =====================================================================
   NUR KAUÇUK MMC — Minimalist redizayn
   Brend: QARA + NARINCI (black + orange)  •  Şrift: SF Pro → Inter
   Dillər: AZ / TR / RU / EN
   ===================================================================== */

/* ---------------------------------------------------------------------
   Şrift: Apple cihazlarında sistem SF Pro; başqa OS-də SF Pro lokal
   tapılırsa istifadə olunur, əks halda Inter (AZ + Kiril tam dəstəkli).
   ------------------------------------------------------------------- */

:root {
    --header-h:   72px;             /* fixed header hündürlüyü (offset üçün) */
    /* Əsas brend rəngləri */
    --black:      #0b0b0d;          /* header / footer / hero */
    --black-2:    #131316;
    --orange:     #ff6a00;
    --orange-600: #ec5f00;
    --orange-700: #d35500;

    --bg:         #ffffff;
    --soft:       #f5f4f2;          /* açıq, bir az isti boz */
    --soft-2:     #efeeec;

    --ink:        #16161a;          /* əsas mətn */
    --ink-soft:   #3a3a40;
    --muted:      #74747c;
    --line:       #e6e5e2;
    --line-2:     #f0efed;
    --on-dark:    rgba(255,255,255,.72);
    --on-dark-2:  rgba(255,255,255,.45);
    --line-dark:  rgba(255,255,255,.12);

    --radius:     16px;
    --radius-sm:  10px;
    --radius-lg:  22px;
    --pill:       980px;

    --container:  1200px;
    --ease:       cubic-bezier(.4, 0, .2, 1);
    --shadow:     0 20px 50px rgba(0,0,0,.10);
    --shadow-sm:  0 8px 24px rgba(0,0,0,.07);

    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
            "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html, body { max-width: 100%; overflow-x: hidden; }   /* heç vaxt üfüqi scroll */
html {
    scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h);
    /* Scrollbar yerini həmişə saxla — qısa/uzun səhifələr arasında keçəndə
       şaquli scrollbar yaranıb-itməsi header-i yana sürüşdürməsin. */
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { width: 1em; height: 1em; }

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

/* ----- Bölmələr ----- */
.section { padding: 104px 0; }
.section--soft { background: var(--soft); }

.section-head { max-width: 740px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .78rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
}
.eyebrow::before {
    content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block;
}
.section-head--center .eyebrow { justify-content: center; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-sub { color: var(--muted); margin-top: 20px; font-size: 1.16rem; font-weight: 400; line-height: 1.5; }

/* ----- Düymələr ----- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 28px; border-radius: var(--pill);
    font-size: 1rem; font-weight: 600; line-height: 1;
    border: 1.5px solid transparent; cursor: pointer;
    transition: .25s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-700); transform: translateY(-2px); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

/* =====================================================================
   Header — QARA, hər səhifədə EYNİ (sticky)
   ===================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 60;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
}
/* Header fixed olduğu üçün axından çıxır — kontenti onun hündürlüyü qədər aşağı sal. */
.page-main { padding-top: var(--header-h); }

/* Yalnız MƏZMUN yüngülcə fade olunur — HEADER buna qatılmır, sabit qalır. */
@keyframes nk-page-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}
.page-main { animation: nk-page-in .35s var(--ease) both; }
@media (prefers-reduced-motion: reduce) {
    .page-main { animation: none; }
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { height: 34px; width: auto; display: block; filter: brightness(0) invert(1); } /* qara loqonu ağ et */
.brand--footer .brand__logo { height: 42px; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav__list { display: flex; align-items: center; gap: 4px; }
.main-nav__list a, .nav-link {
    display: block; padding: 9px 14px; border-radius: var(--pill);
    font-size: .82rem; font-weight: 300; letter-spacing: .08em; text-transform: uppercase;
    color: var(--on-dark); transition: .2s var(--ease); position: relative;
}
.main-nav__list a:hover, .nav-link:hover { color: #fff; }
/* Aktiv səhifə yalnız NARINCI rəng ilə fərqlənir (çəki/alt xətt yoxdur) →
   menyu eni hər səhifədə eyni qalır, header tərpənmir. */
.main-nav__list a.active, .nav-link.active { color: var(--orange); }

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

/* E-Kataloq düyməsi */
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: var(--pill);
    background: var(--orange); color: #fff;
    border: 1.5px solid var(--orange);
    font-size: .78rem; font-weight: 700; line-height: 1; letter-spacing: .08em;
    text-transform: uppercase; white-space: nowrap; cursor: pointer;
    transition: .25s var(--ease);
}
.nav-cta:hover { background: var(--orange-700); border-color: var(--orange-700); color: #fff; }

/* Dil seçici */
.lang { position: relative; }
.lang__btn {
    background: transparent; color: #fff; border: 1.5px solid var(--line-dark);
    min-width: 72px; justify-content: center;
}
.lang__btn:hover { border-color: rgba(255,255,255,.4); background: transparent; }
.lang__caret { font-size: .7em; line-height: 1; transition: transform .25s var(--ease); }
.lang.open .lang__caret { transform: rotate(180deg); }
.lang__menu {
    position: absolute; top: calc(100% + 10px); right: 0; min-width: 84px;
    background: var(--black-2); border: 1px solid var(--line-dark); border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,.5); padding: 6px; z-index: 70;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__menu li a {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--on-dark);
    transition: .18s var(--ease);
}
.lang__menu li a:hover { background: rgba(255,255,255,.06); color: #fff; }
.lang__menu li a.is-current { color: var(--orange); }

/* Mobil menyu düyməsi */
.nav-toggle {
    display: none; width: 42px; height: 42px; border: none; background: transparent;
    cursor: pointer; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span { width: 23px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   Hero (image.png tərzi — tünd fon + mərkəzləşmiş slayder)
   ===================================================================== */
.hero {
    position: relative; min-height: clamp(620px, 92vh, 900px);
    display: flex; overflow: hidden; background: var(--black);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img { position: absolute; inset: 0; opacity: 0; transform: scale(1.06); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); will-change: opacity, transform; }
.hero__img.is-active { opacity: 1; transform: scale(1); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(120% 80% at 50% 30%, rgba(0,0,0,.25) 0%, rgba(0,0,0,.62) 100%),
        linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.20) 38%, rgba(11,11,13,.78) 100%);
}

.hero__inner {
    position: relative; z-index: 2; width: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 80px 0 56px;
}
.hero__center { flex: 1; display: flex; flex-direction: column; justify-content: center; width: 100%; }

.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px; align-self: center;
    color: var(--orange); font-size: .8rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; margin-bottom: 22px;
}
.hero__eyebrow::before, .hero__eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--orange); }

.hero__titles { position: relative; min-height: 1.2em; }
.hero__title {
    color: #fff; text-transform: uppercase; font-weight: 800;
    font-size: clamp(1.8rem, 4.4vw, 3.6rem); line-height: 1.08; letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0,0,0,.5);
    position: absolute; top: 0; left: 0; right: 0;
    opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease);
    pointer-events: none;
}
.hero__title em { color: var(--orange); font-style: normal; }
.hero__title.is-active { opacity: 1; transform: none; position: relative; pointer-events: auto; }

.hero__subs { position: relative; margin-top: 24px; min-height: 3.2em; }
.hero__subtitle {
    color: rgba(255,255,255,.88); font-size: 1.08rem; line-height: 1.6; font-weight: 400;
    max-width: 640px; margin-inline: auto; text-shadow: 0 1px 14px rgba(0,0,0,.55);
    position: absolute; top: 0; left: 0; right: 0;
    opacity: 0; transform: translateY(14px);
    transition: opacity .7s var(--ease) .08s, transform .7s var(--ease) .08s;
}
.hero__subtitle.is-active { opacity: 1; transform: none; position: relative; }

.hero__cta { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Oxlar — nazik, dairəvi, az opacity */
.hero__arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
    display: grid; place-items: center; cursor: pointer; color: #fff;
    font-size: 1.4rem; line-height: 0; transition: .25s var(--ease);
}
.hero__arrow svg { width: 22px; height: 22px; }
.hero__arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero__arrow--prev { left: 22px; }
.hero__arrow--next { right: 22px; }

.hero__dots { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.hero__dots button {
    width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0;
    background: rgba(255,255,255,.32); cursor: pointer; transition: .3s var(--ease);
}
.hero__dots button.is-active { background: var(--orange); }

/* =====================================================================
   Stat zolağı — QARA band (kontrast)
   ===================================================================== */
.stats { background: var(--black); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 52px 24px; text-align: center; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: none; }
.stat__num { font-size: clamp(1.7rem, 2.7vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; color: var(--orange); }
.stat__label { font-size: .96rem; color: var(--on-dark); margin-top: 8px; }

/* =====================================================================
   Üstünlüklər
   ===================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.feature-card {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px 30px; transition: .3s var(--ease);
}
.section--soft .feature-card { background: var(--bg); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: transparent; }
.feature-card__icon {
    width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
    background: var(--black); color: var(--orange); font-size: 1.5rem; margin-bottom: 22px;
}
.feature-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 1rem; line-height: 1.5; }

/* =====================================================================
   İki sütunlu blok
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--top { align-items: start; }
/* Şəkil (sol) və mətn (sağ) bərabər 50-50% tutur, aralarında 22px gap.
   1fr/1fr istifadə olunur ki gap konteyneri aşmasın (üst-üstə düşməsin). */
.split--media-sm { grid-template-columns: 1fr 1fr; gap: 22px; }
/* Şəkil bloku sağ 50% sütunu tam tutur (max-width yoxdur).
   aspect-ratio: auto — JS şəkil hündürlüyünü mətnə bərabərləşdirəndə en
   nisbətdən hesablanıb sütunu aşmasın; en sütunla məhdud, hündürlük JS-dən gəlir. */
.split--media-sm .gallery__main { aspect-ratio: auto; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
/* Qalereya başlıqla ("Həll tərəfdaşınız") eyni xətdən başlasın:
   üstdəki eyebrow hündürlüyü (~mətn xətti + 18px margin) qədər aşağı sürüşür. */
.split--media-sm.split--top .split__media { margin-top: 33px; }
.media-frame {
    border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
    background: var(--soft); box-shadow: var(--shadow); position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame__badge {
    position: absolute; left: 22px; bottom: 22px;
    background: var(--black); color: #fff;
    padding: 18px 22px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm); max-width: 250px; border-left: 3px solid var(--orange);
}
.media-frame__badge strong { font-size: 1.6rem; display: block; font-weight: 800; color: var(--orange); }
.media-frame__badge span { font-size: .9rem; color: var(--on-dark); }

/* ---- Şəkil qalereyası (image.png tərzi: sol kiçik şəkillər + əsas böyük) ---- */
/* Əsas şəkil hündürlüyü təyin edir; kiçik şəkil sütunu absolyut olaraq
   həmin hündürlüyə oturur — şəkil sayından asılı olmayaraq ümumi hündürlük sabit. */
.gallery { position: relative; }
.gallery__thumbs {
    position: absolute; right: 0; top: 0; bottom: 0; width: 78px;
    display: flex; flex-direction: column; gap: 12px;
    padding: 0 5px;                       /* aktiv çərçivə kəsilməsin */
    overflow-y: auto; overscroll-behavior: contain;
    scrollbar-width: none;                /* Firefox: scrollbar gizli */
    cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none;
}
.gallery__thumbs.dragging { cursor: grabbing; }
.gallery__thumbs::-webkit-scrollbar { width: 0; height: 0; }
.gallery__thumb {
    flex: 0 0 auto; width: 100%; aspect-ratio: 1 / 1;
    padding: 0; cursor: pointer; overflow: hidden;
    background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumb:hover { border-color: var(--orange); }
.gallery__thumb.is-active { border-color: var(--orange); }
.gallery__main {
    position: relative; margin-right: 94px;   /* 78px sütun (sağda) + 16px boşluq */
    aspect-ratio: 4/3; overflow: hidden;
    background: var(--soft); border-radius: var(--radius-lg);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* əsas şəkildə sol-alt naviqasiya oxları (sağ/sol çevirmək üçün) */
.gallery__nav { position: absolute; left: 18px; bottom: 18px; display: flex; gap: 10px; z-index: 2; }
.gallery__arrow {
    width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center; color: #fff; background: rgba(15, 15, 15, .55);
    transition: background .25s var(--ease), transform .25s var(--ease);
}
.gallery__arrow:hover { background: var(--orange); transform: translateY(-2px); }
.gallery__arrow svg { width: 20px; height: 20px; }
@media (max-width: 480px) {
    .gallery__arrow { width: 38px; height: 38px; }
    .gallery__nav { left: 12px; bottom: 12px; gap: 8px; }
    .gallery__thumbs { width: 64px; }
    .gallery__main { margin-right: 78px; }
}

.split__body p { color: var(--muted); margin-top: 18px; font-size: 1.1rem; line-height: 1.55; }

/* ---- Açılan mətn (son sözdən sonra «…», altında «Daha çox») ---- */
.about-copy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;          /* bağlı: son sözdən sonra «…» qoyulur */
            line-clamp: 8;
    overflow: hidden;
}
.about-copy.is-open {
    display: block;
    -webkit-line-clamp: unset;
            line-clamp: unset;
    overflow: visible;
}
.about-copy__toggle {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 16px; padding: 0; border: 0; background: none; cursor: pointer;
    color: var(--orange); font: inherit; font-weight: 700; font-size: .98rem;
}
.about-copy__toggle svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.about-copy__toggle.is-open svg { transform: rotate(180deg); }
.about-copy__toggle:hover { text-decoration: underline; }
@media (max-width: 1000px) {
    .about-copy { display: block; -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
    .about-copy__toggle { display: none; }
}
.material-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.material-tags span {
    background: var(--soft); color: var(--ink-soft); border: 1px solid var(--line);
    padding: 8px 16px; border-radius: var(--pill); font-size: .86rem; font-weight: 600;
}
.split__body .btn { margin-top: 30px; }

/* =====================================================================
   Alt səhifə başlığı (page-hero) — tünd, hero ilə uyğun
   ===================================================================== */
.page-hero { background: var(--black); color: #fff; padding: 72px 0 64px; position: relative; overflow: hidden; }
.page-hero::after {
    content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,106,0,.22), transparent 70%); pointer-events: none;
}
.page-hero::before {
    content: ""; position: absolute; left: -80px; bottom: -80px; width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(255,106,0,.22), transparent 70%); pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); color: #fff; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--on-dark); font-size: .92rem; margin-top: 16px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* =====================================================================
   Hüquqi səhifələr (Məxfilik Siyasəti / İstifadə Şərtləri)
   ===================================================================== */
.legal { max-width: 100%; }
.legal__updated {
    display: inline-block;
    font-size: .82rem; font-weight: 600; letter-spacing: .02em;
    color: var(--muted);
    background: var(--soft);
    border: 1px solid var(--line);
    padding: 7px 16px; border-radius: var(--pill);
    margin-bottom: 28px;
}
.legal__intro {
    font-size: 1.16rem; line-height: 1.6; color: var(--ink-soft);
    padding-bottom: 32px; margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.legal__block { margin-top: 40px; }
.legal__block h2 {
    font-size: 1.4rem; letter-spacing: -0.02em;
    margin-bottom: 14px;
    display: flex; align-items: baseline; gap: 12px;
}
.legal__block h2::before {
    content: ""; flex: 0 0 auto;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange); transform: translateY(-2px);
}
.legal__block p { color: var(--ink-soft); line-height: 1.7; }
.legal__block p + p { margin-top: 14px; }

/* =====================================================================
   Məhsullar
   ===================================================================== */
.product-category { margin-bottom: 72px; }
.product-category:last-child { margin-bottom: 0; }
.product-category__title { font-size: 1.5rem; margin-bottom: 30px; display: flex; align-items: center; gap: 14px; }
.product-category__title::before { content: ""; width: 8px; height: 22px; background: var(--orange); border-radius: 3px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.product-card {
    border-radius: var(--radius); overflow: hidden; background: var(--bg); border: 1px solid var(--line);
    transition: .35s var(--ease); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.product-card__media { aspect-ratio: 4/3; background: var(--soft); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .5s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.product-card__cat { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.product-card__body h3 { font-size: 1.22rem; margin: 8px 0 10px; }
.product-card__body p { color: var(--muted); font-size: 1rem; line-height: 1.5; flex: 1; }

/* Şəkilsiz placeholder */
.media-ph, .product-card__ph {
    display: grid; place-items: center; width: 100%; height: 100%; min-height: 160px;
    background: var(--soft); color: var(--muted);
    font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: center; padding: 12px;
}

/* =====================================================================
   Məhsullar — sidebar + grid (telas.com.tr tərzi)
   ===================================================================== */
.products-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

.products-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.products-sidebar__head {
    font-size: 1.05rem; font-weight: 700; letter-spacing: .02em;
    padding-bottom: 16px; margin-bottom: 16px; border-bottom: 2px solid var(--orange);
}
.products-sidebar__all,
.products-sidebar__link {
    display: block; width: 100%; text-align: left; cursor: pointer;
    background: none; border: none; font: inherit; color: var(--ink-soft);
    padding: 10px 14px; border-radius: var(--radius-sm); line-height: 1.35;
    transition: .2s var(--ease);
}
.products-sidebar__all { font-weight: 600; margin-bottom: 8px; }
.products-sidebar__link span { display: block; }
.products-sidebar__all:hover,
.products-sidebar__link:hover { background: var(--soft); color: var(--ink); }
.products-sidebar__all.is-active,
.products-sidebar__link.is-active {
    background: var(--orange); color: #fff; font-weight: 600;
}
.products-sidebar__list { list-style: none; margin: 0; padding: 0; }
.products-sidebar__group { margin-top: 22px; }
.products-sidebar__group-title {
    display: block; font-size: .74rem; font-weight: 700; letter-spacing: .09em;
    text-transform: uppercase; color: var(--muted); padding: 0 14px; margin-bottom: 8px;
}
.products-main { min-width: 0; }
.products-intro { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.products-intro__title { font-size: clamp(1.5rem, 3vw, 2rem); position: relative; padding-left: 18px; }
.products-intro__title::before {
    content: ""; position: absolute; left: 0; top: .15em; bottom: .15em;
    width: 6px; background: var(--orange); border-radius: 3px;
}
.products-intro__desc { color: var(--ink-soft); margin-top: 14px; font-size: 1.08rem; line-height: 1.55; max-width: 70ch; }
.products-intro__label { margin-top: 18px; font-weight: 700; color: var(--ink); }
.products-intro__list {
    margin-top: 10px; padding: 0; list-style: none;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 6px 24px;
}
.products-intro__list li { position: relative; padding-left: 18px; color: var(--ink-soft); line-height: 1.5; }
.products-intro__list li::before {
    content: ""; position: absolute; left: 0; top: .55em;
    width: 7px; height: 7px; background: var(--orange); border-radius: 2px;
}
.products-main .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* Şəkli böyütmək üçün kliklənən düymə (lightbox tetikleyici) */
.product-card__zoom {
    display: block; width: 100%; height: 100%; padding: 0; border: none;
    background: none; cursor: zoom-in;
}

/* Lightbox */
body.no-scroll { overflow: hidden; }
.lightbox {
    position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
    padding: 32px; background: transparent;
    animation: lb-fade .2s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__fig { margin: 0; max-width: 1000px; max-height: 100%; text-align: center; }
.lightbox__img {
    max-width: 100%; max-height: 82vh; border-radius: var(--radius-sm);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5); object-fit: contain;
}
.lightbox__cap { color: #fff; margin-top: 16px; font-size: 1.05rem; letter-spacing: .02em; }
.lightbox__close {
    position: absolute; top: 22px; right: 26px; width: 46px; height: 46px;
    border: none; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff;
    font-size: 1.8rem; line-height: 1; cursor: pointer; transition: .2s var(--ease);
}
.lightbox__close:hover { background: var(--orange); }
.products-empty { color: var(--muted); padding: 40px 0; text-align: center; }

@media (max-width: 900px) {
    .products-layout { grid-template-columns: 1fr; gap: 28px; }
    .products-sidebar { position: static; }
    .products-sidebar__list { display: flex; flex-wrap: wrap; gap: 8px; }
    .products-sidebar__all { display: inline-block; width: auto; }
    .products-sidebar__link { padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--pill); }
    .products-sidebar__group-title { padding: 0; }
}

/* =====================================================================
   Məhsullar səhifəsi — kateqoriya kartları + çoxsəviyyəli görünüşlər
   (image.png tərzi kartlar; klikləyəndə alt-kateqoriya/spec açılır)
   ===================================================================== */
.products-shell { position: relative; }

/* Görünüşlər: eyni anda yalnız biri aktivdir */
.prod-view { display: none; animation: prodFade .35s var(--ease); }
.prod-view.is-active { display: block; }
@keyframes prodFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Qrup (Tətbiq sahəsinə görə / Material növünə görə) */
.cat-group + .cat-group { margin-top: 52px; }
.cat-group__title {
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    margin-bottom: 22px; padding-left: 16px; position: relative;
}
.cat-group__title::before {
    content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 5px; height: 1.1em; border-radius: 3px; background: var(--orange);
}

/* Məhsullar ana görünüşü: çiplər solda + altında nazik uzun ayırıcı xətt */
.cat-tabs--filter {
    justify-content: flex-start;
    margin-bottom: 30px; padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
/* Sağda kateqoriya sayı (nazik yazı) */
.cat-tabs__count {
    margin-left: auto; align-self: center;
    font-size: .82rem; font-weight: 600; color: var(--muted); white-space: nowrap;
}

/* Kart şəbəkəsi — bir sırada 4 kart, hamısı eyni ölçüdə */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* image.png tərzi kart — yalnız başlıq + künc oxu, incə qradient */
.cat-card {
    position: relative; display: block; width: 100%;
    aspect-ratio: 4 / 5; border: 0; padding: 0; cursor: pointer;
    border-radius: var(--radius); overflow: hidden; isolation: isolate;
    background: var(--black); color: #fff; font-family: inherit; text-align: center;
    box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.cat-card__bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2; transition: transform .6s var(--ease);
}
.cat-card:hover .cat-card__bg { transform: scale(1.06); }

/* Şəkilsiz kart — saytın brend qradienti (qara + incə narıncı küncü) */
.cat-card--noimg { background: linear-gradient(155deg, #15151a 0%, #0b0b0d 58%, #2a1d12 100%); }

/* İncə örtük — image.png kimi, amma çox az: aşağıda mətn üçün tündləşmə
   + yuxarı-soldan zəif narıncı çalar (brend) */
.cat-card__shade {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(11,11,13,0) 42%, rgba(11,11,13,.72) 100%),
        linear-gradient(150deg, rgba(255,106,0,.16) 0%, rgba(11,11,13,0) 50%);
}
.cat-card--noimg .cat-card__shade {
    background: linear-gradient(180deg, rgba(11,11,13,0) 45%, rgba(11,11,13,.45) 100%);
}

/* Künc oxu (image.png-dəki kimi nazik ağ ox, fon yoxdur) */
.cat-card__arrow {
    position: absolute; top: 16px; left: 16px; line-height: 0; z-index: 1;
    color: #fff; transition: .3s var(--ease);
}
.cat-card__arrow svg { width: 26px; height: 26px; }
.cat-card:hover .cat-card__arrow { color: var(--orange); transform: translate(2px, 2px); }

.cat-card__text {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
    padding: 0 16px 22px; display: flex; flex-direction: column;
}
.cat-card__title { font-size: 1.06rem; font-weight: 700; line-height: 1.28; letter-spacing: -.01em; }

/* «Geri» düyməsi */
.prod-back {
    display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px;
    padding: 9px 16px 9px 12px; border: 1px solid var(--line); border-radius: var(--pill);
    background: var(--bg); color: var(--ink-soft); font-family: inherit; font-weight: 600;
    font-size: .92rem; cursor: pointer; transition: .22s var(--ease);
}
.prod-back svg { width: 18px; height: 18px; }
.prod-back:hover { border-color: var(--ink); color: var(--ink); background: var(--soft); }

/* Alt-kateqoriya görünüşünün başlığı */
.prod-view__intro { margin-bottom: 30px; max-width: 70ch; }
.prod-view__intro h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 6px 0 12px; }
.prod-view__intro p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; }

/* Detal / spec görünüşü */
.prod-detail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.prod-detail__media {
    aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--soft); box-shadow: var(--shadow-sm);
    display: grid; place-items: center; position: sticky; top: calc(var(--header-h) + 20px);
}
.prod-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.prod-detail__ph { line-height: 0; opacity: .35; }
.prod-detail__ph svg { width: 96px; height: 96px; color: var(--muted); }
.prod-detail__eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.prod-detail__body h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 10px 0 16px; }
.prod-detail__desc { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; }
.prod-detail__label { margin: 26px 0 14px; font-weight: 700; font-size: 1.05rem; }
.prod-detail__list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.prod-detail__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.45; }
.prod-detail__list svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 2px; }

@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .prod-detail { grid-template-columns: 1fr; gap: 26px; }
    .prod-detail__media { position: static; aspect-ratio: 16/10; }
}
@media (max-width: 620px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-card__title { font-size: .95rem; }
    .cat-card__arrow svg { width: 22px; height: 22px; }
}

/* =====================================================================
   İstehsal
   ===================================================================== */
.facility { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--line); }
.facility:first-of-type { padding-top: 0; }
.facility:last-child { border-bottom: none; padding-bottom: 0; }
.facility:nth-child(even) .facility__media { order: 2; }
.facility__index { font-size: .8rem; font-weight: 700; color: var(--orange); letter-spacing: .12em; text-transform: uppercase; }
.facility h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 12px 0 16px; }
.facility p { color: var(--muted); font-size: 1.1rem; line-height: 1.55; }
.facility__media { aspect-ratio: 16/11; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--soft); }
.facility__media img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   Keyfiyyət
   ===================================================================== */
.quality-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quality-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; transition: .3s var(--ease); }
.quality-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: transparent; }
.quality-card__num { font-size: 1.5rem; font-weight: 800; color: var(--orange); margin-bottom: 14px; }
.quality-card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.quality-card p { color: var(--muted); font-size: 1rem; line-height: 1.5; }

.value-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.value-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; }
.value-card h3 { font-size: 1.28rem; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.value-card h3 svg { color: var(--orange); }
.value-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; }

.cert-card { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-top: 22px; transition: .3s var(--ease); }
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: transparent; }
.cert-card .eyebrow { color: var(--orange); }
.cert-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.cert-card p { color: var(--muted); font-size: 1rem; line-height: 1.5; }
.cert-card__text { flex: 1 1 280px; }
.cert-card__thumb { width: 172px; flex: none; aspect-ratio: 232 / 320; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--soft); display: grid; place-items: center; color: var(--muted); overflow: hidden; }
.cert-card__thumb img { width: 100%; height: 100%; object-fit: contain; }
.cert-card__zoom { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.cert-card__zoom img { transition: transform .3s var(--ease); }
.cert-card__zoom:hover img { transform: scale(1.04); }

/* Lightbox (şəkil böyüdücü modal) */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 5vh 5vw; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); }
.lightbox::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 30%, rgba(28, 30, 36, .58), rgba(8, 9, 12, .72)); backdrop-filter: blur(5px); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__stage { position: relative; max-width: 100%; max-height: 90vh; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: none; }
.lightbox__stage.is-zoomed { cursor: grab; }
.lightbox__stage.is-panning { cursor: grabbing; }
.lightbox__img { max-width: 100%; max-height: 90vh; border-radius: 0; box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .06); transform: scale(.9); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); transform-origin: center center; user-select: none; -webkit-user-drag: none; }
.lightbox.open .lightbox__img { transform: scale(1); opacity: 1; }
.lightbox__stage.is-panning .lightbox__img { transition: none; }

.lightbox__close { position: absolute; top: clamp(14px, 3vh, 28px); right: clamp(14px, 3vw, 32px); width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; background: rgba(12, 12, 14, .92); color: #fff; cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease); z-index: 2; }
.lightbox__close:hover { background: var(--orange); border-color: var(--orange); transform: rotate(90deg); }
.lightbox__close:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.lightbox__close svg { width: 22px; height: 22px; }

.lightbox__zoombar { position: absolute; bottom: clamp(18px, 4vh, 34px); left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 4px; padding: 6px; border-radius: var(--pill); background: rgba(12, 12, 14, .94); border: 1px solid rgba(255, 255, 255, .16); box-shadow: 0 12px 40px rgba(0, 0, 0, .5); z-index: 2; }
.lightbox__zoom-btn { width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: #fff; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.lightbox__zoom-btn:hover { background: rgba(255, 255, 255, .16); }
.lightbox__zoom-btn:active { background: var(--orange); color: #fff; }
.lightbox__zoom-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.lightbox__zoom-btn:disabled { opacity: .4; cursor: default; background: transparent; }
.lightbox__zoom-btn svg { width: 21px; height: 21px; display: block; }
.lightbox__pct { min-width: 56px; padding: 0 4px; text-align: center; font-size: .9rem; font-weight: 600; font-variant-numeric: tabular-nums; color: #fff; letter-spacing: .01em; user-select: none; }
.lightbox__sep { width: 1px; height: 22px; margin: 0 2px; background: rgba(255, 255, 255, .2); }

/* =====================================================================
   Kataloq
   ===================================================================== */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.catalog-card { display: flex; gap: 26px; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: .3s var(--ease); }
.catalog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.catalog-card__cover { width: 100px; height: 134px; flex: none; border-radius: var(--radius-sm); overflow: hidden; background: var(--soft); display: grid; place-items: center; color: var(--muted); font-weight: 700; }
.catalog-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.catalog-card h3 { font-size: 1.18rem; margin-bottom: 16px; }
.catalog-card--pdf { flex-direction: column; align-items: stretch; gap: 18px; }
.catalog-card__pdf { width: 100%; height: 520px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--soft); }
.catalog-card__pdf iframe { width: 100%; height: 100%; border: 0; display: block; }
.catalog-card--pdf .catalog-card__body { display: flex; flex-direction: column; align-items: flex-start; }

/* =====================================================================
   Əlaqə / formalar
   ===================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.info-list { display: grid; gap: 14px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.info-item__icon { width: 46px; height: 46px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--black); color: var(--orange); font-size: 1.2rem; }
.info-item h4 { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.info-item a, .info-item p { color: var(--ink); font-weight: 600; display: block; }
.info-item a:hover { color: var(--orange); }

.form-card { background: var(--soft); border-radius: var(--radius-lg); padding: 40px; }
.form-card h3 { font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--orange); }
.field input, .field textarea, .field select {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
    font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,0,.14);
}
.field textarea { min-height: 140px; resize: vertical; }

.file-drop { border: 1.5px dashed var(--line); border-radius: var(--radius-sm); padding: 36px 20px; text-align: center; background: #fff; cursor: pointer; transition: .25s var(--ease); color: var(--muted); }
.file-drop:hover, .file-drop.dragover { border-color: var(--orange); background: rgba(255,106,0,.04); color: var(--orange); }
.file-drop strong { color: var(--ink); }
.file-drop small { display: block; margin-top: 6px; font-size: .82rem; }
.file-drop__name { margin-top: 10px; font-weight: 600; color: var(--orange); }

.form-alert { padding: 14px 18px; border-radius: 10px; font-weight: 600; font-size: .96rem; margin-bottom: 20px; display: none; }
.form-alert.show { display: block; }
.form-alert--ok { background: #e7f6ec; color: #1c7a3e; }
.form-alert--err { background: #fdeced; color: #c0322b; }

.map-embed { margin-top: 48px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* =====================================================================
   Tərəfdaşlar
   ===================================================================== */
.partners-marquee {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;            /* şaquli scroll keçsin, üfüqi sürüşmə bizdə qalsın */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.partners-marquee.dragging { cursor: grabbing; }
.partners-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}
.partners-track .partner-item { flex: 0 0 auto; width: 180px; }
.partner-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); aspect-ratio: 3/2; display: grid; place-items: center; padding: 18px; transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.partner-item:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.partner-item img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: .55; transition: .3s var(--ease); pointer-events: none; -webkit-user-drag: none; user-drag: none; }
.partner-item:hover img { filter: grayscale(0); opacity: 1; }
.partner-item__ph { color: var(--muted); font-size: .76rem; font-weight: 600; }

/* =====================================================================
   Məhsul kateqoriyaları (image.png tərzi tablar + panel)
   ===================================================================== */
.cat-showcase { /* sadəcə qrup — tablar və panel ayrıdır */ }

/* Üst tablar — minimalist çiplər */
.cat-tabs {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    margin-bottom: 36px;
}
.cat-tab {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 10px 18px; border-radius: var(--pill);
    background: transparent; border: 1.5px solid var(--line);
    color: var(--ink-soft); font-family: inherit; cursor: pointer;
    font-size: .9rem; font-weight: 600; line-height: 1; white-space: nowrap;
    transition: .22s var(--ease);
}
.cat-tab__icon { font-size: 1.1rem; line-height: 0; color: var(--orange); transition: .22s var(--ease); }
.cat-tab__icon svg { width: 18px; height: 18px; }
.cat-tab__label { letter-spacing: -0.01em; }
.cat-tab:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.cat-tab.is-active { background: var(--black); border-color: var(--black); color: #fff; }
.cat-tab.is-active .cat-tab__icon { color: var(--orange); }
.cat-tab--more { color: var(--orange); border-color: var(--orange); }
.cat-tab--more:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.cat-tab--more:hover .cat-tab__icon { color: #fff; }

/* Aşağı panel — ayrıca konteyner (kart) */
.cat-panels {
    background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 3px 10px rgba(0,0,0,.035);
    display: grid;   /* bütün panellər eyni xanada üst-üstə → konteyner ən hündür (Sənaye) panelin ölçüsünü alır */
}
.cat-panel {
    grid-area: 1 / 1;
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
    visibility: hidden; opacity: 0; transition: opacity .35s var(--ease);
}
.cat-panel[hidden] { display: grid; }   /* UA display:none-u ləğv et — gizli panel də yer tutsun */
.cat-panel.is-active { visibility: visible; opacity: 1; }
.cat-panel__media {
    margin: clamp(12px, 1.4vw, 18px); border-radius: var(--radius);
    background: var(--soft); overflow: hidden;
}
.cat-panel__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-panel__media .product-card__ph, .cat-panel__media .media-ph { min-height: 100%; }
.cat-panel__body { padding: 28px clamp(28px, 4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.cat-panel__body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 12px; }
.cat-panel__body > p { color: var(--muted); font-size: 1.04rem; line-height: 1.55; }
.cat-panel__list { display: grid; gap: 10px; margin: 20px 0 26px; width: 100%; }
.cat-panel__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); font-weight: 500; }
.cat-panel__list svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 2px; }
.cat-panel__body .btn { margin-top: auto; }

@media (max-width: 860px) {
    .cat-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-inline: -4px; padding: 4px; }
    .cat-tabs::-webkit-scrollbar { display: none; }
    .cat-tab { flex: 0 0 auto; }
    .cat-panel { grid-template-columns: 1fr; min-height: 0; }
    .cat-panel__media { aspect-ratio: 16/10; }
    .cat-panel__body { padding: 34px 26px; }
}

/* =====================================================================
   CTA (tünd fokus bloku)
   ===================================================================== */
.cta { background: var(--black); border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.cta::before {
    content: ""; position: absolute; left: 50%; top: -40%; width: 520px; height: 520px; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,106,0,.18), transparent 65%); pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.cta p { color: var(--on-dark); margin: 18px auto 34px; max-width: 560px; font-size: 1.14rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* =====================================================================
   Footer — QARA
   ===================================================================== */
.site-footer {
    position: relative;
    background:
        radial-gradient(130% 110% at 0% 0%, rgba(255,106,0,.10) 0%, rgba(255,106,0,0) 45%),
        var(--black);
    color: var(--on-dark);
    padding-top: 84px;
}
/* İncə narıncı vurğu xətti (yuxarı kənar) */
.site-footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,106,0,.55), transparent);
}
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 56px; padding-bottom: 56px; }
.brand--footer { margin-bottom: 4px; }
.footer-about { margin: 24px 0 18px; font-size: .95rem; line-height: 1.7; max-width: 340px; }
.footer-slogan { color: #fff; font-weight: 500; font-style: italic; font-size: .98rem; opacity: .92; }

.footer-col h4 {
    position: relative; color: #fff; font-size: .82rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; margin-bottom: 26px; padding-bottom: 14px;
}
.footer-col h4::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px;
    background: var(--orange); border-radius: 2px;
}

.footer-links li, .footer-contact li { margin-bottom: 14px; }
.footer-links a {
    display: inline-flex; align-items: center; font-size: .94rem;
    color: var(--on-dark); transition: color .22s var(--ease);
}
.footer-links a::before {
    content: ""; width: 0; height: 1.5px; background: var(--orange); border-radius: 2px;
    transition: width .22s var(--ease), margin-right .22s var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 14px; margin-right: 10px; }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .94rem; line-height: 1.6; }
.footer-contact svg { color: var(--orange); margin-top: 3px; flex: none; }
.footer-contact a { transition: color .2s var(--ease); }
.footer-contact a:hover { color: #fff; }

.social { display: flex; gap: 12px; margin-top: 26px; }
.social a {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,.05); color: #fff; font-weight: 600; font-size: .8rem;
    border: 1px solid var(--line-dark); transition: .28s var(--ease);
}
.social a:hover {
    background: var(--orange); border-color: var(--orange);
    transform: translateY(-3px); box-shadow: 0 10px 24px rgba(255,106,0,.32);
}

.site-footer__bottom { border-top: 1px solid var(--line-dark); padding: 24px 0; font-size: .84rem; }
.site-footer__bottom p { color: var(--on-dark-2); letter-spacing: .02em; }
.site-footer__bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px 28px; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a {
    color: var(--on-dark-2); letter-spacing: .02em;
    transition: color .22s var(--ease);
}
.footer-legal a:hover { color: var(--orange); }
@media (max-width: 640px) {
    .site-footer__bottom-inner { justify-content: center; text-align: center; }
}

/* =====================================================================
   Üzən düymələr
   ===================================================================== */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37,211,102,.4); transition: .25s var(--ease); }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }
.back-to-top {
    position: fixed; bottom: 24px; right: 90px; z-index: 80; width: 48px; height: 48px;
    border-radius: 50%; cursor: pointer; color: var(--orange);
    border: 1.5px solid var(--orange); background: transparent;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { display: block; transition: transform .25s var(--ease); }
.back-to-top:hover {
    background: var(--orange); color: #fff; border-color: var(--orange);
    transform: translateY(-3px); box-shadow: 0 10px 26px rgba(255,106,0,.34);
}
.back-to-top:hover svg { transform: translateY(-2px); }
.back-to-top:active { transform: translateY(-1px); }
.back-to-top:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    .back-to-top, .back-to-top svg { transition: opacity .2s linear; transform: none; }
    .back-to-top:hover { transform: none; }
    .back-to-top:hover svg { transform: none; }
}

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   Responsiv
   ===================================================================== */
@media (max-width: 1000px) {
    .split, .facility, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
    .split--reverse .split__media, .facility:nth-child(even) .facility__media { order: 0; }
    .split--media-sm.split--top .split__media { margin-top: 0; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 80px 0; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: 72px 0 auto 0;
        background: var(--black); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
        transform: translateY(-130%); transition: .35s var(--ease);
        max-height: calc(100vh - 72px); overflow-y: auto;
        flex-direction: column; align-items: stretch; gap: 0; padding: 14px;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav__list a, .header-actions .nav-link { padding: 14px 16px; border-radius: var(--pill); font-size: .92rem; }
    .header-actions { margin-top: 12px; gap: 10px; flex-wrap: wrap; }
    .header-actions > .nav-link { flex: 1 1 100%; }
    .header-actions > .nav-cta { flex: 1; justify-content: center; padding: 14px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .cta { padding: 56px 26px; }
    .hero__arrow { width: 42px; height: 42px; }
    .hero__arrow--prev { left: 10px; }
    .hero__arrow--next { right: 10px; }
    .hero__subtitle { font-size: .98rem; }
    .partners-track .partner-item { width: 150px; }
}

@media (max-width: 480px) {
    .site-footer__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .partners-track .partner-item { width: 132px; }
    .back-to-top { right: 86px; }
    .form-card { padding: 28px 22px; }
    .cert-card { padding: 20px; gap: 20px; }
    .cert-card__thumb { width: 140px; }
}
