@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

@import "./tokens.css";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
}

/* Mobil: üst şerit yok — sabit header daha kısa (mega zaten kapalı) */
@media (max-width: 767px) {
  :root {
    --nav-offset: 72px;
  }
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ——— Layout ——— */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/*
 * Header fixed: içerik viewport üstünden başlar; boşluk hero / page-hero içinde tek kez.
 */
.main-content {
  padding-top: 0;
}

/* Tüm sayfalarda üstte sabit; içerik --nav-offset ile aşağıdan başlar (hero / page-hero) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* ——— Header top strip ——— */
.header-top {
  display: none;
  background: var(--header-top);
  color: #9ca3af;
  font-size: 12px;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .header-top {
    display: block;
  }
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.header-top a:hover {
  color: #fff;
}

.header-top__tagline {
  color: #6b7280;
  font-weight: 500;
}

/* ——— Main nav ——— */
.site-nav {
  transition: background 0.4s, box-shadow 0.4s;
  background: #fff;
}

/*
 * backdrop-filter burada kullanılmıyor: fixed .mega menü için yeni containing block
 * yaratıp kaydırınca mega ile header arasında boşluk / hedef kaçırma oluşturabiliyor.
 */
.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.site-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Masaüstü: menü satırı tam yükseklik — açılır/mega menüye inerken hover düşmesin */
@media (min-width: 1024px) {
  .site-nav__row {
    align-items: stretch;
  }

  .site-nav__row > .logo {
    align-self: center;
  }

  .site-nav__row > .nav-actions {
    align-self: center;
  }

  .site-nav__row > .nav-toggle {
    align-self: center;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo--image {
  flex-shrink: 0;
  line-height: 0;
}

.logo__img {
  display: block;
  height: clamp(2rem, 4vw, 2.65rem);
  width: auto;
  max-width: min(180px, 42vw);
}

.logo--footer.logo--image .logo__img {
  height: clamp(1.85rem, 3.5vw, 2.35rem);
  max-width: 160px;
}

.logo__main {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent-red);
}

.logo__main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent-red);
}

.logo__sub {
  display: flex;
  flex-direction: column;
  margin-left: 0.25rem;
}

.logo__sub span:first-child {
  font-size: 9px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.2em;
  line-height: 1;
}

.logo__sub span:last-child {
  font-size: 7px;
  color: #9ca3af;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: stretch;
  }
}

.nav-item-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-item-wrap {
    align-self: stretch;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-item-wrap:hover .nav-link,
.nav-link.is-active {
  color: var(--accent-red);
}

.nav-chevron {
  transition: transform 0.2s;
}

.nav-item-wrap:hover .nav-chevron,
.nav-item-wrap.is-open .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown simple */
.dropdown-simple {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 0 0 0.75rem 0.75rem;
  border-top: 2px solid var(--accent-red);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  z-index: 50;
  padding: 0.25rem 0;
}

.nav-item-wrap:hover .dropdown-simple,
.nav-item-wrap.is-open .dropdown-simple {
  display: block;
}

.dropdown-simple a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 13px;
  color: #4b5563;
  transition: background 0.2s, color 0.2s;
}

.dropdown-simple a:hover {
  color: var(--accent-red);
  background: rgba(254, 242, 242, 0.6);
}

/* Mega menu — tam genişlik; üst şerit + nav yüksekliği (masaüstü) */
.mega {
  display: none;
  position: fixed;
  top: var(--nav-offset);
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - var(--nav-offset));
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--accent-red);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  z-index: 90;
  /* Üst çizgi ile nav altı arasında 1px örtüşme — fare boşluğa düşmesin */
  margin-top: -1px;
  padding-top: 1px;
}

@media (max-width: 1023px) {
  .mega {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .nav-item-wrap:hover .mega,
  .nav-item-wrap.is-open .mega {
    display: block;
  }
}

.mega__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 1024px) {
  .mega__inner {
    grid-template-columns: 8fr 4fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem;
  }
}

.mega__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0 0 1.5rem;
}

.mega__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1.5rem;
}

@media (min-width: 768px) {
  .mega__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mega-series-link {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.1rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mega-series-link:hover {
  background: rgba(254, 242, 242, 0.6);
}

.mega-series-link img {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
}

.mega-series-link > span:first-of-type {
  grid-column: 2;
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  align-self: end;
}

.mega-series-link:hover > span:first-of-type {
  color: var(--accent-red);
}

.mega-series-link .count {
  grid-column: 2;
  font-size: 11px;
  color: #9ca3af;
  align-self: start;
}

.mega__side {
  border-left: 1px solid #f3f4f6;
  padding-left: 2rem;
}

.mega__features a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 13px;
  color: #4b5563;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}

.mega__features a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
}

.mega__features a:hover {
  color: var(--accent-red);
  background: rgba(254, 242, 242, 0.6);
}

.mega__features a:hover::before {
  background: var(--accent-red);
}

.mega__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.65rem 1.25rem;
  background: var(--accent-red);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.2s, gap 0.2s;
}

