@charset "UTF-8";
/* =========================================================================
   ZT İş Güvenliği — Ürün Detay Sayfası
   style.css üzerine biner. Mobile-first; tüm sorgular min-width.
   Fiyat / sepet yoktur: tüm etkileşim teklif talebine akar.
   ========================================================================= */

/* =========================================================
   1. ÜRÜN ÜST BÖLÜMÜ
   ========================================================= */
.product { padding-block: 22px 0; }
.product__grid { display: grid; gap: 26px; }

@media (min-width: 992px) {
  .product { padding-block: 36px 0; }
  .product__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 44px; align-items: start;
  }
  /* galeri kaydırılırken özet sütunu takip etsin */
  .psum { position: sticky; top: calc(var(--header-h) + 20px); }
}
@media (min-width: 1200px) { .product__grid { gap: 56px; } }

/* ---------- Galeri: kaydırmalı slider ---------- */
.gal { min-width: 0; }

.gal__viewport {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--muted);
  border: 1px solid var(--line-2);
}
.gal__viewport:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* Yatay kaydırma + snap: dokunmatikte doğal savurma, masaüstünde sürükleme */
.gal__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  cursor: grab;
}
.gal__track::-webkit-scrollbar { display: none; }
.gal__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.gal__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  aspect-ratio: 4 / 3;
}
.gal__slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  user-select: none; -webkit-user-drag: none;
  pointer-events: none;          /* sürüklemeyi görsel yakalamasın */
}

