/* ==========================================================================
   Sancak Poligon — stylesheet
   Kontrollü güç / modern range club: koyu antrasit zemin, kırık beyaz metin,
   kontrollü kırmızı vurgu, sınırlı bronz yardımcı ton.
   ========================================================================== */

:root {
  --bg: #101115;
  --bg-alt: #17191f;
  --surface: #1d2027;
  --surface-2: #262a33;
  --border: rgba(243, 241, 236, 0.12);
  --border-strong: rgba(243, 241, 236, 0.22);
  --text: #f4f2ec;
  --text-muted: #aeb2bb;
  --text-faint: #8b8f99;
  --red: #c4272b;
  --red-strong: #d92e33;
  --red-dim: #5c1417;
  --bronze: #b58a54;
  --on-light: #17191f;

  --font-display: "Oswald", "Arial Narrow", "Segoe UI Semibold", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-1: 0 4px 18px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 14px 40px rgba(0, 0, 0, 0.45);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  /* Safety net only — 390/768/1280px are verified to have zero real horizontal
     overflow (see README). This does not fix a known bug; it exists so a future
     regression fails silently instead of breaking layout, and should be
     re-tested whenever a new full-width section is added. */
  overflow-x: hidden;
  width: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

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

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Base ---------- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--text);
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-size: clamp(1.55rem, 1.15rem + 1.8vw, 2.6rem);
}

h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
}

p {
  color: var(--text-muted);
}

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

@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }
}

section {
  padding-block: clamp(3rem, 2.4rem + 2.5vw, 6rem);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 1.6rem + 1.6vw, 3.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-head--center .eyebrow::before {
  display: none;
}

.section-lede {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  max-width: 58ch;
}

.section-head--center .section-lede {
  margin-inline: auto;
}

.bg-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  padding: 0.8em 1.4em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9em 1.5em;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  border-color: var(--red);
}

.btn-primary:hover {
  --btn-bg: var(--red-strong);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--bronze);
  background: rgba(181, 138, 84, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding-inline: 0.2em;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

/* Backdrop blur lives on a pseudo-layer (not a real ancestor) so that a
   position:fixed descendant (.main-nav) keeps the viewport as its containing
   block instead of this header's own small box — backdrop-filter on a real
   ancestor would otherwise become that containing block. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 17, 21, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  color: var(--red);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.is-active {
  color: var(--text);
  border-color: var(--bronze);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .main-nav {
    position: fixed;
    z-index: 95;
    inset: var(--header-h) 0 0 0;
    background: var(--bg-alt);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem 2rem;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.25s ease, visibility 0s linear 0.25s;
    border-top: 1px solid var(--border);
  }

  .main-nav.is-open {
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.25s ease, visibility 0s linear 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-top: 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-phone svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--bronze);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(2.5rem, 2rem + 3vw, 5rem);
  color: #fff;
  isolation: isolate;
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    padding-block: 2.25rem 2rem;
  }

  .hero-media img {
    object-position: center 38%;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(10, 11, 14, 0.55) 0%,
      rgba(10, 11, 14, 0.55) 35%,
      rgba(10, 11, 14, 0.92) 100%
    ),
    linear-gradient(90deg, rgba(10, 11, 14, 0.75) 0%, rgba(10, 11, 14, 0.15) 62%);
}

.hero-inner {
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 1.9rem + 3.2vw, 4.4rem);
  color: #fff;
  margin-bottom: 1.1rem;
}

.hero-lede {
  color: rgba(244, 242, 236, 0.88);
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  max-width: 52ch;
  margin-bottom: 1.75rem;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
  min-width: 0;
}

.hero-actions .btn {
  min-width: 0;
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 242, 236, 0.22);
  min-width: 0;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-size: 0.92rem;
  color: rgba(244, 242, 236, 0.85);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-meta-item svg {
  width: 1.25em;
  height: 1.25em;
  color: var(--red-strong);
  flex-shrink: 0;
}

.hero-meta-item strong {
  color: #fff;
  font-weight: 600;
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
}

.trust-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(196, 39, 43, 0.12);
  color: var(--red-strong);
  margin-bottom: 1.1rem;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.trust-card p {
  font-size: 0.94rem;
}

/* ==========================================================================
   Google Yorumları
   ========================================================================== */
.review-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.4rem + 1.6vw, 3rem);
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 760px) {
  .review-summary {
    grid-template-columns: auto 1fr;
    gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  }
}