.mega__cta:hover {
  background: var(--accent-red-hover);
  gap: 0.75rem;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-compare {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #6b7280;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-compare.yck-compare-link--active {
  border-color: rgba(220, 38, 38, 0.35);
  color: var(--compare-active);
  background: rgba(239, 68, 68, 0.06);
}

.nav-compare:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.btn-teklif {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--accent-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-teklif:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  background: #fff;
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 0.5rem;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #4b5563;
  transition: background 0.2s, color 0.2s;
}

.lang-switcher a:hover {
  color: #fff;
  background: var(--accent-red);
}

.nav-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #374151;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  border-top: 1px solid #f3f4f6;
  padding: 1rem 1.5rem 1.5rem;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1023px) {
  .nav-mobile.is-open {
    display: block;
  }
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #f9fafb;
}

.nav-mobile a:hover {
  color: var(--accent-red);
}

.nav-mobile__compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 600;
}

.nav-mobile__group {
  border-bottom: 1px solid #f9fafb;
}

.nav-mobile__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  list-style: none;
}

.nav-mobile__summary::-webkit-details-marker {
  display: none;
}

.nav-mobile__summary::after {
  content: "▾";
  font-size: 0.75rem;
  color: #9ca3af;
  transition: transform 0.2s;
}

.nav-mobile__group[open] .nav-mobile__summary::after {
  transform: rotate(180deg);
}

.nav-mobile__group[open] .nav-mobile__summary {
  color: var(--accent-red);
}

.nav-mobile__sub a {
  padding-left: 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  border-bottom-color: #f3f4f6;
}

.lang-switcher--mobile {
  margin-top: 0.75rem;
  justify-content: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-min-h);
  max-height: var(--hero-max-h);
  height: min(100vh, var(--hero-max-h));
  background: var(--header-top);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s ease;
  transform: scale(1.08);
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
    transform: none;
  }

  .hero__slide.is-active {
    transform: none;
  }
}

.hero--reduce-motion .hero__slide {
  transition: none;
  transform: none;
}

.hero--reduce-motion .hero__slide.is-active {
  transform: none;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  z-index: 2;
}

.hero__overlay--bottom {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

.hero__accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-red) 0%, rgba(220, 38, 38, 0.35) 100%);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: flex-start;
  max-width: 80rem;
  margin: 0 auto;
  /* Sabit header yüksekliği + minimal pay */
  padding: calc(var(--nav-offset) + 0.15rem) 1.5rem 1.5rem;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .hero__content {
    padding-bottom: 2rem;
  }
}

.hero__inner {
  max-width: 42rem;
}

.hero__counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__counter-current {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.hero__counter-line {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), rgba(220, 38, 38, 0.15));
}

.hero__counter-total {
  font-size: 13px;
  color: #9ca3af;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1.25rem;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__desc {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #e5e7eb;
  line-height: 1.7;
  margin: 0 0 2.25rem;
  max-width: 34rem;
  text-wrap: pretty;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--accent-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
  transition: background 0.35s, color 0.35s, box-shadow 0.35s, transform 0.2s;
}

.hero__cta:hover {
  background: #fff;
  color: var(--accent-red);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.hero__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta:hover {
    transform: none;
  }
}

.hero__nav {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  z-index: 5;
  display: flex;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hero__nav {
    right: 2.5rem;
  }
}

/* Slayt okları: sabit header altı (hero üstü = viewport üstü) */
@media (min-width: 768px) {
  .hero__nav {
    top: calc(var(--nav-offset) + 0.2rem);
    bottom: auto;
  }
}

.hero__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero__arrow:hover {
  border-color: var(--accent-red);
  color: #fff;
  background: rgba(220, 38, 38, 0.15);
}

/* ——— Section placeholders ——— */
.section {
  padding: 5rem 0;
}

.section--muted {
  background: hsl(var(--muted));
}

.section__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.section__lead {
  color: #6b7280;
  max-width: 42rem;
  margin: 0 0 2rem;
}

.placeholder-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card-placeholder {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
  min-height: 160px;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--footer-bg);
  color: #fff;
}

.site-footer--full {
  background: #000000;
  color: #e5e7eb;
}

/* — Üst bant: CTA + hızlı form — */
.footer-cta {
  background: #141414;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .footer-cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: stretch;
  }
}

.footer-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.footer-cta__rule {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent-red);
  border-radius: 1px;
  flex-shrink: 0;
}

.footer-cta__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1rem;
}

.footer-cta__accent {
  color: var(--accent-red);
}

.footer-cta__lead {
  margin: 0 0 1.75rem;
  font-size: 15px;
  line-height: 1.65;
  color: #a1a1aa;
  max-width: 28rem;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-cta__btn--primary {
  background: var(--accent-red);
  color: #fff;
}

.footer-cta__btn--primary:hover {
  background: var(--accent-red-hover);
  color: #fff;
}

.footer-cta__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #e4e4e7;
  background: transparent;
}

.footer-cta__btn--ghost:hover {
  border-color: var(--accent-red);
  color: #fff;
}

.footer-cta__card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
}

.footer-quick-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

@media (max-width: 480px) {
  .footer-quick-form__row {
    grid-template-columns: 1fr;
  }
}

.footer-quick-form__field {
  display: block;
}

