/* Promera — logo renkleri (lacivert + şampanya altın), modern düzen */
:root {
  /* Logodan türetilen palet */
  --primary: #0a114f;
  --primary-soft: #121a5c;
  --primary-deep: #060a2e;
  --accent: #b5a57a;
  --accent-bright: #c9bc94;
  --accent-muted: rgba(181, 165, 122, 0.35);

  --bg: #f0f1f6;
  --bg-elevated: #fafbfc;
  --surface: #ffffff;
  --text: #12172c;
  --muted: #5c6278;
  --border: rgba(10, 17, 79, 0.09);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10, 17, 79, 0.07);
  --shadow-hover: 0 12px 40px rgba(10, 17, 79, 0.12);
  --max: 1120px;
  --header-h: 88px;
  --logo-bg-skew: -11deg;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% -30%, rgba(181, 165, 122, 0.06), transparent);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--primary-deep);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.main {
  flex: 1;
  padding-bottom: 3.5rem;
}

/* —— Header: tam genişlik lacivert; logo kutusu tam yükseklik beyaz —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-soft) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(6, 10, 46, 0.28);
  overflow-x: visible;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  overflow: visible;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

/*
 * Logo beyaz alanı: skewX → sol/sağ kenarlar birbirine paralel çapraz (paralelkenar).
 * Görsel ters skew ile düz kalır.
 */
.logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
  align-self: stretch;
  min-height: var(--header-h);
  background: #ffffff;
  padding: 0 clamp(1.15rem, 2.8vw, 1.9rem);
  transform: skewX(var(--logo-bg-skew));
  transform-origin: center center;
  box-shadow: 4px 0 18px rgba(10, 17, 79, 0.08);
}

.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 0;
}

.logo img {
  height: 58px;
  width: auto;
  max-width: min(280px, 58vw);
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: skewX(calc(-1 * var(--logo-bg-skew)));
}

@media (min-width: 900px) {
  .logo img {
    height: 64px;
    max-width: min(300px, 32vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .logo img {
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 80px;
    --logo-bg-skew: -9deg;
  }

  .logo {
    padding: 0 clamp(0.85rem, 3vw, 1.35rem);
  }

  .logo img {
    height: 50px;
    max-width: min(240px, 68vw);
  }
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.nav-toggle-label:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.25s ease, opacity 0.2s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked ~ .header-actions .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked ~ .header-actions .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked ~ .header-actions .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav a.is-active {
  color: var(--primary);
  background: #ffffff;
  border-color: transparent;
}

.nav a.is-active:hover {
  color: var(--primary-deep);
  background: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.lang-switcher {
  position: relative;
  margin-inline-end: 0.45rem;
}

.lang-switcher__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.5rem 0.32rem 0.42rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition);
  user-select: none;
}

.lang-switcher__summary::-webkit-details-marker {
  display: none;
}

.lang-switcher__summary::marker {
  content: "";
}

.lang-switcher__summary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.lang-switcher[open] .lang-switcher__summary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.lang-switcher[open] .lang-switcher__caret {
  transform: rotate(180deg);
}

.lang-switcher__flag {
  display: flex;
  align-items: center;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.lang-switcher__flag img {
  display: block;
  width: 26px;
  height: auto;
  vertical-align: middle;
}

.lang-switcher__code {
  min-width: 1.5rem;
}

.lang-switcher__caret {
  display: block;
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity var(--transition);
}

.lang-switcher__panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 50;
  min-width: 11.5rem;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background var(--transition);
}

.lang-switcher__option:hover {
  background: var(--bg-elevated);
}

.lang-switcher__option.is-active {
  background: rgba(0, 0, 0, 0.04);
  cursor: default;
  pointer-events: none;
}

.lang-switcher__label {
  flex: 1;
}

.lang-switcher__check {
  display: flex;
  color: var(--accent);
  flex-shrink: 0;
}

.header-search {
  position: relative;
}

.header-search__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  transition: background var(--transition), border-color var(--transition);
}

.header-search__summary::-webkit-details-marker {
  display: none;
}

.header-search__summary::marker {
  content: "";
}

.header-search__summary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-search[open] .header-search__summary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.header-search__icon {
  display: block;
  pointer-events: none;
}

.header-search__panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(100vw - 2rem, 360px);
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.header-search__form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.header-search__input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-elevated);
}

