/* ============ Pulse animasyonu (ölçü arama) ============ */
@keyframes pulse-border {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,.5); }
  50%  { box-shadow: 0 0 0 7px rgba(37,99,235,.12); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.dims-active .dim-field input {
  animation: pulse-border 1.6s ease-out infinite;
  border-color: var(--accent2, #2563eb);
}
.dims-active .dim-field input:focus {
  animation: none;
  border-color: var(--accent2-ink, #1d4ed8);
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}
.dims-active .dim-field label .sym { color: var(--accent2, #2563eb); }
.dims-active .btn-search { background: var(--accent2, #2563eb); }
.dims-active .btn-search:hover { background: var(--accent2-ink, #1d4ed8); }

/* ============ Flag stripe ============ */
.flag-stripe { display: flex; height: 5px; position: sticky; top: 0; z-index: 50; }
.fs-red  { flex: 1; background: #E30A17; }
.fs-blue { flex: 1; background: #003F9A; }

/* ============ Search section head ============ */
.search-section-head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 22px 0;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--ink-2);
}
.search-section-head.red { color: var(--accent); }
.search-section-head.blue { color: var(--accent2, #003F9A); }
.sec-badge {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  background: var(--accent2-soft, #e8f0fc); color: var(--accent2, #003F9A);
  border-radius: 5px; padding: 2px 7px; margin-left: 4px;
}

/* ============ Search divider ============ */
.search-divider {
  display: flex; align-items: center; gap: 12px;
  padding: 2px 22px 0; margin: 0;
}
.search-divider::before, .search-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--line) 0%, var(--accent2, #003F9A) 50%, var(--line) 100%);
  opacity: .5;
}
.search-divider span {
  font-size: 11.5px; font-weight: 600; font-family: var(--font-mono);
  color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}

/* ============ Tip toggle ============ */
.search-tip-row {
  padding: 8px 22px 14px;
  border-top: 1px solid var(--line);
}
.tip-toggle {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600;
  color: var(--ink-2); background: none; border: none; padding: 6px 0;
  transition: color .15s;
}
.tip-toggle:hover { color: var(--ink); }
.tip-toggle.on { color: var(--accent); }
.tip-arrow { font-size: 14px; transition: transform .2s; }
.tip-arrow.up { transform: rotate(180deg); }

/* logo rulman her zaman bayrak kırmızısı */
.logo-mark { color: #E30A17 !important; display: flex; }
/* Ara butonu lacivert */
.btn-search { background: var(--accent2, #003F9A) !important; }
.btn-search:hover { background: var(--accent2-ink, #002d73) !important; }
/* .btn-blue artık btn-search ile aynı */
.btn-blue { background: var(--accent2, #003F9A) !important; }
.btn-blue:hover { background: var(--accent2-ink, #002d73) !important; }

/* ============ Floating Ölçü Paneli ============ */
.fdims-tab {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 36;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; width: 36px; background: #003F9A; color: #fff;
  border-radius: 10px 0 0 10px;
  cursor: pointer; border: none; padding: 20px 0;
  transition: background .15s;
  box-shadow: -3px 0 16px rgba(0,63,154,.25);
}
.fdims-tab:hover { background: #002d73; }
.fdims-body {
  position: fixed; right: 36px; top: 50%;
  transform: translateY(-50%) translateX(calc(100% + 40px));
  z-index: 35; width: 240px;
  background: #fff; border: 1px solid var(--line-2); border-right: none;
  border-radius: 16px 0 0 16px;
  transition: transform .32s cubic-bezier(.32,.72,.3,1), opacity .25s;
  box-shadow: -8px 0 32px rgba(0,63,154,.18);
  opacity: 0; pointer-events: none;
}
.fdims-body.visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1; pointer-events: auto;
}
.fdims-body-inner {
  padding: 20px 18px 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.fdims-stripe { height: 4px; display: flex; border-radius: 4px; overflow: hidden; margin-bottom: 2px; }
.fds-red  { flex: 1; background: #E30A17; }
.fds-blue { flex: 1; background: #003F9A; }
.fdims-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--accent2, #003F9A); margin: 0; display: flex; align-items: center; gap: 7px; }
.fdims-hint { font-size: 12px; color: var(--ink-3); margin: 0; line-height: 1.5; }
.fdims-field { display: flex; flex-direction: column; gap: 5px; }
.fdims-lbl { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.fdims-field .dim-input-wrap input { width: 100%; }
.btn-fdims {
  width: 100%; height: 46px; border: none; border-radius: 10px;
  background: #003F9A; color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 14.5px; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s; margin-top: 4px;
}
.btn-fdims:hover { background: #002d73; }
.btn-fdims-clear { background: none; border: none; font-size: 12px; color: var(--ink-3); text-align: center; padding: 2px; text-decoration: underline; }
.btn-fdims-clear:hover { color: var(--accent); }
.fdims-tab-icon { opacity: .75; }
.fdims-tab-label {
  writing-mode: vertical-lr; text-orientation: mixed; transform: rotate(180deg);
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .14em;
}
.fdims-tab-arr {
  font-size: 18px; font-weight: 700; opacity: .6; transition: transform .2s;
  writing-mode: vertical-lr; transform: rotate(180deg);
}
.fdims-tab-arr.open { transform: rotate(0deg); }
/* Mobile */
@media (max-width: 640px) { .fdims { display: none; } }

/* ============ Blue btn ============ */
.btn-blue { background: var(--accent2, #003F9A) !important; }
.btn-blue:hover { background: var(--accent2-ink, #002d73) !important; }

/* ============ Header ============ */
.hdr {
  position: sticky; top: 5px; z-index: 40;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: center; gap: 32px; height: 66px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark { color: var(--accent); display: flex; }
.logo-txt { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.logo-txt .tld { color: var(--ink-3); font-weight: 500; }
.nav { display: flex; gap: 28px; margin-left: 8px; }
.nav a { font-size: 14px; color: var(--ink-2); font-weight: 500; transition: color .15s; white-space: nowrap; }
.nav a:hover { color: var(--ink); }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.btn-ghost {
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  padding: 9px 16px; border-radius: 9px; border: 1px solid var(--line-2);
  background: transparent; color: var(--ink); transition: all .15s;
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-3); }

/* ============ Hero ============ */
.hero { padding: 56px 0 36px; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 16px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5vw, 54px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 0; max-width: 16ch; text-wrap: balance;
}
.hero-sub { margin: 18px 0 0; font-size: 17px; color: var(--ink-2); max-width: 54ch; }
.hero-stats { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.stat .lbl { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }

/* ============ Search card ============ */
.search-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; margin-top: 34px;
  box-shadow: 0 1px 2px rgba(28,25,23,.04), 0 18px 40px -28px rgba(28,25,23,.22);
}
.search-tabs { display: flex; gap: 2px; padding: 8px 8px 0; border-bottom: 1px solid var(--line); }
.search-tab {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  padding: 12px 18px; border: none; background: transparent; color: var(--ink-3);
  border-radius: 9px 9px 0 0; position: relative; transition: color .15s;
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
}
.search-tab:hover { color: var(--ink-2); }
.search-tab.on { color: var(--ink); }
.search-tab.on::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px;
  height: 2.5px; background: var(--accent); border-radius: 2px;
}
.search-tab.on[data-mode="olcu"]::after { background: var(--accent2, #2563eb); }
.search-tab.on[data-mode="olcu"] { color: var(--accent2, #2563eb); }
.tab-kbd {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--ink-3); background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 5px; padding: 1px 6px;
}
.search-body { padding: 22px; }

/* part no search */
.searchbar { display: flex; gap: 12px; position: relative; }
.searchbar-field { flex: 1; position: relative; z-index: 0; }
.searchbar-field svg.lead { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-3); z-index: 2; }

/* soluk LED — kayan mavi/kırmızı hâle */
.searchbar-field::before {
  content: ""; position: absolute; inset: -3px; border-radius: 14px; z-index: -1;
  background: linear-gradient(110deg, #E30A17, #6e1733, #14224d, #003F9A, #14224d, #6e1733, #E30A17);
  background-size: 300% 100%;
  filter: blur(11px); opacity: .26;
  animation: ledSlide 6s linear infinite;
  pointer-events: none;
}
.searchbar-field:focus-within::before { opacity: .42; }
/* katı alan zemini (LED'in ortasını kapatır, sadece kenar hâlesi kalır) */
.searchbar-field::after {
  content: ""; position: absolute; inset: 0; border-radius: 12px; z-index: 0;
  background: var(--bg); border: 1.5px solid var(--line-2);
  transition: border-color .15s, background .15s; pointer-events: none;
}
.searchbar-field:focus-within::after { border-color: var(--accent); background: var(--surface); }
@keyframes ledSlide { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
@media (prefers-reduced-motion: reduce) { .searchbar-field::before { animation: none; } }

.searchbar input {
  position: relative; z-index: 1;
  width: 100%; height: 58px; padding: 0 18px 0 48px;
  font-family: var(--font-mono); font-size: 18px; font-weight: 500; letter-spacing: 0.01em;
  border: none; background: transparent; outline: none;
  /* iki tonlu yazı: üst mavi, alt kırmızı */
  background-image: linear-gradient(to bottom, #003F9A 0 50%, #E30A17 50% 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  caret-color: #003F9A;
}
.searchbar input::placeholder { -webkit-text-fill-color: var(--ink-3); color: var(--ink-3); font-weight: 400; letter-spacing: 0; }
.btn-search {
  height: 58px; padding: 0 30px; border: none; border-radius: 12px;
  background: var(--accent); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 9px;
  transition: background .15s, transform .05s;
}
.btn-search:hover { background: var(--accent-ink); }
.btn-search:active { transform: translateY(1px); }

/* suggestions */
.suggest {
  position: absolute; top: 64px; left: 0; right: 0; z-index: 30;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px;
  box-shadow: 0 24px 48px -22px rgba(28,25,23,.32); overflow: hidden;
}
.suggest-item {
  display: flex; align-items: center; gap: 14px; padding: 11px 16px;
  border-bottom: 1px solid var(--line); cursor: pointer; transition: background .12s;
}
.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover, .suggest-item.active { background: var(--surface-2); }
.suggest-code { font-family: var(--font-mono); font-weight: 600; font-size: 15px; min-width: 86px; }
.suggest-type { font-size: 13px; color: var(--ink-2); }
.suggest-dims { margin-left: auto; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-3); }

/* dims search */
.dims-row { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; }
.dim-field { display: flex; flex-direction: column; gap: 7px; }
.dim-field label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); display: flex; align-items: baseline; gap: 6px; }
.dim-field label .sym { font-family: var(--font-mono); color: var(--accent); font-size: 13px; }
.dim-input-wrap { position: relative; }
.dim-field input {
  width: 130px; height: 56px; padding: 0 38px 0 16px;
  font-family: var(--font-mono); font-size: 19px; font-weight: 500;
  border: 1.5px solid var(--line-2); border-radius: 12px; background: var(--bg);
  outline: none; transition: border-color .15s, background .15s;
}
.dim-field input:focus { border-color: var(--accent); background: var(--surface); }
.dim-unit { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }
.dim-x { font-family: var(--font-display); font-size: 20px; color: var(--ink-3); padding-bottom: 16px; font-weight: 500; }
.dims-hint { margin: 14px 2px 0; font-size: 12.5px; color: var(--ink-3); }
.dims-hint b { color: var(--ink-2); font-weight: 600; }

/* type chips */
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.type-card {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; text-align: left;
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg);
  transition: border-color .15s, background .15s; color: var(--ink);
  text-decoration: none; cursor: pointer; width: 100%;
}
.type-card:hover { border-color: var(--line-2); background: var(--surface); }
.type-card.on { border-color: var(--accent); background: var(--accent-soft); }
.type-card .tc-ic { color: var(--ink-2); flex-shrink: 0; }
.type-card.on .tc-ic { color: var(--accent); }
.type-card .tc-name { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.type-card .tc-en { font-size: 11.5px; color: var(--ink-3); font-family: var(--font-mono); }

/* quick chips */
.quick { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 20px; }
.quick-lbl { font-size: 12.5px; color: var(--ink-3); font-weight: 500; margin-right: 2px; }
.chip {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  padding: 6px 13px; border-radius: 20px; border: 1px solid var(--line-2);
  background: var(--surface); color: var(--ink-2); transition: all .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* ============ Results ============ */
.results { padding: 14px 0 80px; }
.results-grid { display: grid; grid-template-columns: 248px 1fr; gap: 32px; align-items: start; }

/* sidebar */
.sidebar { position: sticky; top: 86px; }
.filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.filter-head h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin: 0; }
.filter-clear { font-size: 12.5px; color: var(--accent); background: none; border: none; font-weight: 600; padding: 4px; }
.filter-clear:hover { text-decoration: underline; }
.fgroup { padding: 18px 0; border-bottom: 1px solid var(--line); }
.fgroup:last-child { border-bottom: none; }
.fgroup-title { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.fopt { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; user-select: none; }
a.fopt-nav { text-decoration: none; color: inherit; }
.fopt .box {
  width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line-2);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .12s; color: #fff;
}
.fopt:hover .box { border-color: var(--ink-3); }
.fopt.on .box { background: var(--accent); border-color: var(--accent); }
.fopt .ftxt { font-size: 14px; color: var(--ink); }
.fopt .fcount { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
/* Tip navigasyonu (filtre değil) */
.fopt-nav { border-radius: 7px; padding: 7px 9px; margin: 0 -9px; transition: background .12s, color .12s; }
.fopt-nav .ftxt { transition: color .12s; }
.fopt-nav:hover { background: var(--accent2-soft, #e8f0fc); }
.fopt-nav:hover .ftxt { color: var(--accent2, #003F9A); font-weight: 600; }
.fopt-nav.on { background: var(--accent2, #003F9A); }
.fopt-nav.on .ftxt { color: #fff; font-weight: 600; }
.fopt-nav.on .fcount { color: rgba(255,255,255,.7); }
.switch-row { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.switch-row .ftxt { font-size: 14px; font-weight: 500; }
.switch { width: 38px; height: 22px; border-radius: 20px; background: var(--line-2); position: relative; transition: background .15s; flex-shrink: 0; }
.switch::after { content:""; position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%; background:#fff; transition: transform .16s; box-shadow:0 1px 2px rgba(0,0,0,.2); }
.switch.on { background: var(--accent); }
.switch.on::after { transform: translateX(16px); }

/* results main */
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 14px; color: var(--ink-2); }
.results-count b { font-family: var(--font-display); color: var(--ink); font-weight: 700; }
.results-count .q { font-family: var(--font-mono); color: var(--accent); font-weight: 600; }
.sort-wrap { display: flex; align-items: center; gap: 9px; }
.sort-wrap span { font-size: 13px; color: var(--ink-3); }
.sort-sel {
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 9px; padding: 8px 12px; background: var(--surface); outline: none;
}
.sort-sel:focus { border-color: var(--accent); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--card-gap, 16px); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; display: flex; gap: 16px; cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .12s;
}
.card:hover { border-color: var(--line-2); box-shadow: 0 14px 30px -22px rgba(28,25,23,.4); transform: translateY(-2px); }
.card-viz {
  width: 92px; height: 92px; flex-shrink: 0; border-radius: 11px;
  background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink-2);
  position: relative; overflow: hidden;
}
.card-viz::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 7px, rgba(28,25,23,.025) 7px 8px);
}
.card-viz-img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; display: block; }
.card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.card-top > div:first-child { min-width: 0; }
.card-code { font-family: var(--font-mono); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; line-height: 1; }
.card-type { font-size: 12.5px; color: var(--ink-2); margin-top: 5px; font-weight: 500; white-space: nowrap; }
.card-name { font-size: 13px; color: var(--ink-2); margin-top: 6px; font-weight: 500; line-height: 1.35; text-wrap: pretty; }
.card-dims { display: flex; gap: 6px; margin-top: 11px; }
.dim-pill { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); border-radius: 7px; padding: 3px 8px; }
.dim-pill .k { color: var(--accent); }
.card-specs { display: flex; gap: 16px; margin-top: 12px; }
.spec { display: flex; flex-direction: column; }
.spec .sv { font-family: var(--font-mono); font-size: 13.5px; font-weight: 600; }
.spec .sk { font-size: 10.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 13px; gap: 10px; }
.card-brands { display: flex; gap: 5px; align-items: center; flex-wrap: nowrap; }
.brand-tag { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; }
.brand-more { font-size: 11px; color: var(--ink-3); font-family: var(--font-mono); }
.card-price { text-align: right; }
.card-detay { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--ink-3); transition: color .15s; white-space: nowrap; }
.card:hover .card-detay { color: var(--accent); }
.card-price .pv { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.card-price .pc { font-size: 11px; color: var(--ink-3); white-space: nowrap; }

/* stock badge */
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 4px 9px; border-radius: 7px; }
.stock .dot { width: 7px; height: 7px; border-radius: 50%; }
.stock.in { color: var(--ok); background: var(--ok-soft); } .stock.in .dot { background: var(--ok); }
.stock.low { color: var(--warn); background: var(--warn-soft); } .stock.low .dot { background: var(--warn); }
.stock.out { color: var(--danger); background: var(--danger-soft); } .stock.out .dot { background: var(--danger); }

/* empty */
.empty { grid-column: 1 / -1; text-align: center; padding: 70px 20px; color: var(--ink-3); }
.empty h4 { font-family: var(--font-display); color: var(--ink-2); font-size: 18px; margin: 16px 0 6px; }

.more-wrap { display: flex; justify-content: center; margin-top: 26px; }
.btn-more { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); background: var(--surface); border: 1.5px solid var(--line-2); border-radius: 12px; padding: 13px 24px; transition: all .15s; }
.btn-more:hover { border-color: var(--accent); color: var(--accent); }
.more-rem { font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; color: var(--ink-3); }
.btn-more:hover .more-rem { color: var(--accent); }

/* ============ Detail drawer ============ */
.drawer-scrim { position: fixed; inset: 0; background: rgba(28,25,23,.4); z-index: 60; opacity: 0; transition: opacity .2s; backdrop-filter: blur(2px); }
.drawer-scrim.show { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(560px, 94vw); z-index: 61;
  background: var(--bg); box-shadow: -30px 0 60px -30px rgba(28,25,23,.5);
  transform: translateX(100%); transition: transform .26s cubic-bezier(.32,.72,.3,1);
  display: flex; flex-direction: column;
}
.drawer.show { transform: translateX(0); }
.drawer-head { display: flex; align-items: flex-start; gap: 14px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-close { margin-left: auto; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .15s; }
.drawer-close:hover { background: var(--surface-2); color: var(--ink); }
.drawer-code { font-family: var(--font-mono); font-weight: 700; font-size: 26px; letter-spacing: -0.01em; line-height: 1; }
.drawer-type { font-size: 14px; color: var(--ink-2); margin-top: 6px; }
.drawer-scroll { overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 24px; }
.drawer-cross { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; display: flex; align-items: center; justify-content: center; color: var(--ink-2); }

.sec-title { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.spec-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 11px 16px; font-size: 14px; }
.spec-table td:first-child { color: var(--ink-2); }
.spec-table td:last-child { text-align: right; font-family: var(--font-mono); font-weight: 600; }
.spec-table td .unit { color: var(--ink-3); font-weight: 400; font-size: 12px; margin-left: 3px; }

.seal-row { display: flex; gap: 8px; }
.seal-btn { font-family: var(--font-mono); font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 9px; border: 1.5px solid var(--line-2); background: var(--surface); color: var(--ink-2); transition: all .15s; }
.seal-btn:hover { border-color: var(--ink-3); }
.seal-btn.on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); }
.seal-desc { font-size: 12.5px; color: var(--ink-3); margin: 9px 2px 0; }

.equiv-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.equiv-table tr { border-bottom: 1px solid var(--line); }
.equiv-table tr:last-child { border-bottom: none; }
.equiv-table td { padding: 10px 16px; font-size: 14px; }
.equiv-brand { font-family: var(--font-display); font-weight: 600; }
.equiv-code { text-align: right; font-family: var(--font-mono); font-weight: 600; color: var(--accent-ink); }
.copy-btn { background: none; border: none; color: var(--ink-3); padding: 2px 6px; }
.copy-btn:hover { color: var(--accent); }

.drawer-foot { border-top: 1px solid var(--line); padding: 18px 24px; display: flex; align-items: center; gap: 14px; background: var(--surface); }
.foot-price { }
.foot-price .pv { font-family: var(--font-display); font-weight: 700; font-size: 24px; }
.foot-price .pc { font-size: 11.5px; color: var(--ink-3); }
.btn-primary { margin-left: auto; height: 50px; padding: 0 26px; border: none; border-radius: 11px; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 9px; transition: background .15s; }
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary:disabled { background: var(--line-2); color: var(--ink-3); cursor: not-allowed; }
.btn-outline { height: 50px; padding: 0 20px; border: 1.5px solid var(--line-2); border-radius: 11px; background: var(--surface); color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 15px; transition: all .15s; }
.btn-outline:hover { border-color: var(--ink-3); }

/* ============ Footer ============ */
.footer { border-top: 1px solid var(--line); padding: 32px 0; margin-top: auto; }
.footer-in { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-in .muted { font-size: 13px; color: var(--ink-3); }
.footer-links { margin-left: auto; display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: var(--ink-2); }
.footer-links a:hover { color: var(--ink); }

/* toast */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 80; background: var(--ink); color: #fff; font-size: 14px; font-weight: 500; padding: 12px 20px; border-radius: 11px; box-shadow: 0 16px 40px -16px rgba(0,0,0,.5); opacity: 0; transition: all .22s; display: flex; align-items: center; gap: 9px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 880px) {
  .results-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cards { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

/* ============ Ana sayfa (sadece arama motoru) ============ */
.home {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
}
.home-logo {
  display: flex; align-items: center; gap: 9px; margin-top: 10px; cursor: pointer; transform: scale(.88);
}
.home-logo .logo-mark { color: var(--accent); display: flex; }
.home-inner {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  width: 100%; max-width: 1060px; padding: 4px 0 36px; text-align: center;
}
.home-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3.1vw, 33px); line-height: 1.05; letter-spacing: -0.02em;
  margin: 2px 0 0; text-wrap: balance;
}
.home-sub { margin: 7px 0 0; font-size: 15px; color: var(--ink-2); max-width: 52ch; }
.home .search-card { width: 100%; margin-top: 0; text-align: left; }

/* ===== Hero iki sütun: arama + ölçü fotoğrafı ===== */
.hero-cols {
  width: 100%; margin-top: 14px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px;
  align-items: stretch; text-align: left;
}
.hero-col-search, .hero-col-dim { min-width: 0; display: flex; flex-direction: column; }
.hero-col-search .search-card { flex: 1; }
@media (max-width: 880px) {
  .hero-cols { grid-template-columns: 1fr; gap: 18px; }
}

/* ===== Anasayfa Rulman Tipleri bölümü ===== */
.home-types { width: 100%; margin-top: 44px; text-align: left; }
.htype-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; margin-top: 20px; }
.htype-pill {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface);
  text-decoration: none; color: var(--ink); font-size: 14.5px; font-weight: 500;
  transition: border-color .15s, box-shadow .15s, transform .1s, color .15s;
}
.htype-pill:hover { border-color: var(--accent2, #003F9A); color: var(--accent2, #003F9A); box-shadow: 0 10px 22px -16px rgba(0,63,154,.4); transform: translateY(-2px); }
.htype-c { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); flex-shrink: 0; }

/* ===== Anasayfa Rehber bölümü ===== */
.home-rehber { width: 100%; margin-top: 48px; text-align: left; }
.hr-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.hr-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.02em; margin: 6px 0 0; }
.hr-all { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--accent2, #003F9A); white-space: nowrap; text-decoration: none; }
.hr-all:hover { text-decoration: underline; }
.hr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
@media (max-width: 880px) { .hr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hr-grid { grid-template-columns: 1fr; } }
.hr-card {
  display: flex; flex-direction: column; padding: 18px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--surface);
  text-decoration: none; transition: border-color .15s, box-shadow .15s, transform .1s;
}
.hr-card:hover { border-color: var(--accent2, #003F9A); box-shadow: 0 12px 28px -16px rgba(0,63,154,.4); transform: translateY(-2px); }
.hr-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--accent, #E30A17); text-transform: uppercase; letter-spacing: 0.07em; }
.hr-card-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); margin: 10px 0 0; line-height: 1.28; }
.hr-desc { font-size: 13.5px; color: var(--ink-2); margin: 8px 0 0; line-height: 1.5; flex: 1; }
.hr-more { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--accent2, #003F9A); margin-top: 14px; }

/* ===== Tip panelinde dönen ürün önizlemesi ===== */
.rotprod { margin: 0; }
.rotprod-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 10px;
}
.rotprod-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--accent, #E30A17); text-transform: uppercase; letter-spacing: .04em;
}
.rotprod-live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent, #E30A17);
  animation: rpPulse 1.6s ease-in-out infinite;
}
@keyframes rpPulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent); } 50% { opacity: .55; box-shadow: 0 0 0 4px transparent; } }

.rotprod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  transition: opacity .28s ease;
}
.rotprod-grid.fade { opacity: 0; }
@media (max-width: 560px) { .rotprod-grid { grid-template-columns: repeat(2, 1fr); } }

.rotprod-chip {
  display: flex; align-items: center; gap: 8px; min-width: 0;
  padding: 8px 10px; border-radius: 10px;
  border: 1px solid var(--line-2); background: var(--surface);
  color: var(--accent2, #003F9A); text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .1s;
}
.rotprod-chip:hover { border-color: currentColor; box-shadow: 0 3px 10px rgba(15,30,60,.1); transform: translateY(-1px); }
.rp-ic { flex-shrink: 0; opacity: .8; display: flex; }
.rp-txt { display: flex; flex-direction: column; min-width: 0; }
.rp-txt b { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink); line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rp-txt em { font-family: var(--font-mono); font-size: 11px; font-style: normal; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* ===== Ölçü ile Ara — fotoğraf + ölçü çizimi ===== */
.dimphoto-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; display: flex; flex-direction: column; flex: 1; overflow: hidden;
}
.dph-hint {
  margin-left: auto; font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .02em; color: var(--ink-3); text-transform: none;
}
.dimphoto-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

/* kompakt diyagram — üstte, küçük */
.dph-grid { display: flex; flex-direction: column; gap: 12px; }
.dph-figure {
  margin: 0; width: 100%; height: 170px; position: relative;
  border-radius: 12px; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.dph-pic {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.dph-pic.on { opacity: 1; }
/* görsel yüklenmezse çizili rulman */
.dph-figure.noimg img { display: none; }
.dph-figure.noimg::after {
  content: ""; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      #eef1f4 0 30%, #cfd7de 30% 36%, #aab4bd 36% 44%,
      #c6ced5 44% 60%, #9aa4ad 60% 72%, #818b94 72% 80%, transparent 80%);
  box-shadow: inset 0 2px 10px rgba(15,30,60,.12);
}

/* form */
.dph-form { display: flex; flex-direction: column; gap: 8px; }
.dph-lead { margin: 0 0 2px; font-size: 12.5px; color: var(--ink-3); line-height: 1.45; }

.dph-row {
  display: flex; align-items: center; gap: 11px;
  padding: 7px 11px; border-radius: 11px;
  border: 1.5px solid var(--line-2); background: var(--surface);
  cursor: text; transition: border-color .15s, box-shadow .15s;
}
.dph-row:focus-within { box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 16%, transparent); }
.dph-row.blue { color: var(--accent2, #003F9A); }
.dph-row.red { color: var(--accent, #E30A17); }
.dph-row:focus-within, .dph-row.filled, .dph-row.active { border-color: currentColor; }
.dph-row.active { box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 14%, transparent); }

.dph-badge {
  width: 27px; height: 27px; flex-shrink: 0; border-radius: 7px;
  background: currentColor; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; font-style: italic;
}
.dph-name { flex: 1; font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.dph-inwrap { display: flex; align-items: baseline; gap: 4px; }
.dph-inwrap input {
  width: 62px; border: none; outline: none; background: transparent;
  font-family: var(--font-mono); font-size: 17px; font-weight: 600;
  text-align: right; -moz-appearance: textfield;
  background-image: linear-gradient(to bottom, #003F9A 0 50%, #E30A17 50% 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  caret-color: #003F9A;
}
.dph-inwrap input::-webkit-outer-spin-button, .dph-inwrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.dph-inwrap input::placeholder { -webkit-text-fill-color: var(--ink-3); color: var(--ink-3); font-weight: 500; font-size: 14px; }
.dph-inwrap em { font-size: 12px; color: var(--ink-3); font-style: normal; }

/* ===== aksiyon ===== */
.dph-actions { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.btn-dph {
  flex: 1; height: 44px; border: none; border-radius: 11px;
  background: var(--accent2, #003F9A); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s; cursor: pointer;
}
.btn-dph:hover { background: #002d73; }
.btn-dph-clear { background: none; border: none; font-size: 13px; color: var(--ink-3); text-decoration: underline; cursor: pointer; }
.btn-dph-clear:hover { color: var(--accent); }
.home-meta { margin-top: 26px; display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-3); flex-wrap: wrap; justify-content: center; }
.home-meta b { font-family: var(--font-display); color: var(--ink); font-weight: 700; }
.home-meta .dotsep { color: var(--line-2); }
.home-foot { padding: 22px 0 28px; font-size: 13px; color: var(--ink-3); }

/* ============ Sonuç sayfası üst çubuğu ============ */
.rbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 248, 245, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.csearch { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.csearch .logo { flex-shrink: 0; }
.csearch-fields { flex: 1; min-width: 280px; display: flex; gap: 10px; position: relative; }
.csearch-field { flex: 1; position: relative; display: flex; align-items: center; }
.csearch-field .lead { position: absolute; left: 15px; color: var(--ink-3); pointer-events: none; }
.csearch-field input {
  width: 100%; height: 48px; padding: 0 42px 0 44px;
  font-family: var(--font-mono); font-size: 16px; font-weight: 500;
  border: 1.5px solid var(--line-2); border-radius: 11px; background: var(--surface);
  outline: none; transition: border-color .15s;
}
.csearch-field input::placeholder { color: var(--ink-3); font-weight: 400; font-family: var(--font-body); }
.csearch-field input:focus { border-color: var(--accent); }
.csearch-x { position: absolute; right: 12px; width: 26px; height: 26px; border-radius: 7px; border: none; background: var(--surface-2); color: var(--ink-2); display: flex; align-items: center; justify-content: center; }
.csearch-x:hover { background: var(--line); color: var(--ink); }
.csearch-dimbtn {
  height: 48px; padding: 0 16px; border: 1.5px solid var(--line-2); border-radius: 11px;
  background: var(--surface); color: var(--ink-2); font-family: var(--font-display); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; transition: all .15s;
}
.csearch-dimbtn:hover { border-color: var(--ink-3); color: var(--ink); }
.csearch-dimbtn.on { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); }
.csearch-go { height: 48px; padding: 0 24px; font-size: 15px; flex-shrink: 0; }
.csearch .suggest { top: 54px; }
.csearch-dims { display: flex; align-items: flex-end; gap: 12px; margin-top: 12px; padding-left: 4px; flex-wrap: wrap; }
.cdim { display: flex; flex-direction: column; gap: 5px; }
.cdim label { font-size: 11.5px; font-weight: 600; color: var(--ink-2); }
.cdim { position: relative; }
.cdim input { width: 110px; height: 42px; padding: 0 34px 0 13px; font-family: var(--font-mono); font-size: 15px; font-weight: 500; border: 1.5px solid var(--line-2); border-radius: 10px; background: var(--surface); outline: none; }
.cdim input:focus { border-color: var(--accent); }
.cdim-u { position: absolute; right: 11px; bottom: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.cdim-clear { align-self: center; margin-bottom: 2px; background: none; border: none; color: var(--accent); font-weight: 600; font-size: 13px; padding: 6px; }
.cdim-clear:hover { text-decoration: underline; }

@media (max-width: 880px) {
  .csearch-go { display: none; }
}

/* ============ Ürün detay sayfası ============ */
.detail { padding: 26px 0 84px; }
.detail-crumb { display: flex; gap: 9px; align-items: center; font-size: 13px; color: var(--ink-3); margin-bottom: 24px; flex-wrap: wrap; }
.detail-crumb a { color: var(--ink-2); cursor: pointer; }
.detail-crumb a:hover { color: var(--accent); }
.detail-crumb .sep { color: var(--line-2); }
.detail-crumb .cur { font-family: var(--font-mono); font-weight: 600; color: var(--ink); }

.detail-hero { display: grid; grid-template-columns: 420px 1fr 240px; gap: 30px; align-items: start; }
.detail-viz { display: flex; flex-direction: column; gap: 16px; }
.dviz-box { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.dviz-img { width: 100%; height: auto; display: block; border-radius: 10px; background: var(--surface-2); object-fit: contain; aspect-ratio: 4 / 3; }
.dviz-fallback { display: flex; align-items: center; justify-content: center; aspect-ratio: 4 / 3; background: var(--surface-2); border-radius: 10px; color: var(--ink-2); position: relative; overflow: hidden; }
.dviz-fallback::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, transparent 0 8px, rgba(28,25,23,.02) 8px 9px); }
.dviz-fallback > * { position: relative; }
.dviz-fallback-cross { color: var(--ink-3); }
.dviz-box figcaption { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); text-align: center; margin-top: 11px; }

/* Ürün resmi: kutusuz ve büyük */
.detail-photo.dviz-box { background: none; border: none; padding: 0; }
.detail-photo .dviz-img { background: none; border-radius: 0; aspect-ratio: 1 / 1; }
.detail-photo .dviz-fallback { background: none; aspect-ratio: 1 / 1; }
.detail-photo .dviz-fallback::before { display: none; }
.detail-photo figcaption { text-align: left; margin-top: 14px; }

/* Teknik çizim: kutusuz */
.detail-tech.dviz-box { background: none; border: none; padding: 0; }
.detail-tech .dviz-img { background: none; border-radius: 0; }
.detail-tech .dviz-fallback { background: none; }
.detail-tech .dviz-fallback::before { display: none; }
.detail-tech figcaption { text-align: left; margin-top: 14px; }
/* Varsayılan teknik çizim (kullanıcı kendi çizimini koymadıysa) */
.dviz-default-tech { aspect-ratio: auto; max-height: 360px; width: auto; max-width: 100%; margin: 0 auto; object-fit: contain; }

.detail-typechip { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.detail-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; margin: 10px 0 0; line-height: 1.04; }
.detail-dims { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.detail-dims .dim-pill { font-size: 13.5px; padding: 6px 12px; }
.detail-link { display: flex; align-items: center; gap: 12px; margin-top: 24px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 11px; padding: 11px 13px; flex-wrap: wrap; }
.dl-label { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.dl-slug { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 7px; padding: 5px 11px; }
.dl-copy { margin-left: auto; display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--accent); background: none; border: none; padding: 6px; }
.dl-copy:hover { text-decoration: underline; }
.detail-seal { margin-top: 26px; }
.detail-cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
/* Teklif butonları — WhatsApp (yeşil) + E-posta (lacivert) */
.btn-wa, .btn-mail {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; font-family: var(--font-display);
  font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer;
  border: none; transition: background .15s, box-shadow .15s, transform .1s;
}
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; box-shadow: 0 10px 22px -12px rgba(37,211,102,.6); transform: translateY(-1px); text-decoration: none; }
.btn-mail { background: var(--accent2, #003F9A); color: #fff; }
.btn-mail:hover { background: var(--accent2-ink, #002d73); box-shadow: 0 10px 22px -12px rgba(0,63,154,.55); transform: translateY(-1px); text-decoration: none; }
.detail-cta .btn-wa, .detail-cta .btn-mail { flex: 1; min-width: 200px; }
.drawer-foot .btn-wa, .drawer-foot .btn-mail { padding: 12px 16px; font-size: 14px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 44px; }
.detail-about { margin-top: 44px; max-width: 78ch; }
.detail-about .sec-title { margin-bottom: 14px; }
.about-p { font-size: 15.5px; line-height: 1.68; color: var(--ink-2); margin: 0 0 14px; text-wrap: pretty; }
.about-p:last-child { margin-bottom: 0; }
.detail-related { margin-top: 48px; }

@media (max-width: 900px) {
  .detail-hero { grid-template-columns: 1fr; gap: 22px; }
  .detail-photo { max-width: 460px; }
  .detail-tech { max-width: 340px; }
  .detail-main { order: -1; }
  .detail-grid { grid-template-columns: 1fr; }
}