.footer-quick-form__field input,
.footer-quick-form__field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 13px;
  color: #e4e4e7;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.footer-quick-form__field input::placeholder,
.footer-quick-form__field textarea::placeholder {
  color: #71717a;
}

.footer-quick-form__field input:focus,
.footer-quick-form__field textarea:focus {
  border-color: rgba(220, 38, 38, 0.55);
}

.footer-quick-form__field--invalid input,
.footer-quick-form__field--invalid textarea {
  border-color: rgba(248, 113, 113, 0.85);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
}

.footer-quick-form__field .form-field__error {
  color: #fca5a5;
}

.footer-quick-form__field--full {
  margin-bottom: 1rem;
}

.footer-quick-form__field textarea {
  min-height: 88px;
  resize: vertical;
}

.footer-quick-form__submit {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-red);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-quick-form__submit:hover {
  background: var(--accent-red-hover);
}

.site-footer__main {
  background: #000000;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .site-footer--full .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer--full .site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 2rem 2.5rem;
    padding: 4rem 0 3rem;
  }
}

.site-footer .logo__main {
  color: #ef4444;
}

.site-footer .logo__main::after {
  background: #ef4444;
}

.site-footer .logo__sub span:first-child {
  color: #9ca3af;
}

.site-footer__brand p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.65;
  margin-top: 1.25rem;
  max-width: 22rem;
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer-certs__item {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.footer-certs__item:hover {
  border-color: var(--accent-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.footer-certs__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-certs__more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #9ca3af;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  transition: color 0.2s;
}

.footer-certs__more:hover {
  color: #f87171;
}

.footer-brand__social {
  margin-top: 1rem;
}

.footer-brand__social .footer-social__link {
  width: 36px;
  height: 36px;
}

.logo--footer-inline {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.logo--footer-inline .logo__sub--single {
  display: inline;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f4f4f5;
}

.footer-col__heading {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin: 0 0 1.25rem;
}

.footer-col__rule {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent-red);
  border-radius: 1px;
}

.footer-col.footer-col--contact .footer-col__heading {
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin: 0 0 1.25rem;
}

a.footer-all-products {
  color: var(--accent-red) !important;
  font-weight: 600;
}

a.footer-all-products:hover {
  color: #fca5a5 !important;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  font-size: 13px;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #f87171;
}

.footer-col a.is-highlight {
  color: #f87171;
  font-weight: 600;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

.footer-contact__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.15);
  color: var(--accent-red);
}

.footer-contact a:hover {
  color: #f87171;
}

.footer-col--contact .map-embed--footer {
  margin-top: 4rem;
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.footer-col--contact .map-embed--footer iframe {
  display: block;
  width: 100%;
  height: 170px;
  border: 0;
  filter: invert(1) hue-rotate(180deg) brightness(0.82) contrast(0.95) saturate(0.75);
}

@media (min-width: 1024px) {
  .footer-col--contact .map-embed--footer {
    width: calc(200% + 2.5rem);
    margin-left: calc(-100% - 2.5rem);
  }
}

@media (min-width: 1200px) {
  .footer-col--contact .map-embed--footer iframe {
    height: 185px;
  }
}

.site-footer__sub {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0 1.75rem;
  background: #000;
}

.site-footer__sub-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-footer__sub-inner {
    flex-direction: row;
    align-items: center;
  }
}

.footer-sub__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.footer-sub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-sub__btn--primary {
  background: var(--accent-red);
  color: #fff;
}

.footer-sub__btn--primary:hover {
  background: var(--accent-red-hover);
  color: #fff;
}

.footer-sub__btn--muted {
  background: #27272a;
  color: #d4d4d8;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-sub__btn--muted:hover {
  border-color: var(--accent-red);
  color: #fff;
}

.footer-sub__btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

.footer-sub__btn--icon:hover {
  border-color: var(--accent-red);
  color: #fff;
}

.footer-sub__social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-sub__social .footer-social__link {
  width: 36px;
  height: 36px;
}

.site-footer__copy {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.site-footer__copy strong {
  color: #9ca3af;
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social__link:hover {
  color: #fff;
  border-color: var(--accent-red);
  background: rgba(220, 38, 38, 0.12);
}

.footer-social__link--whatsapp:hover {
  color: #fff;
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.18);
}

.whatsapp-float {
  position: fixed;
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:active {
  color: #fff;
  background: #20bd5a;
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

body.is-nav-open .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.92);
}

@media (max-width: 767px) {
  .whatsapp-float {
    left: calc(1rem + env(safe-area-inset-left, 0px));
    right: auto;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .hero__nav {
    bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
    right: calc(1.5rem + env(safe-area-inset-right, 0px));
  }

  .footer-sub__social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-brand__social {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
  }

  .whatsapp-float:hover,
  .whatsapp-float:active {
    transform: none;
  }
}

.footer-social__link--btn {
  cursor: pointer;
  font: inherit;
}

/* Eski bar (teklif/karşılaştır) kaldırıldı; yerine sosyal + yukarı */
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}

.site-footer__bar .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-footer__bar .container {
    flex-direction: row;
  }
}

.footer-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.footer-bar-actions a,
.footer-bar-actions button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-bar-actions .btn-footer-primary {
  background: var(--accent-red);
  color: #fff;
}

.footer-bar-actions .btn-footer-primary:hover {
  background: var(--accent-red-hover);
}

.footer-bar-actions .btn-footer-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

.footer-bar-actions .btn-footer-ghost:hover {
  border-color: var(--accent-red);
  color: #f87171;
}

.footer-bar-actions .btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6b7280;
}