.header-search__input::placeholder {
  color: var(--muted);
}

.header-search__input:focus {
  outline: 2px solid var(--accent-muted);
  outline-offset: 0;
  border-color: transparent;
}

.header-search__submit {
  padding: 0.55rem 1rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}

.header-search__submit:hover {
  background: var(--primary-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
    position: relative;
    z-index: 2;
    align-self: center;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    z-index: 10;
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--primary-deep) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-toggle:checked ~ .nav {
    max-height: 380px;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
  }

  .nav a {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
  }
}

/* Anasayfa tam genişlik slayt */
.hero-slider {
  --slide-count: 1;
  position: relative;
  width: 100%;
  margin-bottom: 2.75rem;
}

.hero-slider__viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--primary-deep);
}

.hero-slider__track {
  display: flex;
  width: calc(var(--slide-count) * 100%);
  transition: transform 0.58s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slider__slide {
  position: relative;
  flex: 0 0 calc(100% / var(--slide-count));
  min-height: min(58vh, 520px);
  max-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 46, 0.15) 0%,
    rgba(6, 10, 46, 0.55) 55%,
    rgba(6, 10, 46, 0.82) 100%
  );
  pointer-events: none;
}

.hero-slider__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.25rem 3rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-slider__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  max-width: 18ch;
}

.hero-slider__subtitle {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 36em;
  line-height: 1.55;
}

.hero-slider__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.hero-slider__cta:hover {
  color: var(--primary-deep);
  background: #fafbff;
  border-color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-slider__cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.hero-slider__prev,
.hero-slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider__prev:hover,
.hero-slider__next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

/* Görünüm alanının sol/sağ kenarı (içerik genişliğine göre değil) */
.hero-slider__prev {
  left: max(10px, env(safe-area-inset-left, 0px));
}

.hero-slider__next {
  right: max(10px, env(safe-area-inset-right, 0px));
}

@media (max-width: 768px) {
  .hero-slider__prev,
  .hero-slider__next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hero-slider__prev {
    left: max(8px, env(safe-area-inset-left, 0px));
  }

  .hero-slider__next {
    right: max(8px, env(safe-area-inset-right, 0px));
  }
}

.hero-slider__dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero-slider__dot.is-active {
  background: var(--primary);
  border: 1px solid #ffffff;
  transform: scale(1.25);
  box-shadow: 0 0 0 1px rgba(10, 17, 79, 0.35);
}

.home-section {
  padding-top: 0.25rem;
}

.home-section + .home-section {
  margin-top: 2.75rem;
}

.home-more {
  margin-top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__track {
    transition: none;
  }
}

.section-title {
  margin: 0 0 1.35rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.page-head {
  padding: 2.25rem 0 1.75rem;
  margin-bottom: 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.page-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-bright));
  border-radius: 0 4px 4px 0;
}

.page-head .wrap {
  padding-left: calc(1.25rem + 8px);
}

.page-head h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.page-head p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  font-size: 1rem;
}

/* Kategori / alt kategori giriş açıklaması — tek satır (dar ekranda yatay kaydırma) */
.page-head .page-head__desc {
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 1.35rem;
}

.card-grid--categories .card-img {
  aspect-ratio: 1 / 1;
}

.card-grid--categories {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.15rem;
}

.card-grid--categories .card {
  border-radius: 18px;
  border-color: rgba(10, 17, 79, 0.1);
}

.card-grid--categories .card:hover {
  transform: translateY(-6px);
  border: 1px solid var(--primary);
}

.card-grid--categories .card-link {
  display: flex;
  flex-direction: column;
}

.card-grid--categories .card-img {
  position: relative;
}

.card-code-badge {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 17, 79, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(1px);
}

.card-grid--categories .card-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(10, 17, 79, 0) 0%, rgba(10, 17, 79, 0.16) 100%);
  pointer-events: none;
}

.card-grid--categories .card-body {
  padding: 0.8rem 1rem 1rem;
  text-align: center;
}

