/* Outfit — @font-face in includes/head.php (same URL as preload + ?v=) */
:root {
  --bg: #f4f6f9;
  --surface: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --accent: #e10600;
  --accent-dark: #b80500;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
  --radius: 12px;
  --font: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

#main:focus {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.btn--sm {
  min-height: 38px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.site-header__brand {
  flex-shrink: 0;
}

.site-header__logo {
  height: 36px;
  width: auto;
}

.site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 0.5rem;
  margin-right: 0.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: block;
  padding: 0.4rem 0.55rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 8px;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav li.active > a {
  color: var(--text);
  background: var(--bg);
}

/* Dropdown (Hizmetler alt menü vb.) */
.site-nav > li {
  position: relative;
  list-style: none;
}

.site-nav .header__nav-item,
.site-nav .dropdown {
  position: relative;
}

.site-nav .header__nav-link {
  display: block;
  padding: 0.4rem 0.55rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 8px;
  white-space: nowrap;
}

.site-nav .header__nav-link:hover,
.site-nav .header__nav-item:hover > .header__nav-link {
  color: var(--text);
  background: var(--bg);
}

.site-nav .dropdown-menu,
.site-nav .header__nav-menu {
  display: none;
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  z-index: 120;
  min-width: 14.5rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.site-nav .header__nav-item:hover > .dropdown-menu,
.site-nav .header__nav-item:focus-within > .dropdown-menu,
.site-nav .dropdown:hover > .dropdown-menu,
.site-nav .dropdown:focus-within > .dropdown-menu,
.site-nav .header__nav-item.is-open > .dropdown-menu,
.site-nav .dropdown.is-open > .dropdown-menu {
  display: block;
}

.site-nav .dropdown-menu .site-nav__link,
.site-nav .header__nav-menu .site-nav__link,
.site-nav .dropdown-menu a,
.site-nav .header__nav-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav .dropdown-menu a:hover,
.site-nav .header__nav-menu a:hover {
  background: var(--bg);
  color: var(--accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.45rem;
  margin-left: 0;
  padding-left: 0.65rem;
  border-left: 1px solid var(--border);
}

.site-header__cart,
.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
}

.site-header__cart:hover,
.site-header__phone:hover {
  color: var(--accent);
  background: var(--bg);
}

.site-header__cart-label {
  display: none;
}

.site-header__phone span {
  display: none;
}

.site-header__panel {
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.site-header__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
}

/* Icons */
.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  display: block;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--cart,
.icon--phone {
  width: 1.25rem;
  height: 1.25rem;
}

.icon--social {
  width: 1.15rem;
  height: 1.15rem;
}

.site-header__toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, margin 0.2s ease;
  transform-origin: center;
}

.site-header.is-nav-open .site-header__toggle span:nth-child(1) {
  margin: 0;
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-header__toggle span:nth-child(3) {
  margin: 0;
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__backdrop {
  display: none;
}

.site-header__nav-foot {
  display: none;
}

@media (min-width: 1280px) {
  .site-header__phone span {
    display: inline;
  }

  .site-nav__link,
  .site-nav .header__nav-link {
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 1099px) {
  body.is-nav-open {
    overflow: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .site-header__toggle {
    display: block;
    margin-left: 0.35rem;
    order: 3;
  }

  .site-header__backdrop {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: calc(100dvh - var(--header-h));
    z-index: 98;
    background: rgba(15, 23, 42, 0.42);
  }

  .site-header.is-nav-open .site-header__backdrop {
    display: block;
  }

  .site-header__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 99;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    margin: 0;
    padding: 0.5rem 0 0;
    flex: none;
    order: 4;
    background: var(--surface);
    border-bottom: 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    overflow: hidden;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-nav {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: 0.25rem 1.25rem 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav__link,
  .site-nav .header__nav-link {
    padding: 0.85rem 0.15rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav__link:hover,
  .site-nav li.active > a,
  .site-nav .header__nav-link:hover {
    background: transparent;
    color: var(--accent);
  }

  .site-nav .dropdown-menu,
  .site-nav .header__nav-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0.15rem 0 0.5rem 0.85rem;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav .header__nav-item.is-open > .dropdown-menu,
  .site-nav .dropdown.is-open > .dropdown-menu,
  .site-nav .header__nav-item.is-open > .header__nav-menu,
  .site-nav .dropdown.is-open > .header__nav-menu {
    display: block;
  }

  .site-nav .header__nav-item:hover > .dropdown-menu,
  .site-nav .dropdown:hover > .dropdown-menu {
    display: none;
  }

  .site-nav .header__nav-item.is-open:hover > .dropdown-menu,
  .site-nav .dropdown.is-open:hover > .dropdown-menu {
    display: block;
  }

  .site-nav .dropdown-menu a,
  .site-nav .header__nav-menu a {
    padding: 0.55rem 0.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    border-bottom: 0;
  }

  .site-header__nav-foot {
    display: block;
    flex-shrink: 0;
    margin-top: auto;
    padding: 1rem 1.25rem calc(1.15rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background:
      linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  }

  .site-header__nav-contact {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
  }

  .site-header__nav-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .site-header__nav-channel:hover {
    color: var(--accent);
  }

  .site-header__nav-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .site-header__nav-cta .btn {
    flex: 1 1 auto;
    min-width: 7.5rem;
  }

  .site-header__actions {
    margin-left: auto;
    padding-left: 0;
    border-left: 0;
    order: 2;
  }

  .site-header__phone {
    display: none;
  }

  .site-header__cart-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__toggle span {
    transition: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(1200px 420px at 80% -10%, rgba(225, 6, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero--carousel {
  touch-action: pan-y;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(100, 116, 139, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 62%, rgba(100, 116, 139, 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 24%, rgba(225, 6, 0, 0.18) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 86% 70%, rgba(100, 116, 139, 0.1) 0 2px, transparent 3px);
  background-size: 180px 180px;
  opacity: 0.7;
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 40rem;
}

.hero__logo {
  height: 56px;
  width: auto;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease forwards;
}

.hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease 0.1s forwards;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 34rem;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease 0.2s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.7s ease 0.3s forwards;
}

.hero__viewport {
  position: relative;
  touch-action: pan-y;
}

.hero--carousel .hero__slide {
  display: none;
}

.hero--carousel .hero__slide.is-active {
  display: block;
}

.hero--carousel .hero__slide.is-active .hero__logo,
.hero--carousel .hero__slide.is-active .hero__title,
.hero--carousel .hero__slide.is-active .hero__lead,
.hero--carousel .hero__slide.is-active .hero__actions {
  animation: rise 0.55s ease forwards;
}

.hero--carousel .hero__slide.is-active .hero__title {
  animation-delay: 0.05s;
}

.hero--carousel .hero__slide.is-active .hero__lead {
  animation-delay: 0.12s;
}

.hero--carousel .hero__slide.is-active .hero__actions {
  animation-delay: 0.2s;
}

.hero__controls {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 40rem;
}

.hero__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero__nav:hover,
.hero__nav:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

.hero__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__dot.is-active,
.hero__dot[aria-current="true"] {
  background: var(--accent);
  transform: scale(1.15);
}

.hero__dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .hero--carousel .hero__slide.is-active .hero__logo,
  .hero--carousel .hero__slide.is-active .hero__title,
  .hero--carousel .hero__slide.is-active .hero__lead,
  .hero--carousel .hero__slide.is-active .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section__head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.section__empty {
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

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

.product-list-page__intro {
  margin: 0 0 2rem;
  max-width: 40rem;
}

.product-list-page .product-grid {
  margin-top: 0.5rem;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.home-intro__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-intro__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-intro__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 28rem;
}

.home-intro__body {
  max-width: 40rem;
}

@media (max-width: 768px) {
  .home-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.section--products {
  background: var(--bg);
}

.section--services {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--opensource {
  background: var(--bg);
}

.oss-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.oss-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.oss-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.oss-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  height: 100%;
  padding: 1.15rem 1.2rem;
  color: inherit;
  text-decoration: none;
}

.oss-card__top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.oss-card__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.oss-card__badge {
  margin-left: auto;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.oss-card__desc {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.oss-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.oss-card__go {
  margin-left: auto;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 991px) {
  .oss-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .oss-grid {
    grid-template-columns: 1fr;
  }
}

.service-groups {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.service-group__head {
  margin: 0 0 1rem;
}

.service-group__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-group__lead {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.support-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.support-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  padding: 1.35rem 1.4rem 1.25rem;
  color: inherit;
}

.support-card__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.support-card__desc {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.support-card__more {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent, #0f766e);
}

.support-detail {
  width: 100%;
  max-width: none;
  padding: 1.5rem 1.6rem 1.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.support-detail__video {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: #0f172a;
}

.support-detail__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.support-detail__body {
  margin: 0;
  max-width: 48rem;
}

.support-detail__body h2:first-child,
.support-detail__body h3:first-child {
  margin-top: 0;
}

.support-detail__body ul,
.support-detail__body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.support-detail__body li {
  margin: 0 0 0.45rem;
  line-height: 1.6;
}

.support-detail__body li:last-child {
  margin-bottom: 0;
}

.support-detail__body code,
.support-detail__body kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.12em 0.4em;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: #0f172a;
}

.support-detail__body pre {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  border-radius: 10px;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.support-detail__body pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.support-detail__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-detail__body a:hover {
  color: var(--accent-dark);
}

.support-detail__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
  .support-detail {
    padding: 1.15rem;
  }
}

@media (max-width: 720px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.service-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  padding: 1.35rem 1.4rem 1.25rem;
  color: inherit;
}

.service-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-card__desc {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__more {
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-detail__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-detail .ref-detail__logo {
  max-width: 120px;
  padding: 1rem;
}

.service-detail .ref-detail__logo img {
  max-width: 72px;
  max-height: 72px;
}

.service-detail .ref-detail__body {
  max-width: 48rem;
}

.article--service {
  padding-top: 0;
}

@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.section--refs {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Product tiles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-tile__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-tile__title a:hover {
  color: var(--accent);
}

.product-tile__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-tile__price {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.product-tile__price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.product-tile__price--mute {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.product-tile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Referans tiles (homepage) */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 991px) {
  .ref-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .ref-grid {
    grid-template-columns: 1fr;
  }
}

.ref-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ref-tile:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.ref-tile__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ref-tile__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  min-height: 110px;
  padding: 1rem;
  background: var(--bg);
}

.ref-tile__media img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.ref-tile__media--empty {
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 700;
}

.ref-tile__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem 1.1rem;
}

.ref-tile__title {
  font-weight: 600;
  font-size: 0.98rem;
}

.ref-tile__url {
  color: var(--muted);
  font-size: 0.8rem;
}

.ref-tile__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.ref-list {
  padding: 0;
}

.ref-list--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ref-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Referans list page cards */
.ref-grid--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ref-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ref-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.ref-card__link {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  color: inherit;
  min-height: 108px;
}

.ref-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 72px;
  padding: 0.5rem;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.ref-card__media img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.ref-card__media--empty {
  background: rgba(225, 6, 0, 0.06);
  border-color: transparent;
}

.ref-card__initial {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.ref-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.ref-card__title {
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.ref-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.ref-card__host {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
}

.ref-card__go {
  color: var(--muted);
  font-size: 1.15rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ref-card:hover .ref-card__go {
  color: var(--accent);
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .ref-grid--page {
    grid-template-columns: 1fr;
  }

  .ref-card__link {
    grid-template-columns: 72px 1fr auto;
    padding: 0.9rem 1rem;
  }

  .ref-card__media {
    width: 72px;
    height: 64px;
  }
}

.article__lead {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 40rem;
}

.article__gallery {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article__gallery-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ref-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.ref-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.ref-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.ref-gallery__item:hover img {
  transform: scale(1.04);
}

.crumb--tight {
  margin: 0 0 1.25rem;
}

.article--ref {
  padding-top: 0;
}

/* CTA */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-band__title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.cta-band__lead {
  margin: 0;
  color: var(--muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Inner content shells */
.page-shell,
.article {
  padding: 2.5rem 0 4rem;
}

.page-shell__title,
.article__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-shell__body,
.article__body {
  color: var(--text);
  line-height: 1.7;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.product-detail__gallery {
  margin: 1.5rem 0 2rem;
}

.product-prose__lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.product-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.product-feature {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
}

.product-feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-prose__list {
  margin: 0 0 1.75rem;
  padding-left: 1.2rem;
}

.product-prose__list li {
  margin-bottom: 0.4rem;
}

.product-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.product-role {
  padding: 1.1rem 1.15rem;
  border-left: 3px solid var(--accent);
  background: var(--bg);
}

.product-role h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.product-role p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-prose__links {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.product-prose__links a {
  font-weight: 600;
}

@media (max-width: 991px) {
  .product-features,
  .product-roles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .product-features,
  .product-roles {
    grid-template-columns: 1fr;
  }
}

.article__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article__eyebrow a:hover {
  color: var(--accent);
}

.article__actions {
  margin: 0 0 1.5rem;
}

.article__media {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.article__media img {
  display: block;
  width: 100%;
  height: auto;
}

.article__media--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 28rem;
  min-height: 10rem;
  padding: 2rem 2.5rem;
  background: #fff;
}

.article__media--logo img {
  width: auto;
  max-width: 100%;
  max-height: 7.5rem;
  object-fit: contain;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: #cbd5e1;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__logo img {
  width: auto;
  max-width: 280px;
  height: auto;
  margin-bottom: 0.75rem;
}

.site-footer__tagline,
.site-footer__contact p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.5;
}

.site-footer__title {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  font-weight: 600;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 0.4rem;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.site-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-social__link:hover {
  background: rgba(225, 6, 0, 0.15);
  border-color: var(--accent);
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  color: #94a3b8;
  font-size: 0.875rem;
}

.site-footer__verification {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.verify-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: #fff;
}

.verify-badge__body {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.verify-badge__label {
  font-size: 0.8rem;
  font-weight: 600;
}

.verify-badge__text {
  font-size: 0.72rem;
  color: #94a3b8;
}

.verify-badge__star {
  color: #fbbf24;
  fill: currentColor;
}

/* Trustpilot marka varyantı — yalnızca yazı/ikon rengi */
.verify-badge--trustpilot .verify-badge__label {
  color: #00b67a;
}

.verify-badge--trustpilot .verify-badge__icon,
.verify-badge--trustpilot .verify-badge__star {
  color: #00b67a;
  fill: currentColor;
}

.verify-badge--trustpilot:hover {
  border-color: #00b67a;
}

.site-footer__copy {
  margin-left: auto;
}

/* Reveal — yalnızca JS varken ve henüz görünür değilken gizle (LCP/a11y) */
html.js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal]:not(.is-visible),
  html.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Crumb */
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.crumb a:hover {
  color: var(--accent);
}

/* FAQ (contact) */
.faq {
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.faq__head {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.faq__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 0;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 1.05rem 0.15rem;
  line-height: 1.35;
  transition: color 0.15s ease;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question-text {
  flex: 1;
}

.faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq__toggle::before {
  width: 0.55rem;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  width: 1.5px;
  height: 0.55rem;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__toggle {
  border-color: var(--accent);
  background: #fff5f5;
}

.faq__item[open] .faq__toggle::before,
.faq__item[open] .faq__toggle::after {
  background: var(--accent);
}

.faq__item[open] .faq__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq__item[open] .faq__question {
  color: var(--text);
}

.faq__item[open] .faq__question-text {
  color: var(--text);
}

.faq__answer {
  padding: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42rem;
}

.faq__answer p {
  margin: 0;
  color: var(--muted);
}

/* Contact page */
.page-shell--contact .page-shell__intro {
  margin-bottom: 1.75rem;
}

.page-shell--contact .section__title {
  margin: 0 0 0.5rem;
}

.page-shell--contact .section__lead,
.contact-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 38rem;
}

.contact-intro p {
  margin: 0;
}

.contact-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.contact-channel {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  min-width: 0;
}

.contact-channel--wide {
  grid-column: 1 / -1;
}

.contact-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #fff5f5;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-channel__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-channel__value {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-word;
}

.contact-channel__value:hover {
  color: var(--accent);
}

.contact-channel__value--text {
  font-weight: 500;
  color: var(--text);
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.contact-copy {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  margin-top: 2.25rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form__head {
  margin-bottom: 1.25rem;
}

.contact-form__title {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-form__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36rem;
}

@media (max-width: 767px) {
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 1.15rem 1.1rem;
  }

  .contact-form {
    padding: 1.2rem 1.05rem;
  }
}



.page-shell__intro {
  margin-bottom: 1.75rem;
}

/* Alerts */
.alert {
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.alert--ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.alert--danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.alert--warn {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.alert--info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.empty-state {
  padding: 2rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* Forms */
.panel-form,
.cart-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.input {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.input:focus {
  outline: none;
  border-color: #fca5a5;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.12);
}

textarea.input {
  min-height: 96px;
  resize: vertical;
}

.input--qty {
  max-width: 88px;
}

.form-error {
  color: #b91c1c;
  font-size: 0.8rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.pay-options {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.pay-options legend {
  padding: 0;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.pay-option:has(input:checked) {
  border-color: #fca5a5;
  background: #fff5f5;
}

/* Cart table */
.cart-table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 0.9rem 0.65rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.data-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 600;
}

.data-table__total-label {
  text-align: right;
  font-weight: 700;
}

.data-table__total-value {
  font-weight: 700;
  font-size: 1.05rem;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-product img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg);
}

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.summary-card--flat {
  box-shadow: none;
}

.summary-card__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.summary-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.summary-card__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-card__list li:last-child {
  border-bottom: 0;
}

.summary-card__list strong {
  display: block;
  font-size: 0.95rem;
}

.summary-card__list span {
  color: var(--muted);
  font-size: 0.85rem;
}

.summary-card__list em {
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.summary-card__rows {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.summary-card__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.summary-card__row strong {
  color: var(--text);
  font-weight: 600;
}

.summary-card__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.meta-list dt {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.meta-list dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.payment-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.payment-bank-accounts {
  margin-top: 1rem;
  line-height: 1.6;
}

.blog-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2.25rem;
  align-items: start;
  width: 100%;
}

/* Sidebar yok: tek kolon — aksi halde içerik 200px ilk kolona sıkışır */
.blog-layout--solo {
  grid-template-columns: minmax(0, 1fr);
}

.blog-layout--list,
.blog-layout--detail {
  margin-top: 0.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.blog-layout__side {
  position: sticky;
  top: calc(var(--header-h, 72px) + 1rem);
}

.blog-layout__main {
  min-width: 0;
  width: 100%;
}

.blog-layout__main--solo {
  max-width: none;
  width: 100%;
}

.page-shell--blog .page-shell__intro {
  max-width: 40rem;
  margin-bottom: 0.25rem;
}

.page-shell--blog .page-shell__intro .section__lead {
  margin-top: 0.35rem;
}

.page-shell__intro--ref .page-shell__intro-actions {
  margin: 1rem 0 0;
}

/* Referans detail — content / images only */
.ref-detail {
  width: 100%;
  padding: 1.5rem 1.6rem 1.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.ref-detail--content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.ref-detail__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  max-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.ref-detail__logo img {
  display: block;
  max-width: 160px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ref-detail__body {
  max-width: 42rem;
}

.ref-detail__body p:last-child {
  margin-bottom: 0;
}

.ref-detail__gallery {
  padding-top: 0.15rem;
}

.ref-detail__gallery-title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ref-detail__empty {
  margin: 0;
  color: var(--muted);
}

.ref-detail__footer {
  margin-top: 0.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
  .ref-detail {
    padding: 1.15rem;
  }

  .ref-detail__logo {
    max-width: 160px;
    padding: 0.6rem 0.75rem;
  }

  .ref-detail__logo img {
    max-width: 132px;
    max-height: 40px;
  }
}

.cat-nav {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cat-nav__label {
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cat-nav__list,
.filter__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-left: 0;
}

.cat-nav__rail {
  border-left: 2px solid var(--border);
}

.cat-nav__list > li,
.filter__nav > li {
  margin: 0;
}

.cat-nav__list a,
.filter__nav a,
.cat-nav__all {
  display: block;
  margin-left: -2px;
  padding: 0.55rem 0.15rem 0.55rem 0.9rem;
  border-left: 2px solid transparent;
  border-radius: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.35;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.cat-nav__list a::before,
.filter__nav a::before {
  display: none;
}

.cat-nav__list a:hover,
.filter__nav a:hover,
.cat-nav__all:hover {
  background: transparent;
  color: var(--accent);
  border-left-color: rgba(225, 6, 0, 0.35);
}

.cat-nav__list li.active > a,
.filter__nav li.active > a,
.cat-nav__all.is-active {
  background: transparent;
  color: var(--accent);
  font-weight: 650;
  border-left-color: var(--accent);
}

.cat-nav__list li.active > a::before,
.filter__nav li.active > a::before {
  display: none;
}

.pagination-nav {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  position: relative;
  display: block;
  padding: 0.35rem 0.65rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--text);
  background-color: #fff;
  border: 1px solid #dee2e6;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.pagination .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination .page-link:hover {
  z-index: 2;
  color: var(--accent);
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.pagination .page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(225, 6, 0, 0.2);
}

.pagination .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
  cursor: default;
  pointer-events: none;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

/* Legacy product paginator shell still wraps create_links() */
.paginator {
  margin-top: 1.35rem;
}

.paginator__counter {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 575px) {
  .pagination .page-link {
    padding: 0.3rem 0.5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 991px) {
  .checkout-grid,
  .blog-layout,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-layout {
    gap: 1.25rem;
    min-width: 0;
    max-width: 100%;
  }

  /* Sticky yan menü tek sütunda içeriğin üstüne biner */
  .blog-layout__side {
    position: static;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .blog-layout__main {
    width: 100%;
    min-width: 0;
  }

  .cat-nav {
    min-width: 0;
    max-width: 100%;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  /* Chip şeridi: sayfa değil, bu kutu yatay kayar */
  .cat-nav__rail {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    border-left: 0;
    padding: 0 0 0.65rem;
    scrollbar-width: thin;
  }

  /* ul sarmalayıcısını kaldır ki li'ler rail flex çocuğu olsun */
  .cat-nav__list,
  .filter__nav {
    display: contents;
  }

  .cat-nav__list > li,
  .filter__nav > li {
    flex: 0 0 auto;
  }

  .cat-nav__list a,
  .filter__nav a,
  .cat-nav__all {
    flex: 0 0 auto;
    margin-left: 0;
    white-space: nowrap;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border);
    border-left: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    font-size: 0.88rem;
  }

  .cat-nav__list a:hover,
  .filter__nav a:hover,
  .cat-nav__all:hover {
    border-color: rgba(225, 6, 0, 0.35);
    border-left-color: rgba(225, 6, 0, 0.35);
  }

  .cat-nav__list li.active > a,
  .filter__nav li.active > a,
  .cat-nav__all.is-active {
    border-color: var(--accent);
    border-left-color: var(--accent);
    background: rgba(225, 6, 0, 0.06);
  }

  .meta-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .data-table thead {
    display: none;
  }

  .data-table tr {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .data-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    padding: 0.35rem 0;
  }

  .data-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
  }

  .data-table__total-label,
  .data-table__total-value {
    text-align: left;
  }
}

/* About — Bizimle Tanışın */
.about__hero {
  padding: 3rem 0 2.5rem;
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(225, 6, 0, 0.07), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.about__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.about__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
}

.about__lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
}

.about__values {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.about__value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about__value-list li {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.about__value-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.about__value-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.about__content {
  padding: 3.5rem 0 4.5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.about__prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

.about__prose p {
  margin: 0 0 1.25rem;
}

.about__prose p:last-child {
  margin-bottom: 0;
}

.about__prose h2,
.about__prose h3 {
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.about__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.about__quote {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #0f172a;
  color: #e2e8f0;
  box-shadow: var(--shadow);
}

.about__quote p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
}

.about__quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about__quote strong {
  color: #fff;
  font-size: 0.95rem;
}

.about__quote span {
  color: #94a3b8;
  font-size: 0.85rem;
}

.about__cta-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about__cta-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.about__cta-card p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  line-height: 1.5;
}

.about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@media (max-width: 991px) {
  .about__value-list,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__aside {
    position: static;
  }

  .about__title {
    max-width: none;
  }
}

/* 404 */
.page-shell--error {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

.error-404 {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.error-404__code {
  margin: 0;
  font-size: clamp(4.5rem, 14vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.error-404__title {
  margin: 0.85rem 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.error-404__lead {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