.footer-bar-actions .btn-icon:hover {
  border-color: var(--accent-red);
  color: #ef4444;
}

/* ——— Inner page ——— */
.page-hero {
  padding: calc(var(--nav-offset) + 3rem) 0 2rem;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
  border-bottom: 1px solid hsl(var(--border));
}

.page-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.page-hero p {
  color: #6b7280;
  margin: 0;
  max-width: 40rem;
}

.page-body {
  padding: 3rem 0 5rem;
}

.page-body--flush-top {
  padding-top: 0;
}

.home-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0 0;
}

.home-inline-links--center {
  margin-top: 1.5rem;
  justify-content: center;
}

.section__title--subsection {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.section__title--subsection-spaced {
  font-size: 1.35rem;
  margin: 3rem 0 1rem;
}

.section__lead--tight {
  margin-bottom: 1.5rem;
}

.section__lead--tight code {
  font-size: 0.9em;
}

.series-grid--home {
  margin-bottom: 3rem;
}

.btn-teklif--inline {
  display: inline-flex;
  margin-top: 0.5rem;
}

.form-submit-spaced {
  margin-top: 1rem;
}

.header-top__phone {
  margin-left: 1.5rem;
}

.nav-mobile__cta {
  justify-content: center;
  margin-top: 0.75rem;
}

.nav-toggle__icon--hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— İçerik: about, değerler, seri grid, blog ——— */
.prose {
  max-width: 46rem;
  color: #374151;
  line-height: 1.7;
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-pill {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  color: var(--accent-red);
  margin-bottom: 0.25rem;
}

.stat-pill span {
  font-size: 13px;
  color: #6b7280;
}

/* ——— Ana sayfa: slayt altı Hakkımızda (Emergent mockup) ——— */
.section--home-about {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-about {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
  }
}

.home-about__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.home-about__eyebrow-line {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent-red);
  border-radius: 1px;
}

.home-about__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: #0f172a;
}

.home-about__title-line {
  display: block;
}

.home-about__title-accent {
  display: block;
  color: var(--accent-red);
}

.home-about__lead {
  margin: 0 0 1rem;
  font-size: 15px;
  line-height: 1.75;
  color: #6b7280;
  max-width: 36rem;
}

.home-about__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-red);
  transition: color 0.2s, gap 0.2s;
}

.home-about__more:hover {
  color: var(--accent-red-hover);
  gap: 0.5rem;
}

.home-about__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  /* Yatay: görsel ↔ istatistik kutusu arası */
  column-gap: 1rem;
  /*
   * Dikey: üst görsel ↔ siyah kutu, kırmızı kutu ↔ alt görsel — tam 5mm.
   * px yedek (~19px ≈ 5mm @96dpi); mm desteklenmezse px kalır.
   */
  row-gap: 19px;
  row-gap: 5mm;
  min-height: 280px;
  aspect-ratio: 1 / 1;
  max-height: min(92vw, 520px);
  align-items: stretch;
  justify-items: stretch;
}

@media (min-width: 640px) {
  .home-about__mosaic {
    min-height: 320px;
    max-height: min(88vw, 560px);
    column-gap: 1.15rem;
    row-gap: 19px;
    row-gap: 5mm;
  }
}

.home-about__cell--tl {
  grid-column: 1;
  grid-row: 1;
}

.home-about__cell--tr {
  grid-column: 2;
  grid-row: 1;
}

.home-about__cell--bl {
  grid-column: 1;
  grid-row: 2;
}

.home-about__cell--br {
  grid-column: 2;
  grid-row: 2;
}

.home-about__cell--img {
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  display: block;
}

.home-about__img-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.home-about__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.07);
  filter: blur(5px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s ease;
  will-change: opacity, transform, filter;
}

.home-about__layer.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .home-about__layer {
    transition: none;
    transform: none;
    filter: none;
  }
}

.home-about__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* Genişlik: sütunu doldur (tam tersi: metne sıkı değil) */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  /* Yükseklik: içerik kadar; hizalama tr/bl ile (mozaikte görsellere 5mm mesafe için) */
  min-height: 0;
  height: auto;
}

/* Üst satır: kırmızı kutu alttaki görsele yakın (satır arası = row-gap) */
.home-about__cell--tr.home-about__stat {
  place-self: end stretch;
}

/* Alt satır: siyah kutu üstteki görsele yakın */
.home-about__cell--bl.home-about__stat {
  place-self: start stretch;
}

.home-about__stat--red {
  background: var(--accent-red);
  color: #fff;
}

.home-about__stat--dark {
  background: #0a0a0a;
  color: #fff;
}

.home-about__stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
}

.home-about__stat--red .home-about__stat-num {
  color: #fff;
}

.home-about__stat--dark .home-about__stat-num {
  color: var(--accent-red);
}