.gal__flags {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 6px; pointer-events: none;
}
.flag {
  font-family: var(--f-head); font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 3px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.flag--std { background: rgba(6,26,48,.82); color: #fff; }
.flag--ce { background: var(--orange); color: #fff; }

.gal__nav {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy-800);
  box-shadow: 0 8px 22px -10px rgba(6,26,48,.55);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.gal__nav svg { width: 19px; height: 19px; }
.gal__nav:hover { background: #fff; }
.gal__nav--prev { left: 10px; }
.gal__nav--next { right: 10px; }
.gal__nav[disabled] { opacity: 0; pointer-events: none; }

.gal__counter {
  position: absolute; left: 12px; bottom: 12px; z-index: 3;
  padding: 5px 10px; border-radius: 100px;
  background: rgba(6,26,48,.72); color: #fff;
  font-family: var(--f-head); font-size: 11.5px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.gal__zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy-800);
  box-shadow: 0 8px 22px -10px rgba(6,26,48,.55);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gal__zoom svg { width: 18px; height: 18px; fill: none; stroke: currentColor; }
.gal__zoom:hover { background: #fff; transform: scale(1.06); }

/* Küçük görseller */
.gal__thumbs {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px; margin-top: 10px;
}
.thumb {
  display: block; padding: 0; width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--muted);
  overflow: hidden; cursor: pointer;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(232,89,12,.22); }
.thumb:hover { border-color: var(--navy-800); }

@media (min-width: 576px) {
  .gal__thumbs { gap: 10px; margin-top: 12px; }
  .flag { font-size: 10.5px; padding: 6px 11px; }
  .gal__nav, .gal__zoom { width: 44px; height: 44px; }
}
@media (min-width: 992px) {
  /* ilk ekranı şişirmesin diye galeri yüksekliği sınırlı */
  .gal__slide { aspect-ratio: 4 / 3; max-height: 430px; }
}
@media (min-width: 1400px) { .gal__slide { max-height: 480px; } }

/* ---------- Özet sütunu ---------- */
.psum { min-width: 0; }
.psum__eyebrow {
  font-family: var(--f-head); font-size: 11.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 8px;
}
.psum__title {
  font-size: clamp(23px, 5.4vw, 36px); line-height: 1.16;
  letter-spacing: -.026em; color: var(--navy-800);
  margin-bottom: 6px;
}
.psum__code { font-size: 12.5px; line-height: 1.5; color: var(--ink-3); margin-bottom: 14px; }
.psum__code strong { color: var(--ink-2); font-weight: 600; letter-spacing: .02em; }


.psum__norms {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.psum__norms li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 9px;
  background: var(--muted); border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-size: 11px; color: var(--ink-2); line-height: 1.2;
  white-space: nowrap;
}
.psum__norms svg { width: 17px; height: 17px; flex: none; color: var(--navy-800); stroke: currentColor; fill: none; }
.psum__norms strong { color: var(--navy-800); font-weight: 600; }

/* Seçim blokları */
.opt { margin-bottom: 18px; }
.opt__label {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px;
  font-family: var(--f-head); font-size: 12.5px; font-weight: 600;
  color: var(--navy-800); margin-bottom: 10px;
}
.opt__value { font-family: var(--f-body); font-weight: 400; color: var(--ink-2); }
.opt__link {
  margin-left: auto;
  display: inline-flex; align-items: center; min-height: 32px; padding-block: 6px;
  font-family: var(--f-body); font-size: 12.5px; font-weight: 400;
  color: var(--orange); text-decoration: underline; text-underline-offset: 3px;
}
.opt__link:hover { color: var(--orange-600); }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.sw {
  width: 40px; height: 40px; padding: 0;
  border: 2px solid var(--line); border-radius: 50%;
  cursor: pointer; position: relative;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.sw::after {
  content: ""; position: absolute; inset: -5px;
  border: 2px solid transparent; border-radius: 50%;
  transition: border-color var(--dur) var(--ease);
}
.sw:hover { transform: scale(1.06); }
.sw.is-active::after { border-color: var(--orange); }
.sw--orange { background: linear-gradient(135deg, #e8590c 50%, #0a2540 50%); }
.sw--navy   { background: linear-gradient(135deg, #0a2540 50%, #8b95a1 50%); }
.sw--grey   { background: linear-gradient(135deg, #6e7885 50%, #17191c 50%); }
.sw--red    { background: linear-gradient(135deg, #b0231d 50%, #0a2540 50%); }

.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size {
  min-width: 48px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--f-head); font-size: 13.5px; font-weight: 600; color: var(--navy-800);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.size:hover { border-color: var(--navy-800); }
.size[aria-pressed="true"] {
  background: var(--navy-800); border-color: var(--navy-800); color: #fff;
}
.opt__hint { margin-top: 9px; font-size: 12px; line-height: 1.45; color: var(--ink-3); }


.psum__actions {
  display: flex; flex-direction: column; gap: 10px;
  margin: 24px 0 20px;
}
.psum__actions .btn { width: 100%; }

.psum__trust { display: grid; gap: 10px; }
.psum__trust li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.5; color: var(--ink-2);
}
.psum__trust .ico { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--orange); }

@media (min-width: 480px) {
  .psum__actions { flex-direction: row; }
  .psum__actions .btn { width: auto; flex: 1 1 auto; }
}
@media (min-width: 992px) {
  .psum__lead { font-size: 15.5px; }
  .psum__norms li { font-size: 12.5px; padding: 9px 13px; gap: 8px; }
  .psum__norms svg { width: 20px; height: 20px; }
  .psum__trust li { font-size: 13.5px; }
}

/* =========================================================
   3. TEKNİK SEKMELER
   ========================================================= */
.ptabs { background: var(--muted); margin-top: var(--sec-y); }

.tabs__bar {
  position: relative;
  display: flex; gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  -webkit-overflow-scrolling: touch;
  /* sağ kenarda kaydırma olduğunu belli eden solma */
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 88%, rgba(0,0,0,.15) 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 88%, rgba(0,0,0,.15) 100%);
}
@media (min-width: 768px) { .tabs__bar { -webkit-mask-image: none; mask-image: none; } }
.tabs__bar::-webkit-scrollbar { display: none; }
.tabs__btn {
  flex: 0 0 auto;
  position: relative;
  padding: 13px 14px;
  border: 0; background: transparent;
  font-family: var(--f-head); font-size: 13.5px; font-weight: 600;
  color: var(--ink-2); white-space: nowrap; cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.tabs__btn::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: -1px; height: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: center;
  transition: transform .28s var(--ease);
}
.tabs__btn:hover { color: var(--navy-800); }
.tabs__btn.is-active { color: var(--navy-800); }
.tabs__btn.is-active::after { transform: scaleX(1); }

.tabs__panel[hidden] { display: none; }
.tabs__panel { animation: ztFadeIn .3s var(--ease) both; }
@keyframes ztFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.tabs__note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px;
  font-size: 13px; line-height: 1.6; color: var(--ink-2);
}
.tabs__note .ico { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--orange); }
.tabs__note strong { color: var(--navy-800); font-weight: 600; }

@media (min-width: 768px) {
  .tabs__btn { padding: 15px 20px; font-size: 14.5px; }
  .tabs__bar { gap: 6px; margin-bottom: 28px; }
}

/* ---------- Teknik künye ---------- */
.specs { display: grid; gap: 20px; }

.spectable {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
}
.spec + .spec { border-top: 1px solid var(--line-2); }
.spec:nth-child(odd) { background: #fcfcfb; }
.spec dt {
  font-family: var(--f-head); font-size: 12px; font-weight: 600;
  color: var(--ink-3); letter-spacing: .01em;
}
.spec dd { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--navy-800); }

.specnote {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 18px;
  align-self: start;
}
.specnote__title {
  font-size: 14px; font-weight: 600; color: var(--navy-800);
  margin-bottom: 6px;
}
.specnote__title + p { margin-bottom: 16px; }
.specnote p { font-size: 13px; line-height: 1.6; color: var(--ink-2); }
.specnote strong { color: var(--navy-800); font-weight: 600; }
.specnote__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px; min-height: 40px;
  font-family: var(--f-head); font-size: 13.5px; font-weight: 600; color: var(--orange);
  transition: gap var(--dur) var(--ease);
}
.specnote__cta .ico { width: 16px; height: 16px; }
.specnote__cta:hover { gap: 12px; }

@media (min-width: 576px) {
  .spec { grid-template-columns: minmax(0, 150px) minmax(0, 1fr); gap: 14px; align-items: baseline; padding: 13px 16px; }
  .spec dt { font-size: 12.5px; }
}
@media (min-width: 992px) {
  .specs { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 24px; }
  .spec { grid-template-columns: minmax(0, 180px) minmax(0, 1fr); padding: 14px 20px; }
  .spec dd { font-size: 14px; }
  .specnote { padding: 26px 24px; }
}

/* ---------- Standart listesi ---------- */
.normlist { display: grid; gap: 12px; }
.norm {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}
.norm__badge {
  width: 44px; height: 50px;
  display: grid; place-items: center;
  color: var(--navy-800);
  background: linear-gradient(180deg, #f2f4f6 0%, #e8ebee 100%);
  clip-path: polygon(50% 0%, 100% 15%, 100% 62%, 50% 100%, 0% 62%, 0% 15%);
}
.norm__badge svg { width: 23px; height: 23px; stroke: currentColor; fill: none; margin-top: -2px; }
.norm__code {
  font-family: var(--f-head); font-size: 13.5px; font-weight: 600;
  color: var(--navy-800); margin-bottom: 5px;
}
.norm__text { font-size: 13px; line-height: 1.6; color: var(--ink-2); }

@media (min-width: 768px) {
  .normlist { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .norm { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 22px 20px; }
}
@media (min-width: 992px) { .norm { padding: 26px 24px; } }

.ptabs .cebar { margin-top: 14px; }

/* ---------- Beden tablosu ---------- */
.tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}
.tablewrap:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.sizetable {
  width: 100%; min-width: 460px;
  border-collapse: collapse;
  font-size: 13px;
}
.sizetable caption {
  caption-side: bottom;
  padding: 12px 14px;
  font-size: 12px; line-height: 1.5; color: var(--ink-3); text-align: left;
  border-top: 1px solid var(--line-2);
}
.sizetable th, .sizetable td {
  padding: 11px 14px; text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.sizetable thead th {
  font-family: var(--f-head); font-size: 12px; font-weight: 600;
  color: #fff; background: var(--navy-800);
  white-space: nowrap;
  border-bottom: 0;
}
.sizetable tbody th {
  font-family: var(--f-head); font-weight: 600; color: var(--navy-800);
  /* dar ekranda kayarken beden sütunu sabit kalsın */
  position: sticky; left: 0;
  background: var(--surface);
  box-shadow: 1px 0 0 var(--line-2);
}
.sizetable tbody tr:nth-child(even) th,
.sizetable tbody tr:nth-child(even) td { background: #fcfcfb; }
.sizetable tbody tr:hover th,
.sizetable tbody tr:hover td { background: #fff6f0; }
.sizetable td { color: var(--ink-2); font-variant-numeric: tabular-nums; }

@media (min-width: 768px) { .sizetable { font-size: 13.5px; } .sizetable th, .sizetable td { padding: 13px 18px; } }

/* ---------- Kullanım & bakım ---------- */
.carelist { display: grid; gap: 10px; }
.care {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}
.care__sym {
  position: relative;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--navy-800); background: var(--muted);
}
.care__sym svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.care__sym em {
  position: absolute; bottom: 9px;
  font-style: normal; font-family: var(--f-head);
  font-size: 8.5px; font-weight: 700; color: var(--navy-800);
}
.care__txt { font-size: 13px; line-height: 1.55; color: var(--ink-2); }

.carenote {
  margin-top: 16px; padding: 20px 18px;
  background: var(--navy-800); border-radius: var(--radius);
}
.carenote__title { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.carenote p { font-size: 13px; line-height: 1.65; color: var(--on-dark); }
.carenote strong { color: #fff; font-weight: 600; }

@media (min-width: 768px) {
  .carelist { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .carenote { padding: 26px 28px; }
  .carenote p { font-size: 13.5px; }
}
@media (min-width: 1200px) { .carelist { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* =========================================================
   4. FORMDA SEÇİM ÖZETİ
   ========================================================= */

.field--wide { grid-column: 1 / -1; }
.field__opt { font-weight: 400; color: var(--ink-3); }

@media (min-width: 992px) {
  .quote__row--select { grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.4fr); }
  .field--wide { grid-column: auto; }
}

/* =========================================================
   5. İLGİLİ ÜRÜNLER
   ========================================================= */
@media (min-width: 992px) {
  .cg-grid--rel { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cg-grid--rel .cgcard { aspect-ratio: 1000/620; min-height: 178px; }
}

/* =========================================================
   6. YAPIŞKAN ÜRÜN BARI (yalnız ≥992px)
   ========================================================= */
.stickybar {
  position: fixed; left: 0; right: 0; top: 0; z-index: 1029;
  display: none;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px -18px rgba(6,26,48,.5);
  transform: translateY(-100%);
  transition: transform .3s var(--ease);
}
.stickybar.is-visible { transform: none; }
.stickybar__inner {
  display: flex; align-items: center; gap: 16px;
  min-height: 68px; padding-block: 10px;
}
.stickybar__thumb {
  width: 48px; height: 48px; flex: none;
  object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line-2);
}
.stickybar__meta { display: grid; gap: 2px; min-width: 0; margin-right: auto; }
.stickybar__name {
  font-family: var(--f-head); font-size: 15px; font-weight: 600; color: var(--navy-800);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.stickybar__sub {
  font-size: 12.5px; color: var(--ink-3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.stickybar__actions { display: flex; gap: 10px; flex: none; }

@media (min-width: 992px) {
  .stickybar { display: block; top: 0; }
  /* yapışkan bar açıkken ana header'ın altına girmesin */
  .stickybar.is-visible ~ .site-header { z-index: 1028; }
}

/* =========================================================
   7. LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 1080;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(6,26,48,.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__img {
  max-width: min(100%, 1100px); max-height: 86vh;
  width: auto; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
}
.lightbox__close {
  position: absolute; top: 16px; right: 16px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.24); border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.18); }
.lightbox__close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

@media (min-width: 992px) { .lightbox__close { top: 24px; right: 24px; } }

/* =========================================================
   8. HAREKET AZALTMA
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .tabs__panel { animation: none; }
  .stickybar, .lightbox, .gallery__img { transition: none; }
}