.review-summary-score {
  text-align: center;
}

@media (min-width: 760px) {
  .review-summary-score {
    text-align: left;
    padding-right: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    border-right: 1px solid var(--border);
  }
}

.review-score-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 2.4rem + 2vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.star-rating {
  position: relative;
  display: inline-block;
  margin: 0.65rem 0;
  color: var(--border-strong);
}

.star-rating-track,
.star-rating-fill {
  display: flex;
  gap: 0.15rem;
  white-space: nowrap;
}

.star-rating-track svg,
.star-rating-fill svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.star-rating-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--bronze);
}

.review-summary-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-summary-body p {
  max-width: 60ch;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Instagram
   ========================================================================== */
.instagram-cta {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2rem, 1.6rem + 1.6vw, 3.25rem);
}

.instagram-slider {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 700px) {
  .instagram-slider {
    max-width: 820px;
    padding: 0 44px;
  }
}

@media (min-width: 1100px) {
  .instagram-slider {
    max-width: var(--container);
  }
}

.instagram-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.5s ease, height 0.3s ease;
  touch-action: pan-y;
}

.swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 1.25rem;
}

@media (min-width: 700px) {
  .swiper-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1100px) {
  .swiper-slide {
    flex: 0 0 33.3333%;
  }
}

.swiper-slide .instagram-media {
  width: 100% !important;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(16, 17, 21, 0.55);
  color: var(--text);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  opacity: 1;
  background: rgba(16, 17, 21, 0.85);
  border-color: var(--bronze);
  color: var(--bronze);
}

.slider-arrow--prev {
  left: 10px;
}

.slider-arrow--next {
  right: 10px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 0 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.slider-playpause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.slider-playpause svg {
  width: 15px;
  height: 15px;
}

.slider-playpause .icon-play {
  display: none;
}

.slider-playpause[aria-pressed="true"] .icon-pause {
  display: none;
}

.slider-playpause[aria-pressed="true"] .icon-play {
  display: block;
}

.slider-playpause:hover,
.slider-playpause:focus-visible {
  border-color: var(--bronze);
  color: var(--bronze);
  background: rgba(181, 138, 84, 0.08);
}

.instagram-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 320px;
  padding: 2rem 1.5rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #e6e6e6;
  text-decoration: none;
  text-align: center;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.instagram-fallback-icon {
  width: 40px;
  height: 40px;
  color: #e6e6e6;
  transition: color 0.2s ease;
}

.instagram-fallback:hover,
.instagram-fallback:focus-visible {
  border-color: var(--bronze);
  color: var(--bronze);
}

.instagram-fallback:hover .instagram-fallback-icon,
.instagram-fallback:focus-visible .instagram-fallback-icon {
  color: var(--bronze);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dot:hover {
  background: var(--bronze);
}

.slider-dot.is-active {
  background: var(--bronze);
  transform: scale(1.3);
}

@media (max-width: 539px) {
  .instagram-slider {
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .swiper-slide {
    padding: 1rem 0.75rem;
  }
}

/* ==========================================================================
   Process (İlk kez mi geliyorsunuz)
   ========================================================================== */
.process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: step;
}

.process-card {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bronze);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

@supports (-webkit-text-stroke: 1px black) {
  .process-num {
    color: transparent;
    opacity: 1;
    -webkit-text-stroke: 1.5px var(--bronze);
  }
}

.process-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.92rem;
}

.process-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--bronze);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.process-note svg {
  width: 1.3em;
  height: 1.3em;
  color: var(--bronze);
  flex-shrink: 0;
  margin-top: 0.15em;
}

.process-note a {
  color: var(--bronze);
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   Weapons
   ========================================================================== */
/* Marka + kalibre filtre grupları: her grup kendi etiketiyle bir satır. */
.filter-groups {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.25rem;
}

.filter-group-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
  list-style: none;
  padding: 0;
}

/* Grup içindeki filtre çubuğunun alt boşluğunu .filter-groups yönetir. */
.filter-group .filter-bar {
  margin-bottom: 0;
}