.home-about__stat-label {
  margin-top: 0.35rem;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.35;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--accent-red);
}

.value-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.value-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ——— Değerlerimiz — koyu mozaik (3×2) ——— */
.section--values-mosaic {
  background: #0a0a0a;
  color: #fff;
}

.values-mosaic-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.values-mosaic__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.values-mosaic__kicker-line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent-red);
  border-radius: 1px;
  flex-shrink: 0;
}

.values-mosaic__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  color: #fff;
}

.values-mosaic__title-line {
  display: block;
}

.values-mosaic__title-line--accent {
  color: var(--accent-red);
}

.values-grid--mosaic {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .values-grid--mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid--mosaic {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.values-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  padding-bottom: 0.35rem;
  outline: none;
}

.values-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px var(--focus-ring);
}

.values-carousel::-webkit-scrollbar {
  height: 6px;
}

.values-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.values-carousel__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.25rem 1.5rem 1rem;
  padding-inline: max(1.5rem, calc((100vw - min(100vw, 80rem)) / 2 + 1.5rem));
}

.values-carousel__track .value-card--mosaic {
  flex: 0 0 auto;
  width: min(300px, 84vw);
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .values-carousel__track {
    gap: 1.5rem;
  }

  .values-carousel__track .value-card--mosaic {
    width: min(320px, 42vw);
  }
}

@media (min-width: 1024px) {
  .values-carousel__track .value-card--mosaic {
    width: 300px;
  }
}

.value-card.value-card--mosaic {
  background: #161616;
  border: none;
  border-radius: 14px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-top: none;
  text-align: left;
}

.value-card--mosaic h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #fff;
}

.value-card--mosaic p {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.65;
}

.value-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 1.25rem;
  color: var(--accent-red);
}

.value-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.factory-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}

.factory-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.factory-figure figcaption {
  font-size: 13px;
  color: #6b7280;
  padding: 0.75rem 1rem;
  background: #fafafa;
}

/* ——— Fabrika: s/b → renkli süpürme ——— */
.factory-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .factory-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.factory-split__title {
  margin-bottom: 1rem;
}

.factory-split__text {
  margin: 0;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 36rem;
}

.factory-reveal {
  --factory-reveal-duration: 3.64s;
  --factory-reveal-ratio: 750 / 1200;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.factory-reveal::before {
  content: "";
  display: block;
  padding-bottom: calc(var(--factory-reveal-ratio) * 100%);
}

.factory-reveal__base,
.factory-reveal__color img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.factory-reveal__base {
  z-index: 0;
  filter: grayscale(1);
}

.factory-reveal__color {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 0 0 100%);
  will-change: clip-path;
  pointer-events: none;
}

.factory-reveal.is-complete .factory-reveal__base {
  visibility: hidden;
}

.factory-reveal__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.85) 18%,
    var(--accent-red) 50%,
    rgba(255, 255, 255, 0.85) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 12px rgba(220, 38, 38, 0.55),
    0 0 24px rgba(255, 255, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.factory-reveal.is-active .factory-reveal__color {
  animation: factory-reveal-clip var(--factory-reveal-duration) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.factory-reveal.is-active .factory-reveal__line {
  animation: factory-reveal-line var(--factory-reveal-duration) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes factory-reveal-clip {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes factory-reveal-line {
  0% {
    left: 100%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    left: 0%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .factory-reveal__base {
    visibility: hidden;
  }

  .factory-reveal__color {
    clip-path: inset(0 0 0 0) !important;
    animation: none !important;
  }

  .factory-reveal__line {
    display: none;
  }
}

.series-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.series-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.series-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.series-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f4f6;
}

.series-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.series-card:hover .series-card__img img {
  transform: scale(1.05);
}

.series-card__body {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.series-card__body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.series-card__body .meta {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.series-card__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
}

.series-card__link:hover {
  text-decoration: underline;
}

.feature-mini-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.features-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.16) transparent;
  padding-bottom: 0.35rem;
  margin-bottom: 2.5rem;
  outline: none;
}

.features-carousel:focus-visible {
  box-shadow: inset 0 0 0 2px var(--focus-ring);
}

.features-carousel::-webkit-scrollbar {
  height: 6px;
}

.features-carousel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.14);
  border-radius: 999px;
}

.features-carousel__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.25rem 1.5rem 1rem;
  padding-inline: max(1.5rem, calc((100vw - min(100vw, 80rem)) / 2 + 1.5rem));
}

.features-carousel__track .feature-mini {
  flex: 0 0 auto;
  width: min(280px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 168px;
}

.features-carousel__track .feature-mini a {
  margin-top: auto;
  padding-top: 0.85rem;
}

@media (min-width: 640px) {
  .features-carousel__track {
    gap: 1.25rem;
  }

  .features-carousel__track .feature-mini {
    width: min(300px, 38vw);
  }
}

@media (min-width: 1024px) {
  .features-carousel__track .feature-mini {
    width: 280px;
  }
}

.feature-mini {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem;
}

.feature-mini h3 {
  font-size: 15px;
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.feature-mini p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.55;
}

.feature-mini a {
  color: var(--accent-red);
  font-weight: 600;
  font-size: 13px;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
}

.blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-card__body h3 a {
  color: #111827;
}

.blog-card__body h3 a:hover {
  color: var(--accent-red);
}

.blog-card__body p {
  margin: 0 0 1rem;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.55;
  flex: 1;
}

.blog-card__body .read {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-red);
}