.card-grid--categories .card-body h2,
.card-grid--categories .card-body h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.card-grid--categories .card-body p {
  min-height: 2.8em;
  margin-bottom: 0.7rem;
}

.category-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.category-card__cta::after {
  content: "->";
  font-size: 0.82rem;
  opacity: 0.8;
}

.category-page--modern .category-page__head {
  position: relative;
  padding: 1.15rem 1.2rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.92));
  box-shadow: 0 10px 30px rgba(10, 17, 79, 0.08);
}

.category-page__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 17, 79, 0.62);
}

.category-page__count {
  margin: 0.8rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(10, 17, 79, 0.68);
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-muted);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.card-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--bg) 0%, #e8eaf2 100%);
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.card:hover .card-img img {
  transform: scale(1.03);
}

.card-body {
  padding: 1.2rem 1.35rem 1.45rem;
}

.card-meta {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.card-body h2,
.card-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.meta {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-sku {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

/* Product detail */
.product-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-page {
  padding: 1.5rem 0 3rem;
  background: var(--bg);
}

.category-page {
  padding: 1.5rem 0 1.25rem;
  background: var(--bg);
}

.category-page__head {
  margin: 0;
}

.category-page__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.category-page__lead {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.6;
}

.category-page__head--direct-products {
  margin-top: 2.25rem;
  /* Üstteki başlık–kart boşluğuna denk: margin çöküşü olmaması için padding */
  padding-bottom: 2rem;
}

.category-page__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.search-page-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
  max-width: 520px;
  margin-top: 0.5rem;
}

.search-page-form__input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
}

.search-page-form__btn {
  padding: 0.65rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.search-page-form__btn:hover {
  background: var(--primary-soft);
}

.search-results {
  padding-bottom: 2rem;
}

.search-results__meta {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
}

.search-results__hint {
  color: var(--muted);
  margin: 0;
}

.search-results__section {
  margin-bottom: 2rem;
}

.search-results__heading {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.search-results__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results__list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.search-results__link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.search-results__link:hover {
  text-decoration: underline;
}

.search-results__excerpt {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.search-results__sku {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.listing-toolbar__count {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.listing-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.listing-toolbar__label {
  font-size: 0.82rem;
  color: var(--muted);
}

.listing-toolbar__select {
  font: inherit;
  font-size: 0.84rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 0.36rem 0.55rem;
}

@media (max-width: 640px) {
  .listing-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.listing-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.listing-inline__count {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
}

.listing-inline__label {
  font-size: 0.82rem;
  color: var(--muted);
}

.listing-inline__select {
  font: inherit;
  font-size: 0.84rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 0.32rem 0.5rem;
}

@media (max-width: 760px) {
  .category-page__topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-inline {
    margin-left: 0;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.breadcrumb__sep {
  color: var(--muted);
  user-select: none;
}

.breadcrumb__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__item--current .breadcrumb__text {
  color: var(--text);
  font-weight: 600;
}

.product-detail {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 2.5rem 3rem;
  }
}

.product-detail__media {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.product-detail__media--single .product-detail__figure {
  width: 100%;
}

.product-detail__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
  max-height: min(420px, 55vh);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.15rem;
  scrollbar-width: thin;
}

.product-detail__thumb {
  padding: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  flex-shrink: 0;
}

.product-detail__thumb:hover {
  border-color: rgba(10, 17, 79, 0.35);
}

.product-detail__thumb.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(10, 17, 79, 0.12);
}

.product-detail__thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}

.product-detail__viewer {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  outline: none;
}

.product-detail__viewer:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.product-detail__stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-detail__figure {
  margin: 0;
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  border: none;
  background: var(--bg-elevated);
}

.product-detail__main-img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.lightbox__panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox__img {
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.5);
}

.product-detail__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(10, 17, 79, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10, 17, 79, 0.12);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.product-detail__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.product-detail__nav--prev {
  left: 0.65rem;
}

.product-detail__nav--next {
  right: 0.65rem;
}

.product-detail__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-detail__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(10, 17, 79, 0.12);
  border-radius: 50%;
  background: rgba(10, 17, 79, 0.15);
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.product-detail__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.15);
}

@media (max-width: 899px) {
  .product-detail__media {
    flex-direction: column;
  }

  .product-detail__thumbs {
    flex-direction: row;
    flex-wrap: wrap;
    max-height: none;
    overflow: visible;
    justify-content: center;
  }

  .product-detail__nav {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.35rem;
  }
}

.product-detail__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-detail__excerpt {
  margin: -0.35rem 0 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--muted);
}

.product-spec {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.product-spec__row {
  display: grid;
  grid-template-columns: minmax(7rem, 32%) 1fr;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.product-spec__row:last-child {
  border-bottom: 0;
}

.product-spec__dt {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.product-spec__dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.product-spec__dd--price {
  font-weight: 600;
  color: var(--primary);
}

.product-features {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}

.product-features li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0.34rem 0 0.34rem 0.92rem;
  color: rgba(18, 23, 44, 0.92);
  font-size: 0.92rem;
  line-height: 1.38;
  letter-spacing: 0.005em;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.18rem;
  height: calc(100% - 0.96rem);
  border-radius: 999px;
  background: rgba(10, 17, 79, 0.26);
}

.product-variants {
  margin: 0 0 1rem;
  border: 1px solid rgba(10, 17, 79, 0.08);
  border-radius: 10px;
  background: rgba(250, 251, 255, 0.72);
  padding: 0.58rem 0.68rem;
}

.product-variants__title {
  margin: 0 0 0.42rem;
  font-size: 0.79rem;
  color: rgba(10, 17, 79, 0.78);
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.product-variants__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-variants__list li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.28rem 0.58rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(10, 17, 79, 0.14);
  color: rgba(10, 17, 79, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.variant-swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--swatch, #9ca3af);
  border: 1px solid rgba(10, 17, 79, 0.18);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) inset;
  margin-right: 0.4rem;
  flex: 0 0 auto;
}

.variant-text {
  display: inline-flex;
  align-items: center;
}

.product-variants__list li:hover {
  border-color: rgba(10, 17, 79, 0.24);
  background: rgba(10, 17, 79, 0.03);
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
  flex: 1 1 auto;
  min-width: min(100%, 200px);
}

.product-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 17, 79, 0.12);
}

.product-cta__btn--phone {
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.product-cta__btn--phone:hover {
  color: var(--primary-deep);
  background: #fafbff;
  border-color: var(--primary-deep);
}

.product-cta__btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.product-cta__btn--whatsapp:hover {
  color: #fff;
}

.product-cta__icon {
  flex-shrink: 0;
}

.product-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
}

.product-share__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.product-share__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.product-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--primary);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.product-share__link:hover {
  background: var(--surface);
  border-color: var(--primary);
}

.product-share__link img {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  filter: brightness(0) saturate(100%) invert(11%) sepia(30%) saturate(2500%) hue-rotate(210deg);
  opacity: 0.85;
}

.product-detail__prose {
  max-width: none;
  padding-top: 0.25rem;
}

.product-related {
  margin-top: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.product-related__title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.card-body .card-product-title {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.product-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.prose {
  max-width: 65ch;
}

/* Tam genişlik içerik (wrap ile aynı; ürün sayfasındaki dar okuma sütununu etkilemez) */
.prose.prose--full {
  max-width: none;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text);
}

.prose p:last-child {
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--accent);
}

/* Referanslar — logo ızgarası */
.ref-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .ref-logos {
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 1rem;
  }
}