.filter-btn {
  padding: 0.55em 1.2em;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-btn:hover {
  border-color: var(--bronze);
  color: var(--text);
}

.filter-btn[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Kalibre grubu markanın ikincil kırılımıdır: marka filtresini bastırmaması
   için yalnız bu gruba özgü daha küçük tipografi, daha kompakt padding ve
   kırmızı dolgu yerine düşük yoğunluklu bir vurgu kullanır. Dokunma hedefi
   WCAG 2.2 AA (24px) sınırının üzerinde tutulur. */
#weapon-caliber-filters-label {
  font-size: 0.68rem;
  margin-bottom: 0.4rem;
  color: var(--text-faint);
}

#weapon-caliber-filters {
  gap: 0.4rem;
}

#weapon-caliber-filters .filter-btn {
  min-height: 34px;
  padding: 0.35em 0.85em;
  border-color: var(--border);
  font-size: 0.78rem;
  font-weight: 500;
}

#weapon-caliber-filters .filter-btn:hover {
  border-color: var(--bronze);
  color: var(--text);
}

#weapon-caliber-filters .filter-btn[aria-pressed="true"] {
  background: var(--surface-2);
  border-color: var(--bronze);
  color: var(--text);
}

/* Markada bulunmayan kalibre seçeneği tamamen kaldırılır (satır boşluğu da
   kalmasın diye flex akışından çıkar). */
#weapon-caliber-filters li[hidden] {
  display: none;
}

.weapon-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.weapon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.weapon-card[hidden] {
  display: none;
}

.weapon-media {
  background: #f4f2ec;
  padding: 1.25rem;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weapon-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.weapon-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.weapon-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.weapon-body h3 {
  font-size: 1.1rem;
  margin: 0;
}

.weapon-body p {
  font-size: 0.88rem;
  flex: 1;
}

.weapon-chip {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.3em 0.75em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Masaüstü "Devamını Gör" düğmesi: yalnız ≥900px'de görünür, mobil/tablet
   davranışına dokunmaz. Kapsayıcı JS tarafından hidden ile yönetilir. */
.weapon-more {
  display: none;
  margin-top: 2rem;
}

.weapon-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
}

.weapon-more-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease;
}

.weapon-more-btn:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.weapon-more-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .weapon-more-btn,
  .weapon-more-btn svg {
    transition: none;
  }
}

@media (min-width: 900px) {
  .weapon-more:not([hidden]) {
    display: flex;
    justify-content: center;
  }

  /* Yalnız masaüstünde uygulanır; mobil carousel'de hiçbir kartı gizlemez. */
  .weapon-card.is-desktop-collapsed {
    display: none;
  }
}

.weapon-note {
  margin-top: 2.25rem;
  font-size: 0.88rem;
  color: var(--text-faint);
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  border: 0;
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.gallery-item .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.72rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
  text-align: left;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  width: 100%;
  background: var(--bg-alt);
  color: var(--text);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(8, 9, 11, 0.86);
}

.lightbox-inner {
  position: relative;
}

.lightbox-figure {
  margin: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 72vh;
}