.catalog-box {
  border: 1px dashed hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fafafa;
}

.catalog-box p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.catalog-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.catalog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 1px var(--accent-red);
}

.catalog-card--featured {
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.catalog-card__year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 0.35rem;
}

.catalog-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.catalog-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.catalog-card__download {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-red);
}

.catalog-card__download:hover {
  color: var(--accent-red-hover);
}

/* ——— Catalog page ——— */
.catalog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 13px;
  color: #6b7280;
}

.catalog-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.catalog-breadcrumb a:hover {
  color: var(--accent-red);
}

.catalog-page {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.catalog-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .catalog-picker {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.catalog-picker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font: inherit;
  color: inherit;
}

.catalog-picker__item:hover {
  border-color: #fca5a5;
}

.catalog-picker__item.is-active {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 1px var(--accent-red);
}

.catalog-picker__thumb {
  display: block;
  width: 100%;
  max-width: 160px;
  background: transparent;
}

.catalog-picker__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.catalog-picker__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.catalog-hero__cover {
  background: transparent;
}

.catalog-hero__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.catalog-hero__eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 0.75rem;
}

.catalog-hero__content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.catalog-hero__content > p {
  margin: 0 0 1.25rem;
  color: #4b5563;
  font-size: 1.05rem;
  max-width: 38rem;
}

.catalog-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.catalog-highlights li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 15px;
  color: #374151;
}

.catalog-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
}

.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.catalog-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-teklif--dark {
  background: #0a0a0a;
  color: #fff;
}

.btn-teklif--dark:hover {
  background: #262626;
  color: #fff;
}

.catalog-hero__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-red);
}

.catalog-hero__link:hover {
  color: var(--accent-red-hover);
}

.catalog-hero__note {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.catalog-viewer {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.catalog-viewer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: var(--header-top);
  border-bottom: 3px solid var(--accent-red);
}

.catalog-viewer__head h2 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin: 0;
}

.catalog-viewer__open {
  font-size: 14px;
  font-weight: 600;
  color: #fca5a5;
}

.catalog-viewer__open:hover {
  color: #fff;
}

.catalog-viewer__frame iframe {
  display: block;
  width: 100%;
  height: min(80vh, 900px);
  min-height: 520px;
  border: 0;
  background: #525659;
}

.catalog-card__cover {
  margin-bottom: 1rem;
  background: transparent;
}

.catalog-card__cover img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .catalog-hero {
    grid-template-columns: 1fr;
  }

  .catalog-hero__cover {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .catalog-picker {
    grid-template-columns: 1fr;
  }

  .catalog-picker__item {
    flex-direction: row;
    justify-content: flex-start;
  }

  .catalog-picker__thumb {
    width: 88px;
    flex-shrink: 0;
  }
}

.values-mosaic__lead {
  max-width: 42rem;
  margin: 0.75rem auto 0;
  text-align: center;
  color: #a0a0a0;
}

.contact-box {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  font-size: 15px;
  color: #374151;
}

.contact-list a {
  color: var(--accent-red);
}

.contact-note {
  font-size: 14px;
  color: #6b7280;
  margin-top: 1rem;
}

.map-embed {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: #e5e7eb;
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* Yasal / blog iç sayfa */
.compare-page__inner {
  max-width: 1200px;
}

.compare-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 2px dashed hsl(var(--border));
  border-radius: var(--radius);
  background: #fafafa;
}

.compare-empty__icon {
  font-size: 3rem;
  margin: 0 0 0.75rem;
  opacity: 0.35;
}

.compare-empty h2 {
  margin: 0 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
}

.compare-empty p {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  color: #6b7280;
}

.compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .compare-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.compare-card {
  position: relative;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.compare-card__remove {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent-red);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.compare-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  background: #f9fafb;
  padding: 1rem;
  box-sizing: border-box;
}

.compare-card__image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.compare-card__body {
  padding: 1rem 1.1rem 1.25rem;
}

.compare-card__code {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.04em;
}

.compare-card__title {
  margin: 0 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
}

.compare-card__title a {
  color: inherit;
  text-decoration: none;
}

.compare-card__title a:hover {
  color: var(--accent-red);
}

.compare-card__specs {
  margin: 0;
  font-size: 0.85rem;
}

.compare-card__specs div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-top: 1px solid hsl(var(--border));
}

.compare-card__specs dt {
  margin: 0;
  color: #6b7280;
  font-weight: 600;
}

.compare-card__specs dd {
  margin: 0;
  color: #374151;
}

.compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.compare-suggestions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.compare-suggestions__title {
  margin: 0 0 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  text-align: center;
  color: #374151;
}

.compare-suggestions__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.compare-suggestion-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.compare-suggestion-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  background: #f9fafb;
  padding: 0.75rem;
  box-sizing: border-box;
}

