/* EvoShield — Tailwind ile birlikte: özel animasyonlar & ek stiller */

.text-gradient {
  background: linear-gradient(90deg, #ff2a20, #e10600, #b00500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* Hero scroll çizgisi */
@keyframes pulse-line {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.hero-scroll-line {
  animation: pulse-line 2s ease-in-out infinite;
}

/* Ortak sayfa hizası — max 1400px + tutarlı yatay boşluk */
.site-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

@media (min-width: 1024px) {
  .site-container {
    padding-inline: 5rem;
  }
}

.section-y {
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .section-y {
    padding-block: 7rem;
  }
}

/* ========== Bayiler — Olex tarzı layout ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dealer-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
}

.dealer-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .dealer-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.dealer-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.dealer-city-select__input {
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.65rem 2.25rem 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1rem;
}

.dealer-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.dealer-header__link:hover {
  color: #e10600;
}

.dealer-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Harita + slider — yan yana, bindirme yok */
.dealer-stage {
  display: grid;
  grid-template-columns: minmax(220px, 30%) 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

@media (max-width: 1023px) {
  .dealer-stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.dealer-map-visual {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: radial-gradient(ellipse 90% 80% at 50% 55%, rgba(225, 6, 0, 0.12) 0%, rgba(12, 12, 12, 0.6) 55%, transparent 100%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .dealer-map-visual {
    margin: 0;
    max-width: none;
  }
}

.dealer-map-glow {
  display: none;
}

.dealer-map {
  position: relative;
  line-height: 0;
  pointer-events: auto;
}

.dealer-map__object {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.dealer-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border: none;
  border-radius: 50%;
  background: #e10600;
  box-shadow: 0 0 0 2px #fff, 0 0 14px rgba(225, 6, 0, 0.65);
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dealer-pin::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 0, 0.35);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s, transform 0.35s;
}

.dealer-pin.is-active {
  transform: scale(1.15);
  box-shadow: 0 0 0 3px #fff, 0 0 0 7px rgba(225, 6, 0, 0.35), 0 0 28px rgba(225, 6, 0, 0.75);
}

.dealer-pin.is-active::before {
  opacity: 1;
  transform: scale(1);
  animation: dealer-pin-pulse 2s ease-out infinite;
}

@keyframes dealer-pin-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.65);
    opacity: 0;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.dealer-slider-wrap {
  min-width: 0;
  position: relative;
}

/* Slider — 2.7 kart */
.dealer-slider {
  position: relative;
  outline: none;
  --visible: 2.7;
  --gap: 1.25rem;
}

@media (max-width: 1023px) {
  .dealer-slider {
    --visible: 1.35;
  }
}

@media (max-width: 639px) {
  .dealer-slider {
    --visible: 1.05;
  }
}

.dealer-slider__viewport {
  overflow: hidden;
  padding: 0.5rem 0;
}

.dealer-slider__track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
}

.dealer-slider__track.is-css-slide {
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.dealer-slide[hidden],
.dealer-slide.dealer-slide--hidden {
  display: none !important;
}

.dealer-pin[hidden] {
  display: none !important;
}

.dealer-slide {
  flex: 0 0 calc((100% - var(--gap) * (var(--visible) - 1)) / var(--visible));
  min-width: 0;
  background: linear-gradient(145deg, rgba(30, 8, 8, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
  border: 1px solid rgba(225, 6, 0, 0.2);
  border-radius: 1.25rem;
  padding: 1.35rem 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dealer-slide.is-active {
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 8px 40px rgba(225, 6, 0, 0.15);
}

.dealer-slide__badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.85rem;
}

.dealer-slide__badge--brand {
  background: rgba(225, 6, 0, 0.2);
  color: #ff4a40;
}

.dealer-slide__badge:not(.dealer-slide__badge--brand) {
  background: rgba(225, 6, 0, 0.12);
  color: #ff6a65;
}

.dealer-slide__head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.dealer-slide__flag {
  font-size: 1.75rem;
  line-height: 1;
}

.dealer-slide__name {
  font-family: Syne, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.25rem;
}

.dealer-slide__loc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.dealer-slide__meta {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.8rem;
}

.dealer-slide__meta div {
  margin-bottom: 0.65rem;
}

.dealer-slide__meta dt {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.dealer-slide__meta dd {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.45;
}

.dealer-slide__meta a {
  color: inherit;
  text-decoration: none;
}

.dealer-slide__meta a:hover {
  color: #e10600;
}

.dealer-slide__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.dealer-slide__btn {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.55rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.dealer-slide__btn:hover {
  border-color: #e10600;
  background: rgba(225, 6, 0, 0.1);
}

.dealer-slide__btn--primary {
  background: #e10600;
  border-color: #e10600;
  color: #fff;
}

.dealer-slide__btn--primary:hover {
  background: #ff2a20;
  border-color: #ff2a20;
}

.dealer-slide__ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, border-color 0.2s;
}

.dealer-slide__ig:hover {
  color: #e10600;
  border-color: #e10600;
}

.dealer-slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

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

.dealer-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}

.dealer-slider__dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.dealer-slider__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #e10600;
  transform: none;
}

.dealer-slider__counter {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  min-width: 3rem;
  text-align: center;
}

.dealer-slider__counter-current {
  color: #fff;
}

.dealer-slider__counter-sep {
  margin: 0 0.15rem;
  opacity: 0.4;
}

@media (prefers-reduced-motion: reduce) {
  .dealer-slider__track {
    transition: none;
  }

  .dealer-pin.is-active::before {
    animation: none;
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* ========== Yetkili bayiler sayfası — hero harita ========== */
.dealers-page-hero__map {
  position: absolute;
  inset: -5% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.dealers-page-hero__map-object {
  display: block;
  width: min(1100px, 118vw);
  height: auto;
  max-height: 92%;
  object-fit: contain;
  opacity: 1;
  filter:
    drop-shadow(0 0 100px rgba(225, 6, 0, 0.45))
    drop-shadow(0 0 24px rgba(225, 6, 0, 0.25))
    brightness(1.85)
    contrast(1.35)
    saturate(1.15);
}

.dealers-page-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

@media (min-width: 1024px) {
  .dealers-page-hero__map-object {
    width: min(980px, 85vw);
    max-height: 95%;
  }
}

@media (max-width: 767px) {
  .dealers-page-hero__map-object {
    width: 140vw;
    max-width: none;
    opacity: 0.75;
  }

  .dealers-page-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.35) 0%,
      rgba(10, 10, 10, 0.72) 55%,
      rgba(10, 10, 10, 0.95) 100%
    );
  }
}

.dealer-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* ========== Bayiler — grid sayfası (4 sütun) ========== */

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

@media (max-width: 1279px) {
  .dealer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 639px) {
  .dealer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.dealer-card {
  background: linear-gradient(145deg, rgba(30, 8, 8, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
  border: 1px solid rgba(225, 6, 0, 0.2);
  border-radius: 1.25rem;
  padding: 1.35rem 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.dealer-card:hover {
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: 0 8px 32px rgba(225, 6, 0, 0.12);
  transform: translateY(-2px);
}

.dealer-card[hidden],
.dealer-card.dealer-card--hidden {
  display: none !important;
}

.dealer-card .dealer-slide__head {
  margin-bottom: 1rem;
}

.dealer-card .dealer-slide__meta {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.8rem;
}

.dealer-card .dealer-slide__actions {
  margin-top: auto;
}

.dealer-grid__empty {
  margin: 2.5rem 0 0;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Lenis */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* ========== Bottom navigation ========== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 10px 10px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}

.bottom-nav__bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 520px;
  margin: 0 auto;
  min-height: 60px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 2px;
}

.bottom-nav-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding: 4px 1px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item .nav-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}

.bottom-nav-item .nav-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.bottom-nav-item .nav-label {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 380px) {
  .bottom-nav-item .nav-label {
    font-size: 10px;
  }
}

.bottom-nav-item.is-active {
  color: #e10600;
}

.bottom-nav-item.is-active .nav-icon-wrap {
  background: rgba(225, 6, 0, 0.12);
}

.bottom-nav-item:active {
  opacity: 0.85;
}

/* ========== Site header (kompakt nav) ========== */
#header.site-header .site-container {
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  #header.site-header .site-container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1280px) {
  #header.site-header .site-container {
    padding-inline: 3rem;
  }
}

.site-header__nav {
  gap: 0.65rem;
}

@media (min-width: 1280px) {
  .site-header__nav {
    gap: 1.1rem;
  }
}

@media (min-width: 1536px) {
  .site-header__nav {
    gap: 1.35rem;
  }
}

.site-header__link {
  font-size: 0.8125rem;
  line-height: 1.2;
}

@media (min-width: 1280px) {
  .site-header__link {
    font-size: 0.875rem;
  }
}

.site-header__nav .nav-dropdown__btn {
  font-size: 0.8125rem;
}

@media (min-width: 1280px) {
  .site-header__nav .nav-dropdown__btn {
    font-size: 0.875rem;
  }
}

.site-header__cta {
  padding-inline: 1rem !important;
  padding-block: 0.45rem !important;
  font-size: 0.75rem !important;
}

@media (min-width: 1280px) {
  .site-header__cta {
    padding-inline: 1.25rem !important;
    padding-block: 0.5rem !important;
    font-size: 0.8125rem !important;
  }
}

.lang-switcher--compact {
  gap: 0.1rem;
  padding: 0.15rem;
}

.lang-switcher--compact .lang-switcher__btn {
  min-width: 1.85rem;
  padding: 0.28rem 0.35rem;
  font-size: 0.625rem;
}

@media (min-width: 1280px) {
  .lang-switcher--compact .lang-switcher__btn {
    min-width: 2.1rem;
    padding: 0.32rem 0.45rem;
    font-size: 0.6875rem;
  }
}

/* ========== Masaüstü nav dropdown ========== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s;
}

.nav-dropdown:hover .nav-dropdown__btn,
.nav-dropdown.is-open .nav-dropdown__btn,
.nav-dropdown__btn.nav-active {
  color: #e10600;
}

.nav-dropdown__chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__panel {
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
  overflow: hidden;
}

.nav-dropdown__panel a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown__panel a:hover {
  background: #f5f5f5;
  color: #e10600;
}

.nav-dropdown__panel a.is-current {
  color: #e10600;
  font-weight: 600;
  background: rgba(225, 6, 0, 0.06);
}

/* Ürün kartı (liste) */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-link:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-img-wrap {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Seri kartı */
.series-card {
  border-left: 3px solid #e10600;
}

/* Ürün panelleri — üst üste sticky stack */
#products-pin {
  position: relative;
}

.product-panel {
  will-change: transform, opacity;
}

.product-panel:nth-child(1) {
  z-index: 1;
}

.product-panel:nth-child(2) {
  z-index: 2;
}

.product-panel:nth-child(3) {
  z-index: 3;
}

@media (max-width: 1023px) {
  .product-panel {
    height: 100svh;
    max-height: 100svh;
    overflow: hidden;
  }

  .product-panel .section-pad {
    max-height: 100svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ========== Garanti sorgulama (koyu tema / CI3) ========== */
.garanti-query-section__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  transform: translate(-50%, -48%);
  border-radius: 50%;
  border: 1px solid rgba(225, 6, 0, 0.12);
  background: radial-gradient(circle, rgba(225, 6, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.garanti-query-card {
  position: relative;
  padding: 0.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 60px rgba(225, 6, 0, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.garanti-query-card:focus-within {
  border-color: rgba(225, 6, 0, 0.35);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(225, 6, 0, 0.15) inset,
    0 0 80px rgba(225, 6, 0, 0.12);
}

.garanti-query__form {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.65);
  overflow: hidden;
}

.garanti-query__field {
  display: flex;
  align-items: center;
  min-height: 56px;
}

.garanti-query__field--select {
  flex: 0 0 auto;
}

.garanti-query__field--input {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.garanti-query__divider {
  flex: 0 0 1px;
  align-self: stretch;
  margin: 0.75rem 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.12) 20%,
    rgba(255, 255, 255, 0.12) 80%,
    transparent
  );
}

.garanti-query__icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.garanti-query__select,
.garanti-query__input {
  font-family: inherit;
  font-size: 0.9375rem;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.garanti-query__select {
  min-width: 8.5rem;
  padding: 0 2.25rem 0 1.15rem;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 0.9rem;
  transition: color 0.2s;
}

.garanti-query__select:hover {
  color: #fff;
}

.garanti-query__input {
  width: 100%;
  padding: 0 1rem 0 0.65rem;
}

.garanti-query__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.garanti-query__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.35rem;
  padding: 0 1.35rem;
  min-height: 44px;
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #e10600 0%, #c00500 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(225, 6, 0, 0.35);
}

.garanti-query__submit svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.garanti-query__submit:hover {
  background: linear-gradient(135deg, #ff2a20 0%, #e10600 100%);
  box-shadow: 0 6px 20px rgba(225, 6, 0, 0.45);
  transform: translateY(-1px);
}

.garanti-query__submit:hover svg {
  transform: translateX(2px);
}

.garanti-query__submit:active {
  transform: translateY(0);
}

.garanti-sonuc {
  max-width: 100%;
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.9375rem;
  text-align: left;
  backdrop-filter: blur(12px);
}

.garanti-sonuc--info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.garanti-sonuc--error {
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: #ff8a85;
}

.garanti-sonuc--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.garanti-sonuc__link {
  display: inline-block;
  margin-left: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.garanti-sonuc__link:hover {
  color: #ff6b66;
}

@media (max-width: 639px) {
  .garanti-query-card {
    padding: 0.65rem;
    border-radius: 1.125rem;
  }

  .garanti-query__form {
    flex-direction: column;
    gap: 0.5rem;
    background: transparent;
    overflow: visible;
  }

  .garanti-query__field {
    min-height: 52px;
    border-radius: 0.875rem;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .garanti-query__divider {
    display: none;
  }

  .garanti-query__submit {
    width: 100%;
    margin: 0;
    min-height: 52px;
    border-radius: 0.875rem;
  }
}

/* ========== İletişim & bayilik formları ========== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.contact-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(30, 8, 8, 0.6) 0%, rgba(18, 18, 18, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  border-color: rgba(225, 6, 0, 0.35);
  box-shadow: 0 8px 32px rgba(225, 6, 0, 0.1);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(225, 6, 0, 0.15);
  color: #e10600;
}

.contact-card__title {
  font-family: Syne, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.contact-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.contact-card__text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card__text a:hover {
  color: #e10600;
}

.page-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 1023px) {
  .page-form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.page-form-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.page-form-card:focus-within {
  border-color: rgba(225, 6, 0, 0.3);
}

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

.page-form__field--full {
  grid-column: 1 / -1;
}

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

.page-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
}

.page-form__input,
.page-form__select,
.page-form__textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #fff;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-form__input:focus,
.page-form__select:focus,
.page-form__textarea:focus {
  border-color: rgba(225, 6, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.12);
}

.page-form__input::placeholder,
.page-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.page-form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 0.9rem;
  padding-right: 2.5rem;
}

.page-form__textarea {
  min-height: 8rem;
  resize: vertical;
}

.page-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.page-form__check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.page-form__check input {
  accent-color: #e10600;
  width: 1rem;
  height: 1rem;
}

.page-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #e10600 0%, #c00500 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(225, 6, 0, 0.35);
}

.page-form__submit:hover {
  background: linear-gradient(135deg, #ff2a20 0%, #e10600 100%);
  box-shadow: 0 6px 20px rgba(225, 6, 0, 0.45);
  transform: translateY(-1px);
}

.form-feedback {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.9375rem;
}

.form-feedback--info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.form-feedback--error {
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: #ff8a85;
}

.form-feedback--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.map-embed {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) contrast(1.1) brightness(0.75);
}

/* ========== Dil seçici ========== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switcher__btn {
  min-width: 2.25rem;
  padding: 0.35rem 0.5rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switcher__btn:hover {
  color: #fff;
}

.lang-switcher__btn.is-active {
  background: #e10600;
  color: #fff;
}

/* ========== Dijital garanti kartı ========== */
.warranty-card-page {
  min-height: 100vh;
}

.warranty-card-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.warranty-card-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.warranty-card {
  width: 100%;
  max-width: 420px;
  border-radius: 1.35rem;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0808 0%, #0f0f0f 45%, #141414 100%);
  border: 1px solid rgba(225, 6, 0, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(225, 6, 0, 0.12);
}

.warranty-card__stripe {
  height: 6px;
  background: linear-gradient(90deg, #b00500, #e10600, #ff2a20, #e10600);
}

.warranty-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem 0.75rem;
}

.warranty-card__logo {
  height: 2rem;
  width: auto;
}

.warranty-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e10600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 6, 0, 0.4);
  background: rgba(225, 6, 0, 0.1);
}

.warranty-card__no-block {
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.warranty-card__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}

.warranty-card__no {
  font-family: Syne, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0;
}

.warranty-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.5rem;
  margin: 0;
}

.warranty-card__grid--full {
  grid-column: 1 / -1;
}

.warranty-card__grid dt {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.25rem;
}

.warranty-card__grid dd {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.warranty-card__status {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 600;
}

.warranty-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem 1.35rem;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.warranty-card__verify {
  flex: 1;
  min-width: 0;
}

.warranty-card__url {
  margin: 0;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  word-break: break-all;
  line-height: 1.45;
}

.warranty-card__qr {
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: #fff;
  padding: 4px;
}

.warranty-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media print {
  body {
    background: #fff !important;
    color: #000 !important;
  }

  #header,
  .no-print,
  footer {
    display: none !important;
  }

  .warranty-card-page {
    padding: 0 !important;
  }

  .warranty-card {
    max-width: 100%;
    box-shadow: none;
    border: 2px solid #ccc;
  }

  .warranty-card__stripe {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