.lightbox-figure img {
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.lightbox-figcaption {
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(16, 17, 21, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

.lightbox-close {
  top: 12px;
  right: 12px;
  z-index: 2;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

/* ==========================================================================
   Weapon detail dialog
   ========================================================================== */
.weapon-detail-btn {
  align-self: flex-start;
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.6em 1em;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.weapon-detail-btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.weapon-detail-btn:hover,
.weapon-detail-btn:focus-visible {
  border-color: var(--bronze);
  color: var(--bronze);
}

.weapon-detail-btn:hover svg,
.weapon-detail-btn:focus-visible svg {
  transform: translateX(2px);
}

/* Prevents background scroll while the weapon dialog is open (dialog::backdrop
   alone does not stop touch/wheel scroll from reaching the page on all browsers). */
html.weapon-dialog-open,
html.weapon-dialog-open body {
  overflow: hidden;
}

.weapon-dialog {
  border: 0;
  padding: 0;
  width: 100%;
  max-width: min(94vw, 980px);
  max-height: min(90vh, 860px);
  background: var(--bg-alt);
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.weapon-dialog::backdrop {
  background: rgba(8, 9, 11, 0.86);
}

.weapon-dialog-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  max-height: min(90vh, 860px);
  overflow-y: auto;
}

@media (min-width: 760px) {
  .weapon-dialog-inner {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
}

.weapon-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 17, 21, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.weapon-dialog-close svg {
  width: 18px;
  height: 18px;
}

.weapon-dialog-close:hover,
.weapon-dialog-close:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.weapon-dialog-media {
  display: flex;
  flex-direction: column;
  background: #f4f2ec;
  padding: 1.25rem;
  gap: 0.85rem;
}

@media (min-width: 760px) {
  .weapon-dialog-media {
    overflow-y: auto;
    max-height: min(90vh, 860px);
  }
}

.weapon-dialog-figure {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f2ec;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.weapon-dialog-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.weapon-dialog-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.weapon-dialog-thumbs:empty {
  display: none;
}

.weapon-thumb-btn {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.weapon-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weapon-thumb-btn:hover {
  border-color: var(--border-strong);
}

.weapon-thumb-btn[aria-current="true"] {
  border-color: var(--red);
}

.weapon-dialog-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

@media (min-width: 760px) {
  .weapon-dialog-body {
    overflow-y: auto;
    max-height: min(90vh, 860px);
    padding: 1.75rem 1.85rem 2rem;
  }
}

.weapon-dialog-brand {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.weapon-dialog-body h3 {
  font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.65rem);
  margin: 0;
}

.weapon-dialog-body .weapon-chip {
  align-self: flex-start;
}

.weapon-dialog-desc {
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

.weapon-dialog-specs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}

.weapon-dialog-specs:empty {
  display: none;
  border-top: 0;
}

.weapon-dialog-specs div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.weapon-dialog-specs dt {
  color: var(--text-faint);
  font-weight: 500;
}

.weapon-dialog-specs dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.weapon-dialog-note {
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--bronze);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.weapon-dialog-cta {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.weapon-dialog-disclaimer {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ==========================================================================
   Safety / education
   ========================================================================== */
.safety-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .safety-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.safety-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.85rem;
}

.safety-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.safety-photos .photo-tall {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.safety-photos .photo-wide {
  aspect-ratio: 4 / 3;
}

.safety-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.safety-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.safety-list svg {
  width: 1.4em;
  height: 1.4em;
  color: var(--red-strong);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.safety-list strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1rem;
  text-transform: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--bronze);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.3rem 1.25rem;
  font-size: 0.94rem;
}

.faq-answer a {
  color: var(--bronze);
  font-weight: 600;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item .icon-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(196, 39, 43, 0.12);
  color: var(--red-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .icon-wrap svg {
  width: 22px;
  height: 22px;
}

.contact-info-item h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
}

.contact-info-item a,
.contact-info-item p {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
}

.contact-info-item a:hover {
  color: var(--bronze);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}

.social-link {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  color: var(--bronze);
  border-color: var(--bronze);
  background: rgba(181, 138, 84, 0.1);
}

.contact-aside {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-aside h3 {
  font-size: 1.05rem;
}

.contact-aside p {
  font-size: 0.92rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 400;
}

.hours-table th {
  color: var(--text);
  font-weight: 600;
}

/* ---------- Contact map ---------- */
.contact-map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-map-card h3 {
  font-size: 1.05rem;
}

.contact-map-embed {
  flex: 1;
  min-height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

@media (min-width: 860px) {
  .contact-map-embed {
    min-height: 460px;
  }
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contact form ---------- */
.contact-form-card {
  container-type: inline-size;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
}

.contact-form-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-form-intro {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@container (min-width: 420px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.form-optional {
  font-weight: 400;
  color: var(--text-faint);
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 44px;
  padding: 0.75em 1em;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aeb2bb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  background-size: 18px;
  padding-right: 2.6em;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 2px;
  border-color: var(--bronze);
}

.contact-form .btn-block {
  margin-top: 0.25rem;
}

.contact-form-note {
  margin-top: 1.1rem;
  font-size: 0.83rem;
  color: var(--text-faint);
}

.contact-form-status {
  margin-top: 0.6rem;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--bronze);
}

/* Bal küpü alanı: DOM'da kalır, ziyaretçiye görünmez ve yer kaplamaz. */
.sp-honeypot {
  display: none !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem) 6.5rem;
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.85fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  }
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 40ch;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--bronze);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.footer-contact a {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: var(--bronze);
}

.social-links--footer {
  margin-top: 1.1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-note {
  max-width: 58ch;
}

/* ==========================================================================
   Mobile sticky action bar
   ========================================================================== */
.mobile-actionbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0);
  overflow: hidden;
}

.mobile-actionbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  min-width: 0;
  padding: 0.85rem 0.3rem;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.mobile-actionbar a:first-child {
  background: var(--red);
  color: #fff;
}

.mobile-actionbar svg {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

@media (min-width: 400px) {
  .mobile-actionbar a {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    gap: 0.5em;
    padding: 0.95rem 0.5rem;
  }
}

@media (min-width: 900px) {
  .mobile-actionbar {
    display: none;
  }
}

/* ==========================================================================
   Misc decorative
   ========================================================================== */
.target-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
}

.section-divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

/* ==========================================================================
   Blog / Bilgi Merkezi kartları
   ========================================================================== */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.blog-card-media:hover img,
.blog-card-media:focus-visible img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.blog-tag {
  align-self: flex-start;
  padding: 0.3em 0.75em;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: rgba(181, 138, 84, 0.14);
  color: var(--bronze);
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin: 0;
}

.blog-card-body h3 a {
  text-decoration: none;
  color: var(--text);
}

.blog-card-body h3 a:hover,
.blog-card-body h3 a:focus-visible {
  color: var(--bronze);
}

.blog-card-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8rem;
  color: var(--text-faint);
}

.blog-read-time svg {
  width: 16px;
  height: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red-strong);
  text-decoration: none;
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
}

.blog-card-link:hover,
.blog-card-link:focus-visible {
  text-decoration: underline;
}

.blog-more {
  margin-top: 2rem;
  text-align: center;
}

/* ==========================================================================
   Blog makale sayfaları (blog/index.html + blog/*.html ortak sınıflar)
   ========================================================================== */
.article-hero {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 2rem;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.article-breadcrumb a {
  color: var(--text-faint);
  text-decoration: none;
}

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
  color: var(--bronze);
}

.article-breadcrumb [aria-current="page"] {
  color: var(--text-muted);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em 1.2em;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.article-meta strong {
  color: var(--text-muted);
  font-weight: 600;
}

.article-cover {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  max-width: 74ch;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.article-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--bronze);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.article-summary strong {
  display: block;
  margin-bottom: 0.35em;
  color: var(--text);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

.article-toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  margin-bottom: 2.25rem;
}

.article-toc p {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-bottom: 0.6em;
}

.article-toc ol {
  list-style: decimal;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}

.article-toc a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--bronze);
}

.article-body h2 {
  font-size: 1.4rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.article-body h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-body p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  color: var(--text-muted);
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body a {
  color: var(--bronze);
}

.article-note {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-note strong {
  color: var(--text);
}

.article-cta {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}

.article-cta h2 {
  font-size: 1.15rem;
  margin: 0;
}

.article-related {
  max-width: 74ch;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.article-related h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.article-related-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.article-related-list a {
  display: block;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.article-related-list a:hover,
.article-related-list a:focus-visible {
  border-color: var(--bronze);
  color: var(--text);
}

.blog-index-hero {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 1rem;
}

/* ==========================================================================
   Mobil envanter carousel (≤699px)
   ========================================================================== */
.weapon-carousel-controls {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.weapon-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
}

.weapon-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.weapon-carousel-btn:hover:not(:disabled) {
  border-color: var(--bronze);
  color: var(--bronze);
}

.weapon-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.weapon-carousel-status {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

@media (max-width: 699px) {
  .weapon-carousel-controls {
    display: flex;
  }

  /* Filtre düğmeleri dar ekranda sarmalı, yatay taşma yapmamalı. */
  .filter-groups {
    gap: 0.9rem;
  }

  .filter-bar {
    gap: 0.45rem;
  }

  .filter-btn {
    max-width: 100%;
    padding: 0.5em 0.95em;
    font-size: 0.82rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .weapon-grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin: 0 -20px;
    padding: 0.25rem 20px 0.75rem;
    scrollbar-width: thin;
  }

  .weapon-grid::-webkit-scrollbar {
    height: 6px;
  }

  .weapon-grid::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 999px;
  }

  .weapon-card {
    flex: 0 0 90%;
    scroll-snap-align: start;
  }

  .weapon-card[hidden] {
    display: none;
  }
}

@media (max-width: 699px) and (prefers-reduced-motion: reduce) {
  .weapon-grid {
    scroll-behavior: auto;
  }
}