.compare-suggestion-card__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.compare-suggestion-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.compare-suggestion-card__code {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-red);
}

.compare-suggestion-card__title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  flex: 1;
}

.compare-suggestion-card__title a {
  color: inherit;
  text-decoration: none;
}

.compare-suggestion-card__title a:hover {
  color: var(--accent-red);
}

.compare-suggestion-card__add {
  margin-top: auto;
  padding: 0.55rem 0.85rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.compare-suggestion-card__add:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.compare-actions__secondary {
  padding: 0.65rem 1.15rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

@media print {
  .site-header,
  .site-footer,
  .compare-actions,
  .compare-card__remove {
    display: none !important;
  }
}

.legal-page .page-body,
.article-page .page-body {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-page .prose h2,
.article-page .prose h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.legal-page .prose h3,
.article-page .prose h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-page .prose ul,
.article-page .prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-page .prose li,
.article-page .prose li {
  margin-bottom: 0.35rem;
}

/* Teşekkür sayfası */
.thank-you__prose {
  max-width: 40rem;
}

.thank-you__lead {
  margin: 0;
}

.thank-you__redirect {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  background: #f9fafb;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: #4b5563;
  font-size: 0.95rem;
}

.thank-you__countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  font-weight: 700;
  color: var(--accent-red);
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.thank-you__btn-home {
  display: inline-flex;
}

.thank-you__link-catalog {
  font-weight: 600;
  color: var(--accent-red);
  text-decoration: none;
}

.thank-you__link-catalog:hover {
  text-decoration: underline;
}

.series-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
}

.series-intro p {
  margin: 0 0 1rem;
}

/* ——— Form (FormSubmit vb.) ——— */
.form-section {
  max-width: 40rem;
  scroll-margin-top: 120px;
}

.yigit-form {
  position: relative;
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

.form-field__error {
  display: block;
  margin: 0.15rem 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #dc2626;
}

.form-field--invalid input,
.form-field--invalid select,
.form-field--invalid textarea {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.45;
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent-red);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ——— Ürün kartları (products-catalog.js) ——— */
.product-grid-mount {
  min-height: 2rem;
}

.product-grid,
.catalog-product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.product-card__img {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.52);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.product-card:hover .product-card__overlay,
.product-card__img:focus-visible .product-card__overlay {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .product-card__overlay {
    transition: none;
  }
}

.product-card__img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__code {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.product-card__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.75rem;
  color: #111827;
}

.product-card__title a {
  color: inherit;
}

.product-card__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.product-card__meta li {
  margin-bottom: 0.25rem;
}

.catalog-series-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fee2e2;
  color: #111827;
}

.catalog-series-title:first-child {
  margin-top: 0;
}

.catalog-filters {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}

.catalog-filters__row {
  display: grid;
  gap: 0.85rem 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .catalog-filters__row {
    grid-template-columns: 1.4fr 1fr 1fr auto;
    align-items: end;
  }
}

.catalog-filters__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.catalog-filters__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.catalog-filters__input,
.catalog-filters__select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 15px;
  color: #111827;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.catalog-filters__input:focus,
.catalog-filters__select:focus {
  outline: none;
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.catalog-filters__reset {
  padding: 0.65rem 1rem;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}

.catalog-filters__reset:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.catalog-filters__count {
  margin: 0.85rem 0 0;
  font-size: 14px;
  color: #6b7280;
}

.catalog-empty {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: #6b7280;
  background: #f9fafb;
  border: 1px dashed hsl(var(--border));
  border-radius: var(--radius);
}

/* ——— Seri sayfası (sidebar + kompakt kartlar) ——— */
.main-content--series {
  padding-bottom: 0;
}

.series-page {
  padding: calc(var(--nav-offset) + 1.75rem) 0 2.25rem;
  background: #fff;
}

.series-page__layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .series-page__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem 3rem;
  }

  .series-sidebar-wrap {
    position: sticky;
    top: calc(var(--nav-offset) + 1rem);
    align-self: start;
    z-index: 2;
  }

  .series-sidebar__panel {
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - var(--nav-offset) - 2rem);
  }

  .series-sidebar {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .series-sidebar__list {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
}

.series-sidebar-wrap {
  min-width: 0;
}

.series-sidebar__panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.series-sidebar {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 1rem 0;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.series-sidebar__label {
  min-width: 0;
  line-height: 1.35;
}

.series-sidebar__count {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  min-width: 1.65rem;
  text-align: center;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: #fff;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.series-sidebar__link.is-active .series-sidebar__count {
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-red);
  border-color: rgba(255, 255, 255, 0.35);
}

.series-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.series-sidebar__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.series-sidebar__action--ghost {
  color: #111827;
  background: #fff;
  border: 1px solid hsl(var(--border));
}

.series-sidebar__action--ghost:hover {
  border-color: rgba(220, 38, 38, 0.35);
  color: var(--accent-red);
}

.series-sidebar__action--primary {
  color: #fff;
  background: var(--accent-red);
  border: 1px solid var(--accent-red);
}

.series-sidebar__action--primary:hover {
  background: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
}

.series-sidebar__action--primary.yck-compare-link--active {
  box-shadow: 0 4px 14px rgba(227, 58, 58, 0.35);
}

.series-main__product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.12);
  color: #374151;
  font-size: 13px;
}