.ref-logos__item {
  margin: 0;
}

.ref-logos__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.45rem 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ref-logos__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-muted);
}

.ref-logos__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(168px, 100%);
  max-height: 84px;
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  filter: grayscale(0.15);
  transition: opacity var(--transition), filter var(--transition);
}

.ref-logos__card:hover .ref-logos__img {
  opacity: 1;
  filter: grayscale(0);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.35rem;
}

.contact-block {
  background: var(--surface);
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: border-color var(--transition);
}

.contact-block:hover {
  border-color: var(--accent-muted);
}

.contact-block h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-heading__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.92;
}

.contact-heading__icon svg {
  display: block;
}

.contact-block p,
.contact-block a {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.contact-block a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-muted);
  transition: color var(--transition), border-color var(--transition);
}

.contact-block a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.notice {
  background: linear-gradient(135deg, rgba(10, 17, 79, 0.04), rgba(181, 165, 122, 0.08));
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  color: var(--text);
}

.contact-flash {
  margin-bottom: 1.5rem;
}

.contact-flash--ok {
  border-color: rgba(181, 165, 122, 0.45);
  background: linear-gradient(135deg, rgba(181, 165, 122, 0.12), rgba(10, 17, 79, 0.04));
}

.contact-flash--err {
  border-color: rgba(180, 60, 60, 0.35);
  background: linear-gradient(135deg, rgba(180, 60, 60, 0.06), rgba(10, 17, 79, 0.03));
}