.series-main__product-badge strong {
  color: var(--accent-red);
}

.series-sidebar__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 0.75rem;
  padding: 0 1rem;
}

.series-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.series-sidebar__list li {
  margin: 0;
}

.series-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  margin: 0 0.5rem 0.2rem;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.series-sidebar__link:hover {
  background: #e5e7eb;
}

.series-sidebar__link.is-active {
  background: var(--accent-red);
  color: #fff;
}

.series-sidebar__link.is-active:hover {
  background: var(--accent-red-hover);
  color: #fff;
}

.series-main__head {
  margin-bottom: 1.25rem;
}

.series-main__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #111827;
  line-height: 1.2;
}

.series-main__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.series-main__meta strong {
  color: var(--accent-red);
  font-weight: 700;
}

.series-main__count-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-red);
  flex-shrink: 0;
}

.series-intro--compact {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 52rem;
}

.series-intro--compact p {
  margin: 0 0 0.75rem;
}

.series-intro--compact p:last-child {
  margin-bottom: 0;
}

.product-grid--series {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.product-card--series {
  border-radius: 12px;
  cursor: pointer;
}

.product-card--series:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

.product-card__img--series {
  position: relative;
}

.product-card__img--series a {
  position: relative;
  z-index: 1; /* checkbox label üzeride kalır */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-card__img--series a img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card__compare-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  margin: 0;
  cursor: pointer;
}

.product-card__compare {
  width: 22px;
  height: 22px;
  accent-color: var(--accent-red);
  cursor: pointer;
}

.product-card__body--series {
  padding: 1rem 1.1rem 1.2rem;
}

.product-card__code-line {
  margin: 0 0 0.4rem;
  font-size: 14px;
  color: #111827;
}

.product-card__code-label {
  font-weight: 700;
  margin-right: 0.25rem;
}

.product-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #4b5563;
}

.product-card__desc a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.series-main__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
}

.series-main__all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.series-main__all-link:hover {
  color: var(--accent-red);
}

.series-main__all-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.series-main__compare {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-red);
  background: rgba(239, 68, 68, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  transition: background 0.15s, border-color 0.15s;
}

.series-main__compare:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(220, 38, 38, 0.35);
}

.series-main__compare.yck-compare-link--active {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(220, 38, 38, 0.45);
}

/* ——— Karşılaştırma sayaç rozetleri (compare-utils.js) ——— */
.yck-compare-badge,
.series-main__compare-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: var(--accent-red);
  border-radius: 9999px;
  box-sizing: border-box;
}

.yck-compare-badge[hidden],
.series-main__compare-badge[hidden] {
  display: none !important;
}

.yck-compare-badge--nav {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  font-size: 10px;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.yck-compare-badge--inline {
  min-width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.35rem;
}

.yck-compare-badge--sidebar {
  min-width: 1.35rem;
  height: 1.35rem;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-compare-sidebar.yck-compare-link--active {
  box-shadow: 0 4px 14px rgba(227, 58, 58, 0.35);
}

.series-load-more-mount {
  margin-top: 1.5rem;
}

.series-load-more-wrap {
  margin: 0;
  text-align: center;
}

.series-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.5rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-red);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.series-load-more:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

.series-load-more:focus-visible {
  outline: 2px solid var(--focus-ring, #2563eb);
  outline-offset: 3px;
}

.series-load-more__count {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.92;
}

.yck-compare-badge--pulse {
  animation: yck-compare-pulse 0.45s ease;
}

@keyframes yck-compare-pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}

.footer-sub__btn--muted.yck-compare-link--active {
  border-color: rgba(220, 38, 38, 0.45);
  color: var(--compare-active);
}

/* ——— Ürün detay sayfası ——— */
.product-detail {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.product-detail__media {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8fafc;
}

/* ——— Toast bildirimleri (compare-utils.js) ——— */
.yck-toast-root {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  z-index: 9999;
  pointer-events: none;
  max-width: min(22rem, calc(100vw - 2rem));
}

@media (max-width: 767px) {
  .yck-toast-root {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    max-width: min(20rem, calc(100vw - 5.5rem));
  }
}

.yck-toast {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.925rem;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  background: #111827;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  animation: yck-toast-in 0.25s ease;
}

.yck-toast--success {
  background: var(--success);
  color: var(--success-foreground);
}

.yck-toast--warning {
  background: var(--warning);
  color: var(--warning-foreground);
}

.yck-toast--info {
  background: #1f2937;
}

@keyframes yck-toast-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yck-toast {
    animation: none;
  }
}

.product-detail__media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-detail__code {
  margin: 0 0 0.4rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-red);
}

.product-detail__content h2 {
  margin: 0 0 0.85rem;
  font-family: "Space Grotesk", sans-serif;
}

.product-detail__summary {
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.65;
}

.product-detail__specs {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.product-detail__specs li {
  margin-bottom: 0.4rem;
  color: #374151;
}

.product-detail__features {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  list-style: disc;
  color: #4b5563;
}

.product-detail__features li {
  margin-bottom: 0.35rem;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