.contact-grid--top {
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .contact-grid--top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 520px) and (max-width: 899px) {
  .contact-grid--top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid--top .contact-block:nth-child(3) {
    grid-column: 1 / -1;
  }
}

.contact-block__body {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-block__phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.35rem 0 0;
}

.contact-block__phones .contact-block__phone {
  margin: 0;
  white-space: nowrap;
}

.contact-form-map {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-form-map {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .contact-form.contact-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .contact-map.contact-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .contact-map__frame {
    flex: 1 1 auto;
    min-height: 280px;
    aspect-ratio: unset;
  }

  .form-field--message {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 1rem;
  }

  .form-field--message .form-field__textarea {
    flex: 1 1 auto;
    min-height: 140px;
  }

  .form-submit {
    margin-top: auto;
  }
}

.contact-form__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-form__hint {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.form-field {
  display: block;
  margin-bottom: 1.1rem;
}

.form-field__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-field__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.form-field__textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.form-submit {
  margin-top: 0.25rem;
  padding: 0.7rem 1.75rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(10, 17, 79, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  background: var(--primary-soft);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 22px rgba(10, 17, 79, 0.28);
}

.form-submit:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.contact-map__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-map__frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 11;
  min-height: 280px;
  background: var(--bg);
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 2.25rem 0 0;
  background: linear-gradient(180deg, var(--primary-deep) 0%, #040616 100%);
  border-top: 1px solid rgba(181, 165, 122, 0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  padding-bottom: 2rem;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, auto);
    gap: 2.5rem;
    text-align: left;
    align-items: start;
  }

  .footer-branding {
    text-align: left;
  }

  .footer-social {
    justify-self: end;
    text-align: right;
  }

  .footer-social .footer-social-list {
    justify-content: flex-end;
  }
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  margin: 0 0 0.75rem;
  line-height: 0;
  text-decoration: none;
}

.footer-logo:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-logo img {
  height: 76px;
  width: auto;
  max-width: min(340px, 85vw);
  display: block;
  object-fit: contain;
}

@media (min-width: 720px) {
  .footer-logo img {
    height: 86px;
    max-width: min(360px, 100%);
  }
}

.footer-address {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 22rem;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .footer-address {
    margin-inline: 0;
  }
}

.footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  max-width: 28rem;
  margin-inline: auto;
}

@media (min-width: 720px) {
  .footer-tagline {
    margin-inline: 0;
  }
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-heading--phones {
  margin-top: 1.35rem;
}

.footer-phones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a,
.footer-phones a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  font-weight: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-phones a:hover,
.footer-phones a:focus-visible {
  color: var(--accent-bright);
}

.footer-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(181, 165, 122, 0.35);
  transform: translateY(-1px);
}

.footer-social-link img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-social-link:hover img,
.footer-social-link:focus-visible img {
  opacity: 1;
}

.footer-bottom {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-credit__text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-credit__logo {
  height: 16px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity 0.15s ease;
}

.footer-credit:hover .footer-credit__logo,
.footer-credit:focus-visible .footer-credit__logo {
  opacity: 1;
}

/* Sabit WhatsApp (sağ alt) */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 4px 14px rgba(15, 40, 25, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(15, 40, 25, 0.55);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 3px;
}

.whatsapp-float__icon {
  display: block;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float:hover {
    transform: none;
  }
}

.empty-state {
  padding: 2.25rem;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
