/* Matba – ortak stiller */
:root {
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --primary: #00b2e3;
  --primary-dark: #006684;
  --express: #f39200;
  --border: #e2e8f0;
  --muted: #64748b;
  --text: #0d1c2f;
  --bg: #f8fafc;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  /* Genel arayüz ölçeği — tarayıcı %110 zoom etkisi (yazı, banner, ikon, boşluk) */
  --site-scale: 1.1;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: clip;
  zoom: var(--site-scale);
}

@supports not (zoom: 1) {
  html {
    font-size: 110%;
  }
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: var(--fw-regular);
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #f59e0b;
  line-height: 1;
  letter-spacing: -0.5px;
}
.rating-stars .star--empty {
  color: #cbd5e1;
}
.rating-stars .star--half {
  background: linear-gradient(90deg, #f59e0b 50%, #cbd5e1 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Marquee – üst kurumsal duyuru şeridi */
.marquee-bar {
  background: linear-gradient(180deg, #f3fbfe 0%, #eaf7fc 100%);
  border-bottom: 1px solid rgba(0, 178, 227, 0.18);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-speed, 32s) linear infinite;
  gap: 2.75rem;
  white-space: nowrap;
  padding-left: 1rem;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #334155;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.15s ease;
}
a.marquee-item:hover {
  color: #006684;
}
.marquee-item-icon {
  font-size: 16px;
  color: #00b2e3;
  flex-shrink: 0;
}
.marquee-item-text {
  line-height: 1.2;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 0.65rem 1.25rem;
    padding: 0.35rem 0.75rem;
    white-space: normal;
  }
  .marquee-bar {
    height: auto;
    min-height: 40px;
  }
}

/* Trust bar – masaüstü 5 kolon, mobil otomatik kayan şerit */
.trust-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.1rem 0.75rem;
  border-right: 1px solid var(--border);
  min-height: 72px;
}
.trust-item:nth-child(5) { border-right: none; }
.trust-item.is-clone { display: none; }
.trust-item .material-symbols-outlined {
  color: #00b2e3;
  font-size: 28px;
}
.trust-item p { margin: 0; line-height: 1.25; }
.trust-item .label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0084ad;
}
.trust-item .value {
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}

@media (max-width: 900px) {
  .trust-bar {
    border-radius: 12px;
    padding: 0.55rem 0;
  }
  .trust-track {
    display: flex;
    width: max-content;
    animation: trustMarquee 22s linear infinite;
  }
  .trust-item,
  .trust-item.is-clone {
    display: flex;
    flex: 0 0 auto;
    min-height: 0;
    width: auto;
    gap: 0.5rem;
    padding: 0.35rem 1.15rem;
    border-right: 0;
    border-left: 1px solid #eef2f7;
    align-items: center;
    justify-content: flex-start;
  }
  .trust-item:first-child,
  .trust-item.is-clone:nth-child(6) {
    border-left: 0;
  }
  .trust-item .material-symbols-outlined {
    font-size: 22px;
    flex-shrink: 0;
    color: #00b2e3;
  }
  .trust-item .label {
    font-size: 10px;
    white-space: nowrap;
    color: #0084ad;
  }
  .trust-item .value {
    font-size: 12px;
    color: #0f172a;
    white-space: nowrap;
  }
  .trust-bar:hover .trust-track {
    animation-play-state: paused;
  }
}

@keyframes trustMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none !important; }
  @media (max-width: 900px) {
    .trust-bar { overflow-x: auto; }
    .trust-item.is-clone { display: none; }
  }
}

/* Header kurumsal */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 70;
  box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(13, 28, 47, 0.04);
  overflow: visible;
  isolation: isolate;
}
.site-header-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .site-header-bar { padding: 0 1.5rem; min-height: 76px; gap: 1.25rem; }
}
.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0d1c2f;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-nav-toggle:hover { background: #e2e8f0; }
@media (min-width: 1024px) {
  .mobile-nav-toggle { display: none; }
}
.site-logo {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0d1c2f;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.1;
  --logo-offset-x: 0px;
  transform: none;
}
.site-logo--image {
  display: inline-flex;
  align-items: center;
  max-width: min(220px, 55vw);
}
.site-logo--image img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
/* Logo yatay kaydırma yalnız masaüstü (mobil menü kapalıyken) */
@media (min-width: 1024px) {
  .site-logo,
  .site-logo--image {
    transform: translateX(var(--logo-offset-x, 0px));
  }
}
@media (min-width: 768px) {
  .site-logo {
    font-size: 34px;
    letter-spacing: -0.035em;
  }
  .site-logo--image {
    max-width: 240px;
  }
}
.site-search {
  flex: 1;
  max-width: 36rem;
  position: relative;
  margin-left: 0.5rem;
}
.site-search-form {
  position: relative;
  width: 100%;
}
.site-search-input {
  width: 100%;
  height: 44px;
  padding: 0 3.25rem 0 1.15rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 500;
  color: #0d1c2f;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.site-search-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.site-search-input:focus {
  outline: none;
  border-color: #00b2e3;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.12);
}
.site-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.site-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #00b2e3 0%, #0094c2 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
  box-shadow: 0 1px 4px rgba(0, 102, 132, 0.22);
}
.site-search-btn:hover {
  background: linear-gradient(180deg, #00c4f5 0%, #00b2e3 100%);
  box-shadow: 0 2px 8px rgba(0, 102, 132, 0.28);
}
.site-search-btn:active {
  transform: translateY(-50%) scale(0.96);
}
.site-search-btn .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

/* Arama önerileri dropdown */
.site-search-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 120;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
.site-search-results {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: min(420px, 62vh);
  overflow-y: auto;
}
.site-search-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s ease;
}
.site-search-item:hover,
.site-search-item.is-active {
  background: #f0f9ff;
}
.site-search-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  border: 1px solid #e2e8f0;
}
.site-search-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-search-item-thumb .material-symbols-outlined {
  font-size: 22px;
  color: #94a3b8;
}
.site-search-item-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.site-search-item-body span {
  display: block;
  margin-top: 0.12rem;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
}
.site-search-item-price {
  font-size: 12px;
  font-weight: 700;
  color: #006684;
  white-space: nowrap;
}
.site-search-all {
  display: block;
  padding: 0.7rem 0.95rem;
  border-top: 1px solid #eef2f7;
  font-size: 12px;
  font-weight: 600;
  color: #006684;
  text-decoration: none;
  background: #fafbfc;
}
.site-search-all:hover { background: #f0f9ff; }
.site-search-loading,
.site-search-empty {
  padding: 0.85rem 1rem;
  font-size: 13px;
  color: #64748b;
}

@media (min-width: 768px) {
  .site-search {
    margin-left: 2.75rem;
    max-width: 34rem;
  }
}
@media (min-width: 1024px) {
  .site-search {
    margin-left: 4rem;
    max-width: 32rem;
  }
}
.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  flex-shrink: 0;
}
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.55rem;
  border-radius: 12px;
  color: #0d1c2f;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  min-height: 44px;
}
.header-action:hover {
  color: #006684;
  background: rgba(0, 178, 227, 0.07);
}
.header-action--cart {
  margin-left: 0.15rem;
  padding-left: 0.85rem;
  border-left: 1px solid #e2e8f0;
}
.header-action-icon {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #006684;
  transition: background 0.15s ease, color 0.15s ease;
}
.header-action:hover .header-action-icon {
  background: rgba(0, 178, 227, 0.14);
  color: #00b2e3;
}
.header-action-icon .material-symbols-outlined {
  font-size: 22px;
}
.header-action-text {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1.25;
  min-width: 0;
}
.header-action-title {
  font-size: 12px;
  font-weight: 500;
  color: #0d1c2f;
  white-space: nowrap;
}
.header-action-sub {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}
.header-cart-badge {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #00b2e3;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 132, 173, 0.35);
  pointer-events: none;
}
@media (min-width: 640px) {
  .header-action--cart .header-action-text { display: flex; }
  .site-header-actions { gap: 0.25rem; }
}
@media (min-width: 1024px) {
  .header-action--account .header-action-text { display: flex; }
  .header-action {
    gap: 0.7rem;
    padding: 0.45rem 0.7rem;
  }
  .header-action--cart {
    margin-left: 0.35rem;
    padding-left: 1rem;
  }
}

/* Mobil menü drawer — kurumsal açılış + basamaklı içerik */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 23, 42, 0.48);
  border: 0;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav-backdrop.is-open { opacity: 1; }
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: min(88vw, 360px);
  height: 100%;
  background: #fff;
  box-shadow: 12px 0 40px rgba(15, 23, 42, 0.2);
  transform: translateX(-104%);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav[hidden],
.mobile-nav-backdrop[hidden] { display: none !important; }
body.is-mobile-nav-open { overflow: hidden; }

.mobile-nav-head,
.mobile-nav-search,
.mobile-nav-label,
.mobile-nav-section-label,
.mobile-nav-top-link,
.mobile-nav-divider,
.mobile-nav-acc,
.mobile-nav-link {
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav.is-open .mobile-nav-head { opacity: 1; transform: none; transition-delay: 0.08s; }
.mobile-nav.is-open .mobile-nav-search { opacity: 1; transform: none; transition-delay: 0.14s; }
.mobile-nav.is-open .mobile-nav-label,
.mobile-nav.is-open .mobile-nav-section-label { opacity: 1; transform: none; }
.mobile-nav.is-open .mobile-nav-top-link { opacity: 1; transform: none; }
.mobile-nav.is-open .mobile-nav-acc { opacity: 1; transform: none; }
.mobile-nav.is-open .mobile-nav-link { opacity: 1; transform: none; }
.mobile-nav.is-open .mobile-nav-divider { opacity: 1; transform: none; }

.mobile-nav.is-open .mobile-nav-top-link:nth-of-type(1) { transition-delay: 0.12s; }
.mobile-nav.is-open .mobile-nav-top-link:nth-of-type(2) { transition-delay: 0.16s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(1) { transition-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(2) { transition-delay: 0.24s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(3) { transition-delay: 0.28s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(4) { transition-delay: 0.32s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(5) { transition-delay: 0.36s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(6) { transition-delay: 0.4s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(7) { transition-delay: 0.44s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(8) { transition-delay: 0.48s; }
.mobile-nav.is-open .mobile-nav-acc:nth-of-type(n+9) { transition-delay: 0.52s; }
.mobile-nav.is-open .mobile-nav-section-label { transition-delay: 0.54s; }
.mobile-nav.is-open .mobile-nav-body > .mobile-nav-link:nth-of-type(1) { transition-delay: 0.58s; }
.mobile-nav.is-open .mobile-nav-body > .mobile-nav-link:nth-of-type(2) { transition-delay: 0.62s; }
.mobile-nav.is-open .mobile-nav-divider:nth-of-type(1) { transition-delay: 0.66s; }
.mobile-nav.is-open .mobile-nav-body > .mobile-nav-link:nth-of-type(3) { transition-delay: 0.7s; }
.mobile-nav.is-open .mobile-nav-body > .mobile-nav-link:nth-of-type(4) { transition-delay: 0.74s; }
.mobile-nav.is-open .mobile-nav-body > .mobile-nav-link:nth-of-type(5) { transition-delay: 0.78s; }
.mobile-nav.is-open .mobile-nav-body > .mobile-nav-link:nth-of-type(6) { transition-delay: 0.82s; }
.mobile-nav.is-open .mobile-nav-body > .mobile-nav-link:nth-of-type(n+7) { transition-delay: 0.86s; }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.15rem 1rem;
  border-bottom: 1px solid #eceff3;
}
.mobile-nav-menu-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0f172a;
}
.mobile-nav-close {
  width: 36px; height: 36px; border: 0; border-radius: 8px;
  background: transparent; display: grid; place-items: center; cursor: pointer;
  color: #334155;
  transition: background 0.15s ease, transform 0.15s ease;
}
.mobile-nav-close:hover { background: #e2e8f0; }
.mobile-nav-close:active { transform: scale(0.96); }
.mobile-nav-search { padding: 0.85rem 1rem; border-bottom: 1px solid #eef2f7; }
.mobile-nav-search input {
  width: 100%; border: 1px solid #e2e8f0; border-radius: 10px;
  padding: 0.7rem 0.85rem; font-size: 14px; font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mobile-nav-search input:focus {
  outline: none;
  border-color: #00b2e3;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.15);
}
.mobile-nav-body {
  overflow-y: auto;
  padding: 0.35rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-top-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1.15rem;
  margin: 0 0.5rem;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: color 0.15s ease, background 0.15s ease;
}
.mobile-nav-top-link:hover {
  color: #006684;
  background: rgba(0, 178, 227, 0.07);
}
.mobile-nav-emoji {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.mobile-nav-section-label {
  margin: 1rem 1.15rem 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0f172a;
}
.mobile-nav-divider {
  height: 1px;
  margin: 0.65rem 1.15rem;
  background: #e8edf2;
}
.mobile-nav-label {
  margin: 0.85rem 1rem 0.4rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}
.mobile-nav-acc {
  border-bottom: 1px solid #f1f5f9;
}
.mobile-nav-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.15rem;
  margin: 0 0.5rem;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-nav-acc summary:hover {
  background: rgba(0, 178, 227, 0.07);
  color: #006684;
}
.mobile-nav-acc summary::-webkit-details-marker { display: none; }
.mobile-nav-acc summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #64748b;
  border-bottom: 1.5px solid #64748b;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex-shrink: 0;
  margin-top: -3px;
}
.mobile-nav-acc[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.mobile-nav-acc-links {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 1rem 0 1.15rem;
}
.mobile-nav-acc[open] .mobile-nav-acc-links {
  grid-template-rows: 1fr;
  padding-bottom: 0.85rem;
}
.mobile-nav-acc-links-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.24s ease;
}
.mobile-nav-acc[open] .mobile-nav-acc-links-inner {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}
.mobile-nav-acc-links a,
.mobile-nav-acc-links-inner a {
  padding: 0.45rem 0;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
}
.mobile-nav-acc-links a:hover,
.mobile-nav-acc-links-inner a:hover {
  color: #006684;
  text-decoration: none;
}
.mobile-nav-acc-links a.is-all,
.mobile-nav-acc-links-inner a.is-all {
  color: #006684;
  font-weight: 500;
  text-decoration: none;
}
.mobile-nav-link--button {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.mobile-nav-logout-form { margin: 0; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.9rem 1.15rem;
  margin: 0 0.5rem;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #f8fafc;
  border-radius: 12px;
  transition: color 0.15s ease, background 0.15s ease;
}
.mobile-nav-link:hover {
  color: #006684;
  background: rgba(0, 178, 227, 0.07);
}
.mobile-nav-link.is-blog {
  color: #db2777;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.mobile-nav-link.is-blog:hover { color: #be185d; }
.mobile-nav-link--promo {
  justify-content: flex-start;
  gap: 0.65rem;
  color: #006684;
  font-weight: 500;
}
.mobile-nav-link--promo .material-symbols-outlined {
  font-size: 22px;
  color: #00b2e3;
  flex-shrink: 0;
}
.mobile-nav-link--promo .badge-new { margin-left: auto; }
.mobile-nav-link--promo:hover {
  color: #00b2e3;
  background: rgba(0, 178, 227, 0.06);
}
.mobile-nav-btn {
  border-radius: 12px !important;
  border: 1px solid transparent;
  margin-bottom: 0.35rem;
}
.mobile-nav-btn--new {
  background: linear-gradient(180deg, #f0faff 0%, #e0f7ff 100%);
  border-color: #bae6fd !important;
  color: #006684 !important;
}
.mobile-nav-btn--campaign {
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border-color: #99f6e4 !important;
  color: #0f766e !important;
}
.mobile-nav-btn--new .material-symbols-outlined { color: #00b2e3 !important; }
.mobile-nav-btn--campaign .material-symbols-outlined { color: #14b8a6 !important; }

.mobile-nav-toggle .material-symbols-outlined {
  transition: transform 0.22s ease;
}
.mobile-nav-toggle[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(90deg);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-nav-backdrop,
  .mobile-nav-head,
  .mobile-nav-search,
  .mobile-nav-label,
  .mobile-nav-acc,
  .mobile-nav-link,
  .mobile-nav-acc-links,
  .mobile-nav-acc-links-inner {
    transition: none !important;
  }
  .mobile-nav-head,
  .mobile-nav-search,
  .mobile-nav-label,
  .mobile-nav-acc,
  .mobile-nav-link {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1024px) {
  .mobile-nav,
  .mobile-nav-backdrop,
  .mobile-nav-toggle { display: none !important; }
}

/* Üst yardımcı şerit – site paletiyle uyumlu, sade */
.corp-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.corp-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.corp-topbar-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  color: #64748b;
  font-weight: 600;
}
.corp-topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #475569;
  text-decoration: none;
}
.corp-topbar-contact a:hover { color: var(--primary-dark); }
.corp-topbar-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.corp-topbar-contact .material-symbols-outlined {
  font-size: 15px;
  color: var(--primary-dark);
}
.corp-topbar-contact .divider {
  width: 1px;
  height: 12px;
  background: var(--border);
}
.corp-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.corp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border: none;
  background: transparent;
  border-radius: 10px;
  white-space: nowrap;
  position: relative;
  transition: color 0.15s ease, background 0.15s ease;
}
.corp-chip:hover {
  color: var(--primary-dark);
  background: rgba(0, 178, 227, 0.08);
}
.corp-chip + .corp-chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--border);
}
.corp-chip .material-symbols-outlined {
  font-size: 15px;
  color: #94a3b8;
}
.corp-chip:hover .material-symbols-outlined {
  color: var(--primary-dark);
}
.corp-chip.emphasis,
.corp-chip.soft-accent {
  background: transparent;
  border: none;
  color: #64748b;
}
.corp-chip.emphasis:hover,
.corp-chip.soft-accent:hover {
  color: var(--primary-dark);
  background: rgba(0, 178, 227, 0.08);
}
@media (max-width: 900px) {
  .corp-topbar { display: none; }
}

/* === Ana menü — 5 sekme aynı boyut, aynı renk === */
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: background 0.15s ease, color 0.15s ease;
  text-decoration: none;
  background: #fff;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 0 0.75rem;
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.nav-link .material-symbols-outlined,
.nav-link .nav-ico,
.nav-link .nav-chevron {
  font-size: 20px;
  line-height: 1;
  color: inherit;
  flex-shrink: 0;
}
.nav-item {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
}
.site-nav {
  position: relative;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  z-index: 40;
  overflow: visible;
}
.site-header.is-mega-open .site-nav,
.site-header.is-navdrop-open .site-nav {
  border-bottom: 1px solid #e2e8f0;
}
.site-nav-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: #fff;
}
.site-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 48px;
  background: #fff;
}
.site-nav-list > .nav-item.nav-mega,
.site-nav-list > .nav-item.nav-drop {
  flex: 0 0 auto;
  min-width: 0;
  max-width: none;
  background: #fff;
  border-left: 0;
  box-shadow: none;
}
.site-nav-list > .nav-item.nav-mega {
  border-left: 0;
}
.site-nav-list > .nav-item.nav-mega > .nav-mega-trigger,
.site-nav-list > .nav-item.nav-drop > .nav-link {
  flex: 0 0 auto;
  align-self: center;
  width: auto;
  height: 38px;
  min-height: 38px;
  max-height: 38px;
  padding: 0 1rem;
  background: #fff;
  color: #1e293b;
  border: 0;
  border-radius: 10px;
  outline: none;
}
.site-nav-list > .nav-item.nav-mega > .nav-mega-trigger:hover,
.site-nav-list > .nav-item.nav-drop > .nav-link:hover {
  background: #f0f9ff;
  color: #006684;
}
.site-nav-list > .nav-item.nav-mega > .nav-mega-trigger .nav-ico,
.site-nav-list > .nav-item.nav-drop > .nav-link .nav-ico,
.site-nav-list > .nav-item.nav-mega > .nav-mega-trigger .nav-chevron,
.site-nav-list > .nav-item.nav-drop > .nav-link .nav-chevron {
  color: inherit;
}
.site-header.is-mega-open .site-nav-list > .nav-item.nav-mega > .nav-mega-trigger {
  background: #f0f9fc;
  color: #006684;
  box-shadow: inset 0 -2px 0 #00b2e3;
}
.site-header.is-navdrop-open .site-nav-list > .nav-item.nav-drop > .nav-drop-trigger.is-active {
  background: #f0f9fc;
  color: #006684;
  box-shadow: inset 0 -2px 0 #00b2e3;
}
.site-header.is-mega-open .site-nav-list > .nav-item.nav-mega > .nav-mega-trigger:hover {
  background: #e8f7fb;
  color: #00566f;
}
.site-header.is-navdrop-open .site-nav-list > .nav-item.nav-drop > .nav-drop-trigger.is-active:hover {
  background: #e8f7fb;
  color: #00566f;
}
.site-header.is-mega-open .site-nav-list > .nav-item.nav-mega > .nav-mega-trigger .material-symbols-outlined,
.site-header.is-navdrop-open .site-nav-list > .nav-item.nav-drop > .nav-drop-trigger.is-active .material-symbols-outlined {
  color: inherit;
}
.site-nav-list > .nav-item.nav-mega > .nav-mega-trigger:focus-visible,
.site-nav-list > .nav-item.nav-drop > .nav-link:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(0, 178, 227, 0.35);
}
.site-nav-list > .nav-item.nav-push,
.site-nav-list > .nav-item:not(.nav-mega):not(.nav-drop) {
  flex: 0 0 auto;
  align-items: center;
  background: transparent;
  border-left: 0;
  padding-left: 0.35rem;
}
.site-nav-list .nav-btn {
  min-height: 36px;
  height: 36px;
}
.nav-push { margin-left: auto; }
.site-nav-list > .nav-item.nav-drop .nav-chevron {
  font-size: 18px;
  opacity: 0.65;
  color: inherit;
}
.site-header.is-navdrop-open .site-nav-list > .nav-item.nav-drop > .nav-drop-trigger.is-active .nav-chevron {
  opacity: 0.92;
}
.nav-mega-trigger {
  text-align: center;
}
.site-nav-list > .nav-item.nav-drop > .nav-link .nav-ico.is-express {
  color: #f39200;
}
.site-nav-list > .nav-item.nav-drop > .nav-link .nav-ico.is-photo {
  color: #14b8a6;
}
.site-header.is-navdrop-open .site-nav-list > .nav-item.nav-drop > .nav-drop-trigger.is-active .nav-ico {
  color: inherit;
}
.nav-ico.is-new,
.nav-ico.is-campaign { color: #00b2e3; }
.nav-new-products,
.nav-campaign { color: #006684 !important; }
.nav-new-products:hover,
.nav-campaign:hover { color: #00b2e3 !important; }

/* Nav promo butonları — Yeni Ürünler / Kampanyalar */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.85rem;
  min-height: 46px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.nav-btn .material-symbols-outlined { font-size: 18px; }
.nav-btn--new {
  color: #006684;
  background: linear-gradient(180deg, #f0faff 0%, #e0f7ff 100%);
  border-color: #bae6fd;
  box-shadow: 0 1px 2px rgba(0, 102, 132, 0.06);
}
.nav-btn--new:hover {
  color: #004054;
  background: #e0f7ff;
  border-color: #7dd3fc;
  box-shadow: 0 2px 6px rgba(0, 178, 227, 0.14);
}
.nav-btn--campaign {
  color: #0f766e;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border-color: #99f6e4;
  box-shadow: 0 1px 2px rgba(15, 118, 110, 0.06);
}
.nav-btn--campaign:hover {
  color: #115e59;
  background: #ccfbf1;
  border-color: #5eead4;
  box-shadow: 0 2px 6px rgba(20, 184, 166, 0.14);
}
.nav-btn--new .badge-new { margin-left: 0.1rem; }

.badge-new {
  background: #00b2e3;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  margin-left: 0.15rem;
  letter-spacing: 0.02em;
}

/* Mega menü — sabit overlay, sayfa kayması yok */
.site-header.is-mega-open,
.site-header.is-navdrop-open {
  z-index: 90;
}
.site-header.is-mega-open .mega-backdrop,
.site-header.is-navdrop-open .mega-backdrop {
  visibility: visible;
  opacity: 1;
}
.site-header.is-mega-open .mega-backdrop {
  pointer-events: auto;
  top: var(--mega-menu-top, 132px);
}
.site-header.is-navdrop-open .mega-backdrop {
  pointer-events: none;
  top: 0;
}
.site-header.is-mega-open .site-nav,
.site-header.is-navdrop-open .site-nav {
  position: relative;
  z-index: 86;
}

.mega-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 75;
  background: rgba(15, 23, 42, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.mega-backdrop[hidden] {
  display: block !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-chevron {
  font-size: 18px;
  line-height: 1;
  opacity: 0.65;
  transition: transform 0.2s ease;
}
.nav-drop-trigger.is-active .nav-chevron {
  transform: rotate(180deg);
}
.nav-item.nav-drop {
  position: relative;
}
.nav-item.nav-mega {
  position: relative;
}
.nav-item.nav-drop::after,
.nav-item.nav-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 22px;
  z-index: 1;
}

.site-nav-flyouts {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 85;
  pointer-events: none;
}

.mega-dropdown,
.nav-drop-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  height: auto;
  max-height: min(480px, calc(100vh - var(--mega-menu-top, 132px) - 12px));
  margin: 0;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 0.16s ease,
    visibility 0.18s,
    box-shadow 0.18s ease;
}
.mega-dropdown::before,
.nav-drop-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.mega-dropdown[hidden],
.nav-drop-dropdown[hidden] {
  display: block !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.site-header.is-mega-open .mega-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
}
.site-header.is-navdrop-open .nav-drop-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.site-header.is-navdrop-open .mega-dropdown {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.site-header.is-mega-open .nav-drop-dropdown {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.nav-drop-panel {
  display: none;
  overflow: hidden;
}
.nav-drop-panel.is-active {
  display: block;
}
.nav-drop-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  box-sizing: border-box;
  overflow: hidden;
  align-items: start;
}
.nav-drop-inner.layout-cols-3,
.nav-drop-inner.layout-cols-2,
.nav-drop-inner.layout-cols-1 {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
}
.nav-drop-columns {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.nav-drop-inner.layout-cols-2 .nav-drop-columns {
  gap: 2rem;
}
.nav-drop-inner.layout-cols-1 .nav-drop-columns {
  display: block;
  max-width: 300px;
}
.nav-drop-inner.layout-cols-1 .mega-column {
  display: block;
}
.nav-drop-main .mega-group-items a {
  padding: 0.32rem 0.55rem;
  margin: 0 -0.55rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  line-height: 1.25;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-drop-main .mega-group-items a:hover {
  color: #006684;
  background: rgba(0, 178, 227, 0.07);
}
.nav-drop-main .mega-all-link {
  margin-top: 0.85rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  background: linear-gradient(180deg, #f0faff 0%, #fff 100%);
  box-shadow: 0 1px 2px rgba(0, 102, 132, 0.06);
}
.nav-drop-main .mega-all-link:hover {
  border-color: #7dd3fc;
  background: #e0f7ff;
  box-shadow: 0 2px 6px rgba(0, 178, 227, 0.12);
}
.nav-drop-main {
  opacity: 1;
  transform: none;
  display: block;
  overflow: visible;
  padding: 1.1rem 1.4rem 1.2rem 1.2rem;
  box-sizing: border-box;
}
.nav-drop-links {
  overflow: visible;
}
.nav-drop-featured {
  opacity: 1;
  transform: none;
  align-content: start;
  overflow: hidden;
  box-sizing: border-box;
  padding: 1rem 0 1rem 0.75rem;
  margin: 0;
  border-left: 1px solid #eceff3;
  background: #fff;
}
.nav-drop-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  margin: 0 0 0.85rem;
}
.nav-drop-title .nav-ico {
  font-size: 22px;
}
@media (max-width: 900px) {
  .nav-drop-inner { grid-template-columns: 1fr; }
  .nav-drop-featured { display: none; }
}

.mega-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  min-height: 0;
  background: #fff;
}

.mega-side {
  width: 230px;
  flex-shrink: 0;
  background: #fff !important;
  border-right: 1px solid #eceff3;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.55rem 0.5rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.18s ease 0.03s,
              transform 0.18s ease 0.03s;
}
.site-header.is-mega-open .mega-side {
  opacity: 1;
  transform: translateX(0);
}

.mega-side-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  padding: 0.58rem 0.75rem;
  margin: 0.1rem 0;
  cursor: pointer;
  line-height: 1.25;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-12px);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.is-mega-open .mega-side-item {
  opacity: 1;
  transform: translateX(0);
}
.site-header.is-mega-open .mega-side-item:nth-child(1) { transition-delay: 0.02s; }
.site-header.is-mega-open .mega-side-item:nth-child(2) { transition-delay: 0.04s; }
.site-header.is-mega-open .mega-side-item:nth-child(3) { transition-delay: 0.06s; }
.site-header.is-mega-open .mega-side-item:nth-child(4) { transition-delay: 0.08s; }
.site-header.is-mega-open .mega-side-item:nth-child(5) { transition-delay: 0.1s; }
.site-header.is-mega-open .mega-side-item:nth-child(6) { transition-delay: 0.12s; }
.site-header.is-mega-open .mega-side-item:nth-child(7) { transition-delay: 0.14s; }
.site-header.is-mega-open .mega-side-item:nth-child(8) { transition-delay: 0.16s; }
.site-header.is-mega-open .mega-side-item:nth-child(9) { transition-delay: 0.44s; }
.site-header.is-mega-open .mega-side-item:nth-child(10) { transition-delay: 0.48s; }
.site-header.is-mega-open .mega-side-item:nth-child(11) { transition-delay: 0.52s; }
.site-header.is-mega-open .mega-side-item:nth-child(12) { transition-delay: 0.56s; }
.site-header.is-mega-open .mega-side-item:nth-child(n+13) { transition-delay: 0.58s; }
.mega-side-item:hover {
  background: rgba(0, 178, 227, 0.07);
  color: #0f172a;
}
.mega-side-item.is-active {
  background: rgba(0, 178, 227, 0.12);
  color: #006684;
  box-shadow: inset 3px 0 0 #00b2e3;
  font-weight: 600;
}

.mega-body {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 0;
  background: #fff !important;
}
.mega-panel {
  display: none;
  max-height: min(480px, calc(100vh - var(--mega-menu-top, 132px) - 12px));
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  overflow: hidden;
  background: #fff;
}
.mega-panel.is-active {
  display: grid;
  animation: megaPanelIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes megaPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-panel-main {
  padding: 1.1rem 1.4rem 1.2rem 1.2rem;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.16s,
              transform 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.mega-panel-main.nav-drop-main {
  overflow: visible;
  overflow-y: visible;
  display: block;
  min-height: auto;
  opacity: 1;
  transform: none;
  transition: none;
}
.site-header.is-mega-open .mega-panel-main {
  opacity: 1;
  transform: translateY(0);
}
.site-header.is-navdrop-open .mega-panel-main.nav-drop-main {
  opacity: 1;
  transform: none;
  overflow: visible;
  overflow-y: visible;
  display: block;
  min-height: auto;
}

.mega-panel-title {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.35rem;
  margin: 0 0 0.85rem -0.55rem;
  padding: 0.45rem 0.9rem;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  line-height: 1.25;
}

.mega-columns {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.mega-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.mega-group {
  min-width: 0;
}
.mega-group-flat .mega-group-items a {
  padding: 0.3rem 0;
}
.mega-groups {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.mega-group-title {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.35;
}
.mega-group-title:hover {
  color: #006684;
}
.mega-group-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-group-items li {
  break-inside: avoid;
}
.mega-group-items a {
  display: block;
  padding: 0.32rem 0.55rem;
  margin: 0 -0.55rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.15s ease, background 0.15s ease;
}
.mega-group-items a:hover {
  color: #006684;
  background: rgba(0, 178, 227, 0.07);
}
.mega-group-items-columns {
  columns: 2;
  column-gap: 2.5rem;
}
.mega-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 0;
  margin-bottom: 0.85rem;
}
.mega-link-grid a {
  display: block;
  padding: 0.32rem 0.55rem;
  margin: 0 -0.55rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.mega-link-grid a:hover {
  color: #006684;
  background: rgba(0, 178, 227, 0.07);
}
.mega-link-grid a.depth-1 { padding-left: 0.35rem; font-weight: 500; color: #0d1c2f; }
.mega-link-grid a.depth-2 { padding-left: 0.85rem; color: #475569; font-size: 12px; }
.mobile-nav-acc-links-inner a.depth-1 {
  padding-left: 0.35rem;
  font-weight: 500;
  color: #0d1c2f;
  text-decoration: none;
}
.mobile-nav-acc-links-inner a.depth-2 {
  padding-left: 1.15rem;
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.mobile-nav-acc-links-inner a.depth-1:hover,
.mobile-nav-acc-links-inner a.depth-2:hover {
  color: #006684;
  text-decoration: none;
}
.mobile-nav-acc-links-inner a.is-all {
  color: #006684;
  font-weight: 500;
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid #e8edf2;
}
.mega-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  margin-left: -0.55rem;
  padding: 0.55rem 0.95rem;
  font-size: 13px;
  font-weight: 600;
  color: #006684;
  text-decoration: none;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  background: linear-gradient(180deg, #f0faff 0%, #fff 100%);
  box-shadow: 0 1px 2px rgba(0, 102, 132, 0.06);
  align-self: flex-start;
  width: max-content;
  min-height: 36px;
  box-sizing: border-box;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.mega-panel-main > .mega-all-link {
  margin-left: -0.55rem;
}
.mega-all-link:hover {
  color: #004054;
  border-color: #7dd3fc;
  background: #e0f7ff;
  box-shadow: 0 2px 6px rgba(0, 178, 227, 0.12);
}
.mega-all-link span { font-size: 15px; line-height: 1; }

.mega-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 1rem 0 1rem 0.75rem;
  border-left: 1px solid #eceff3;
  overflow: hidden;
  align-content: start;
  background: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}
.site-header.is-mega-open .mega-featured {
  opacity: 1;
  transform: translateY(0);
}
.site-header.is-navdrop-open .mega-featured.nav-drop-featured {
  opacity: 1;
  transform: translateY(0);
}
.mega-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  min-height: 0;
  transition: border-color 0.18s ease, transform 0.2s ease, box-shadow 0.18s ease;
}
.mega-card:hover {
  border-color: #00b2e3;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 178, 227, 0.12);
}
.mega-card-img {
  display: block;
  aspect-ratio: 1 / 1;
  background: #fff;
}
.mega-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}
.mega-card-name {
  display: block;
  padding: 0.35rem 0.3rem 0.45rem;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
  text-align: center;
}

/* Menü hareket sistemi — yerleşimi değiştirmeden her ana menüye ayrı karakter */
.site-header[data-menu-direction="forward"] { --nav-motion-x: 28px; }
.site-header[data-menu-direction="backward"] { --nav-motion-x: -28px; }
.site-header[data-menu-direction="neutral"] { --nav-motion-x: 0px; }

.nav-drop-panel {
  position: relative;
  isolation: isolate;
  --nav-motion-accent: #00b2e3;
  --nav-motion-tint: rgba(0, 178, 227, 0.08);
}
.nav-drop-panel[data-nav-motion="velocity"] {
  --nav-motion-accent: #f39200;
  --nav-motion-tint: rgba(243, 146, 0, 0.09);
}
.nav-drop-panel[data-nav-motion="gallery"] {
  --nav-motion-accent: #14b8a6;
  --nav-motion-tint: rgba(20, 184, 166, 0.08);
}
.nav-drop-panel[data-nav-motion="precision"] {
  --nav-motion-accent: #006684;
  --nav-motion-tint: rgba(0, 102, 132, 0.075);
}
.nav-drop-panel[data-nav-motion="peel"] {
  --nav-motion-accent: #7c3aed;
  --nav-motion-tint: rgba(124, 58, 237, 0.07);
}
.nav-drop-panel::after {
  display: none;
}
.site-header.is-menu-entering.is-navdrop-open .nav-drop-panel.is-active::after {
  animation: none;
}

.site-header.is-menu-entering.is-mega-open .mega-dropdown {
  animation: navCascadeShell 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.site-header.is-menu-entering.is-mega-open .mega-panel.is-active .mega-panel-title,
.site-header.is-menu-entering.is-mega-open .mega-panel.is-active .mega-column,
.site-header.is-menu-entering.is-mega-open .mega-panel.is-active .mega-all-link {
  animation: navCascadeItem 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.site-header.is-menu-entering.is-mega-open .mega-panel.is-active .mega-column:nth-child(1) { animation-delay: 0.06s; }
.site-header.is-menu-entering.is-mega-open .mega-panel.is-active .mega-column:nth-child(2) { animation-delay: 0.1s; }
.site-header.is-menu-entering.is-mega-open .mega-panel.is-active .mega-column:nth-child(3) { animation-delay: 0.14s; }
.site-header.is-menu-entering.is-mega-open .mega-panel.is-active .mega-all-link { animation-delay: 0.18s; }

/* Ekspres: hızlı, soldan sağa enerji akışı */
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="velocity"].is-active .nav-drop-inner {
  animation: navVelocityIn 0.44s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="velocity"].is-active .mega-group-items li {
  animation: navVelocityItem 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="velocity"].is-active .mega-group-items li:nth-child(2) { animation-delay: 0.025s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="velocity"].is-active .mega-group-items li:nth-child(3) { animation-delay: 0.05s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="velocity"].is-active .mega-group-items li:nth-child(4) { animation-delay: 0.075s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="velocity"].is-active .mega-group-items li:nth-child(n+5) { animation-delay: 0.1s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="velocity"].is-active .nav-drop-title .nav-ico {
  animation: navVelocityIcon 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Fotoğraf: lens netleşmesi + yumuşak galeri yükselişi */
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="gallery"].is-active .nav-drop-inner {
  animation: navGalleryFocus 0.56s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="gallery"].is-active .mega-group-items li,
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="gallery"].is-active .mega-card {
  animation: navGalleryItem 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="gallery"].is-active .mega-column:nth-child(2) li,
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="gallery"].is-active .mega-card:nth-child(2) { animation-delay: 0.06s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="gallery"].is-active .mega-column:nth-child(3) li,
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="gallery"].is-active .mega-card:nth-child(3) { animation-delay: 0.11s; }

/* Kartvizit: ölçülü yatay geçiş ve keskin yerleşim */
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="precision"].is-active .nav-drop-inner {
  animation: navPrecisionIn 0.48s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="precision"].is-active .mega-column,
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="precision"].is-active .mega-card {
  animation: navPrecisionItem 0.44s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="precision"].is-active .mega-column:nth-child(2),
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="precision"].is-active .mega-card:nth-child(2) { animation-delay: 0.055s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="precision"].is-active .mega-column:nth-child(3),
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="precision"].is-active .mega-card:nth-child(3) { animation-delay: 0.1s; }

/* Sticker: köşeden açılan hafif peel etkisi */
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="peel"].is-active .nav-drop-inner {
  animation: navPeelIn 0.56s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: top right;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="peel"].is-active .mega-group-items li {
  animation: navPeelItem 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="peel"].is-active .mega-group-items li:nth-child(2) { animation-delay: 0.035s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="peel"].is-active .mega-group-items li:nth-child(3) { animation-delay: 0.07s; }
.site-header.is-menu-entering.is-navdrop-open [data-nav-motion="peel"].is-active .mega-group-items li:nth-child(n+4) { animation-delay: 0.105s; }

.site-header[data-menu-motion] .mega-backdrop { background: rgba(15, 23, 42, 0.06); }
@keyframes navCascadeShell {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: 1; clip-path: inset(0); }
}
@keyframes navCascadeItem {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}
@keyframes navVelocityIn {
  from { opacity: 0; transform: translateX(var(--nav-motion-x)) skewX(-1deg); clip-path: inset(0 32% 0 0); }
  to { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes navVelocityItem {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes navVelocityIcon {
  0% { opacity: 0; transform: translateX(-8px) scale(0.72); }
  55% { opacity: 1; transform: translateX(2px) scale(1.08); }
  100% { transform: none; }
}
@keyframes navGalleryFocus {
  from { opacity: 0; transform: scale(0.95); filter: blur(7px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes navGalleryItem {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to { opacity: 1; transform: none; }
}
@keyframes navPrecisionIn {
  from { opacity: 0; transform: translateX(var(--nav-motion-x)); clip-path: inset(0 15% 0 15%); }
  to { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes navPrecisionItem {
  from { opacity: 0; transform: translateX(calc(var(--nav-motion-x) * 0.55)); }
  to { opacity: 1; transform: none; }
}
@keyframes navPeelIn {
  from { opacity: 0; transform: translateY(-12px) rotate(-0.7deg) scale(0.98); clip-path: polygon(0 0, 72% 0, 100% 32%, 100% 100%, 0 100%); }
  to { opacity: 1; transform: none; clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 0 100%); }
}
@keyframes navPeelItem {
  from { opacity: 0; transform: translateY(8px) rotate(-0.35deg); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mega-dropdown,
  .nav-drop-dropdown,
  .nav-drop-panel,
  .nav-drop-inner,
  .nav-drop-panel::after,
  .nav-drop-title .nav-ico,
  .mega-group-items li,
  .mega-column,
  .mega-side,
  .mega-panel-main,
  .mega-featured,
  .mega-card,
  .nav-mega-trigger {
    transition: none !important;
    animation: none !important;
  }
  .mega-dropdown {
    transform: none;
  }
  .site-header.is-mega-open .mega-dropdown {
    opacity: 1;
    visibility: visible;
  }
  .mega-side,
  .mega-side-item,
  .mega-panel-main,
  .mega-featured {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }
  .mega-panel.is-active { animation: none; }
}

@media (max-width: 1100px) {
  .mega-side { width: 200px; }
  .mega-panel { grid-template-columns: minmax(0, 1fr) 220px; }
  .mega-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-columns { gap: 1.25rem; }
}
@media (max-width: 900px) {
  .mega-panel { grid-template-columns: 1fr; }
  .mega-featured { display: none; }
  .mega-columns { flex-direction: column; gap: 0.75rem; }
}
/* Hero slider — Bidolu tarzı geçişli banner */
.mega-dropdown[hidden],
.nav-drop-dropdown[hidden] {
  content-visibility: hidden;
  contain-intrinsic-size: 0 400px;
}
.mobile-nav[hidden] {
  content-visibility: hidden;
}
.hero-slider {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: clamp(220px, 52vw, 300px);
  box-shadow: 0 4px 24px rgba(13, 28, 47, 0.06);
  background: #e2e8f0;
}
@media (min-width: 768px) {
  .hero-slider {
    border-radius: var(--radius-xl);
    height: clamp(340px, 30vw, 460px);
  }
}
.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
/* LCP: opacity:0 / sürekli opacity transition LCP adayını düşürür */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  visibility: hidden;
}
.hero-slide.is-active {
  z-index: 1;
  pointer-events: auto;
  visibility: visible;
}
.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slide picture,
.hero-slide-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transition: opacity 0.2s ease, background 0.15s ease, transform 0.15s ease;
}
.hero-slider:hover .hero-slider-arrow,
.hero-slider:focus-within .hero-slider-arrow {
  opacity: 1;
}
.hero-slider-arrow:hover {
  background: #fff;
}
.hero-slider-arrow:active {
  transform: translateY(-50%) scale(0.96);
}
.hero-slider-arrow--prev { left: 0.65rem; }
.hero-slider-arrow--next { right: 0.65rem; }
.hero-slider-arrow .material-symbols-outlined {
  font-size: 24px;
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(4px);
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.2s ease;
}
.hero-slider-dot.is-active {
  width: 22px;
  background: #fff;
}
.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}
@media (max-width: 767.98px) {
  .hero-slider-arrow {
    width: 34px;
    height: 34px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.88);
  }
  .hero-slider-arrow .material-symbols-outlined {
    font-size: 20px;
  }
}
/* Eski tek banner sınıfı (geriye dönük) */
.hero-single {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: clamp(200px, 48vw, 280px);
  box-shadow: 0 4px 24px rgba(13, 28, 47, 0.06);
  background: #e2e8f0;
}
@media (min-width: 768px) {
  .hero-single {
    border-radius: var(--radius-xl);
    height: clamp(280px, 28vw, 380px);
  }
}
.hero-single a { display: block; width: 100%; height: 100%; }
.hero-single picture,
.hero-single .hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  background: #e2e8f0;
}

/* Ürün kartı */
.product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  border-color: rgba(0, 178, 227, 0.4);
  box-shadow: 0 14px 36px rgba(0, 132, 173, 0.12);
  transform: translateY(-2px);
}
.product-card-media {
  position: relative;
  padding: 0.85rem 0.85rem 0;
}
.product-card .thumb {
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid #e8f2f6;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.5rem;
  box-sizing: border-box;
  transition: transform 0.25s ease;
}
.product-card:hover .thumb img {
  transform: scale(1.03);
}
.product-card-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: #006684;
  box-shadow: 0 2px 8px rgba(0, 102, 132, 0.25);
}
.product-card-badge.is-new { background: #00b2e3; }
.product-card-badge.is-express { background: #f39200; }
.product-card-badge.is-premium { background: #006684; }
.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  padding: 0.85rem 1rem 1rem;
}
.product-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #0d1c2f;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.product-card-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  margin-top: 0.05rem;
}
.product-card-stars {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.product-card-stars .rating-stars {
  font-size: 14px;
}
.product-card-stars .material-symbols-outlined {
  font-size: 14px;
  color: #f59e0b;
}
.product-card-score {
  font-size: 12px;
  font-weight: 600;
  color: #0d1c2f;
}
.product-card-reviews {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}
@media (max-width: 480px) {
  .product-card-reviews-label { display: none; }
}
.product-card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem 0.25rem;
  margin: 0.4rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid #f1f5f9;
}
.product-card-price .price-from {
  font-size: 17px;
  font-weight: 600;
  color: #006684;
  letter-spacing: 0.01em;
}
.product-card-price small {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}
.product-card--listing .product-card-body {
  padding: 0.75rem 0.85rem 0.9rem;
}
.product-card--listing .product-card-title {
  font-size: 13px;
  color: #334155;
  min-height: 2.5em;
}
.product-card--listing .product-card-stars .material-symbols-outlined {
  font-size: 13px;
}
.product-card--listing .product-card-price .price-from {
  font-size: 15px;
}
.product-card--rail {
  height: 100%;
}
.product-card--rail .product-card-media {
  padding: 0.65rem 0.65rem 0;
}
.product-card--rail .product-card-body {
  padding: 0.65rem 0.75rem 0.85rem;
  gap: 0.25rem;
}
.product-card--rail .product-card-title {
  font-size: 13px;
  min-height: 2.5em;
}
.product-card--rail .product-card-rating {
  display: none;
}
.product-card--rail .product-card-price .price-from {
  font-size: 14px;
}
.product-card--rail .product-card-price small {
  font-size: 10px;
}

/* Ana sayfa — yatay kaydırmalı ürün şeridi */
.home-product-rail-section {
  min-width: 0;
}
.home-product-rail-wrap {
  position: relative;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  padding: 0.15rem 0.25rem 0.35rem;
}
.home-product-rail {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0.1rem 0.5rem;
  max-width: 100%;
  cursor: grab;
  touch-action: pan-x;
}
.home-product-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.home-product-rail::-webkit-scrollbar {
  display: none;
}
.home-product-rail-arrow {
  position: absolute;
  top: 38%;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #006684;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}
.home-product-rail-arrow:hover:not(:disabled) {
  border-color: rgba(0, 178, 227, 0.35);
  background: #f3fbfe;
}
.home-product-rail-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.home-product-rail-arrow .material-symbols-outlined {
  font-size: 1.35rem;
}
.home-product-rail-arrow--prev { left: -0.35rem; }
.home-product-rail-arrow--next { right: -0.35rem; }
.home-product-rail-item {
  flex: 0 0 min(168px, 44vw);
  min-width: 0;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .home-product-rail-item {
    flex-basis: 188px;
  }
}
@media (min-width: 768px) {
  .home-product-rail-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .home-product-rail-arrow {
    display: flex;
  }
  .home-product-rail-arrow--prev { left: 0; }
  .home-product-rail-arrow--next { right: 0; }
}
@media (min-width: 1024px) {
  .home-product-rail-wrap {
    margin-left: 0;
    margin-right: 0;
    padding-left: 2.35rem;
    padding-right: 2.35rem;
  }
  .home-product-rail-item {
    flex-basis: 210px;
  }
  .home-product-rail {
    gap: 1rem;
  }
}

.product-card--related .product-card-body {
  padding: 0.7rem 0.75rem 0.85rem;
}
.product-card--related .product-card-title {
  font-size: 13px;
  min-height: auto;
  -webkit-line-clamp: 2;
}
.price-from {
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.01em;
}
.price-from small {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}

/* Kampanya – kurumsal, hizasızlıksız */
.campaigns-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.campaign-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-width: 0;
}
@media (min-width: 900px) {
  .campaign-featured {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.campaign-featured-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  min-width: 0;
}
@media (min-width: 900px) {
  .campaign-featured-body {
    padding: 2.5rem 2.25rem;
  }
}
.campaign-featured-media {
  min-height: 240px;
  overflow: hidden;
  background: #f1f5f9;
  min-width: 0;
}
@media (min-width: 900px) {
  .campaign-featured-media {
    min-height: 100%;
  }
}
.campaign-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center right;
}
.campaign-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--express);
  margin-bottom: 0.75rem;
}
.campaign-discount {
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.campaign-discount span {
  font-size: 0.42em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 0.08em;
}
.campaign-discount--text {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}
.campaign-featured-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.campaign-featured-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  max-width: 48ch;
}
.campaign-featured-media--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f4fc 0%, #dbeafe 100%);
  min-height: 240px;
}
.campaign-featured-media--placeholder .material-symbols-outlined {
  font-size: 72px;
  color: #006684;
  opacity: 0.35;
}
.campaign-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 1.35rem;
}
.campaign-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
}
.campaign-chip code {
  font-family: ui-monospace, monospace;
  background: #0d1c2f;
  color: #fff;
  padding: 0.12rem 0.4rem;
  border-radius: 5px;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.campaign-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
  width: fit-content;
  text-decoration: none;
  transition: background 0.15s;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.campaign-cta:hover { background: var(--primary); color: #fff; }
.campaign-cta:disabled.is-active,
.campaign-card-join-form button:disabled.is-active {
  background: #15803d;
  color: #fff;
  cursor: default;
  transform: none;
}
.campaign-cta:disabled.is-used,
.campaign-card-join-form button:disabled.is-used {
  background: #e2e8f0;
  color: #64748b;
  border: 1px solid #cbd5e1;
  cursor: default;
  transform: none;
}
.campaign-featured.is-exhausted,
.campaign-card-pro.is-exhausted {
  opacity: 0.78;
}
.campaign-featured.is-exhausted .campaign-featured-media img,
.campaign-card-pro.is-exhausted .campaign-card-pro-visual img {
  filter: grayscale(0.35);
}
.campaign-used-note {
  margin: 0.55rem 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.45;
}
.campaign-cta:disabled,
.campaign-card-join-form button:disabled {
  cursor: default;
  transform: none;
}
.campaign-join-form { margin: 0; }
.campaign-secondary-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.65rem;
  color: #006684;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.campaign-secondary-link:hover { color: #00a3cc; }
.campaign-code-note {
  margin: 0 0 0.65rem;
  color: #64748b;
  font-size: 12px;
}
.campaign-flash {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  background: #ecfdf5;
  color: #047857;
  font-size: 13px;
  font-weight: 600;
}
.campaign-flash--err {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

/* Kampanya sayfası — kurumsal liste */
.campaigns-page-head h1 {
  letter-spacing: -0.02em;
}
.campaigns-page-intro {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e8eef3;
  border-radius: 12px;
}
.campaigns-page-intro p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.55;
}
.campaigns-page-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.campaign-card-pro {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.campaign-card-pro:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.campaign-card-pro--featured {
  border-color: #d4dee8;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.campaign-card-pro-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
@media (min-width: 768px) {
  .campaign-card-pro-link {
    grid-template-columns: minmax(0, 1fr) min(240px, 32%);
  }
  .campaign-card-pro--featured .campaign-card-pro-link {
    grid-template-columns: minmax(0, 1fr) min(280px, 34%);
  }
}
.campaign-card-pro-content {
  position: relative;
  padding: 1.25rem 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.campaign-card-pro-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #00b2e3;
  border-radius: 0 2px 2px 0;
}
.campaign-card-pro-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.85rem;
}
.campaign-card-pro-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
}
.campaign-card-pro-offer {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #006684;
}
.campaign-card-pro-title {
  margin: 0.15rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.campaign-card-pro-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.55;
  max-width: 52ch;
}
.campaign-card-pro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}
.campaign-card-pro-meta li {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fafbfc;
  font-size: 11px;
  font-weight: 500;
  color: #475569;
  line-height: 1.3;
}
.campaign-card-pro-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.55rem;
  font-size: 13px;
  font-weight: 500;
  color: #006684;
  transition: color 0.15s ease, gap 0.15s ease;
}
.campaign-card-pro-cta .material-symbols-outlined {
  font-size: 18px !important;
  transition: transform 0.15s ease;
}
.campaign-card-pro:hover .campaign-card-pro-cta {
  color: #00b2e3;
}
.campaign-card-pro:hover .campaign-card-pro-cta .material-symbols-outlined {
  transform: translateX(2px);
}
.campaign-card-join-form {
  margin: 0;
  padding: 0 1rem 1rem;
}
.campaign-card-join-form button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  background: #006684;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.campaign-card-join-form button:hover {
  background: #0087aa;
  transform: translateY(-1px);
}
.campaign-card-pro-visual {
  display: none;
  background: #f8fafc;
  border-top: 1px solid #eef2f6;
  min-height: 140px;
}
@media (min-width: 768px) {
  .campaign-card-pro-visual {
    display: block;
    border-top: 0;
    border-left: 1px solid #eef2f6;
    min-height: 100%;
  }
}
.campaign-card-pro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .campaign-card-pro-visual img {
    min-height: 100%;
  }
}

/* Kampanya sayfası — eski grid (kullanılmıyor) */
.campaigns-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .campaigns-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1100px) {
  .campaigns-page-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.campaigns-page-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .campaigns-page-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.campaigns-page-grid .campaign-card-head {
  min-height: 104px;
  padding: 1.1rem 1.15rem 1rem;
}
.campaigns-page-grid .campaign-card-head .offer {
  font-size: clamp(20px, 2.2vw, 26px);
}
.campaigns-page-grid .campaign-card-body {
  padding: 1rem 1.15rem 1.1rem;
}
.campaigns-page-grid .campaign-card-body h3 {
  font-size: 15px;
}
.campaigns-page-grid .campaign-card-body p {
  font-size: 12px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Alt kampanyalar – eşit kartlar, net okunur */
.campaign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .campaign-grid { grid-template-columns: 1fr 1fr; }
}
.campaign-card-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 0;
}
.campaign-card-v2:hover {
  box-shadow: 0 12px 32px rgba(13, 28, 47, 0.08);
  border-color: #c5d5e0;
}
.campaign-card-head {
  padding: 1.35rem 1.5rem 1.15rem;
  color: #fff;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.campaign-card-head.tone-cyan {
  background: linear-gradient(135deg, #006684 0%, #00b2e3 100%);
}
.campaign-card-head.tone-slate {
  background: linear-gradient(135deg, #0d1c2f 0%, #334155 100%);
}
.campaign-card-head .offer {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.campaign-card-head .offer-sub {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.25rem;
}
.campaign-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.campaign-card-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.campaign-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.campaign-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.campaign-card-foot .date {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.campaign-card-foot .go {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

/* Ana sayfa — sektör kartları */
.home-sectors {
  min-width: 0;
}

.home-sectors-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home-sectors-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.home-sectors-lead {
  margin: 0.35rem 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
}

.home-sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.home-sector-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  min-height: 106px;
  padding: 1rem 3rem 1rem 1.1rem;
  border: 1px solid #dfe8ed;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.035);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease;
}

.home-sector-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #006684 0%, #00b2e3 62%, rgba(0, 178, 227, 0) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sector-card::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  color: #006684;
  font-size: 15px;
  line-height: 1;
  opacity: 0;
  transform: translate(-5px, -50%);
  transition: opacity 0.2s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sector-card:hover {
  border-color: rgba(0, 178, 227, 0.38);
  background: #fbfeff;
  box-shadow: 0 12px 28px rgba(0, 77, 99, 0.09);
  transform: translateY(-3px);
  text-decoration: none;
}

.home-sector-card:hover::before,
.home-sector-card:focus-visible::before {
  transform: scaleX(1);
}

.home-sector-card:hover::after,
.home-sector-card:focus-visible::after {
  opacity: 0.8;
  transform: translateY(-50%);
}

.home-sector-card:focus-visible {
  outline: 3px solid rgba(0, 178, 227, 0.2);
  outline-offset: 3px;
}

.home-sector-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  background: #edf8fb;
  color: #006684;
  border: 1px solid rgba(0, 178, 227, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 3px 8px rgba(0, 102, 132, 0.06);
  transition:
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sector-card:hover .home-sector-icon {
  background: linear-gradient(145deg, #007d9f 0%, #006684 100%);
  color: #fff;
  border-color: #006684;
  box-shadow: 0 7px 16px rgba(0, 102, 132, 0.2);
  transform: translateY(-1px);
}

.home-sector-text {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}

.home-sector-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}

.home-sector-suffix {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #94a3b8;
}

.home-sector-card:hover .home-sector-name {
  color: #006684;
}

.home-sector-icon .sector-svg {
  display: block;
  width: 29px;
  height: 29px;
  overflow: visible;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-sector-card:hover .sector-svg {
  transform: scale(1.04);
}

.home-sector-icon .sector-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.home-sector-icon .sector-icon-emoji {
  font-size: 22px;
  line-height: 1;
}

@media (min-width: 560px) {
  .home-sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }
}

@media (min-width: 960px) {
  .home-sectors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .home-sector-name {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .home-sectors-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-sectors-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .home-sector-card {
    min-height: 94px;
    padding: 0.85rem 2.75rem 0.85rem 0.9rem;
    border-radius: 11px;
  }

  .home-sector-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 50%;
  }

  .home-sector-icon .sector-svg {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-sector-card,
  .home-sector-card::before,
  .home-sector-card::after,
  .home-sector-icon,
  .home-sector-icon .sector-svg {
    transition: none !important;
  }
}

/* Eski sektör sınıfları — admin önizleme uyumu */
.sector-section {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 14px;
  padding: 1.25rem;
}
.sector-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  text-align: left;
  border: 1px solid #e8eef3;
  text-decoration: none;
  color: inherit;
  display: block;
}
.sector-label {
  margin: 0.65rem 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}
.sector-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 10px;
  background: #f0f9fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #006684;
  border: 1px solid rgba(0, 178, 227, 0.12);
}
.sector-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.sector-icon-emoji {
  font-size: 22px;
  line-height: 1;
}
.sector-svg {
  display: block;
}

/* Breadcrumb – kurumsal */
.site-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 1.25rem;
  padding: 0.7rem 1rem;
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 12px;
  line-height: 1.4;
}
.site-breadcrumb a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.site-breadcrumb a:hover {
  color: #006684;
  text-decoration: none;
}
.site-breadcrumb .bc-sep {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1;
  user-select: none;
}
.site-breadcrumb .bc-sep-ico {
  width: 16px;
  height: 16px;
  display: block;
}
.site-breadcrumb .bc-current {
  color: #0d1c2f;
  font-weight: 500;
}

/* Ürün listesi */
.listing-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.listing-main-head h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0d1c2f;
  line-height: 1.25;
}

/* Yeni ürünler — Bidolu tarzı banner */
.listing-new-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding: 0.85rem 1.35rem 0.85rem 0.65rem;
  min-height: 132px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  background: #e8f4fc;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}
.listing-new-banner::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(52vw, 360px);
  height: min(52vw, 360px);
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff6b8 0%, #ffe566 42%, #ffd43b 100%);
  pointer-events: none;
}
.listing-new-banner-visual {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: min(38%, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.listing-new-banner-visual img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.12));
}
.listing-new-banner-copy {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.35rem 0.5rem 0.35rem 0;
  text-align: right;
}
.listing-new-banner-kicker {
  margin: 0 0 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.listing-new-banner-title {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1e293b;
  max-width: 16ch;
  margin-left: auto;
}
.listing-page--new .listing-main-head h1 {
  font-size: 1.35rem;
}
.listing-grid--new-page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .listing-grid--new-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .listing-grid--new-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .listing-new-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 1.1rem;
    min-height: 0;
  }
  .listing-new-banner::before {
    right: -25%;
    top: auto;
    bottom: -35%;
    transform: none;
    width: 220px;
    height: 220px;
  }
  .listing-new-banner-visual {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  .listing-new-banner-copy {
    text-align: center;
    padding: 0;
  }
  .listing-new-banner-title {
    max-width: none;
    margin-left: 0;
  }
}

.listing-main-head p {
  margin: 0.35rem 0 0;
  font-size: 13px;
  color: #64748b;
}
.listing-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.listing-sort-desktop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.listing-sort-label {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.listing-sort-select {
  appearance: none;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 13px;
  font-weight: 600;
  color: #0d1c2f;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.4.4 6 5l4.6-4.6L12 2.8 6 8.8 0 2.8z'/%3E%3C/svg%3E") no-repeat right 0.65rem center;
  cursor: pointer;
}
.listing-sort-select:focus {
  outline: none;
  border-color: #00b2e3;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.15);
}
.listing-toolbar-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.listing-toolbar {
  display: none;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e8eef3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(13, 28, 47, 0.04);
}
.listing-tool {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.75rem;
  border: none;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #334155;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 52px;
}
.listing-tool .material-symbols-outlined {
  font-size: 22px;
  color: #64748b;
  transition: color 0.15s;
  flex-shrink: 0;
}
.listing-tool--filter {
  border-right: 1px solid #e8eef3;
}
.listing-tool:hover,
.listing-tool.is-active {
  background: #f0faff;
  color: #006684;
}
.listing-tool:hover .material-symbols-outlined,
.listing-tool.is-active .material-symbols-outlined {
  color: #00b2e3;
}
.listing-sort-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 30;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(13, 28, 47, 0.12);
  overflow: hidden;
}
.listing-sort-panel[hidden] {
  display: none;
}
.listing-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s, color 0.15s;
}
.listing-sort-option:last-child {
  border-bottom: 0;
}
.listing-sort-option:hover {
  background: #f8fafc;
  color: #006684;
  text-decoration: none;
}
.listing-sort-option.is-active {
  background: #f0faff;
  color: #006684;
}
.listing-sort-option .material-symbols-outlined {
  font-size: 18px;
  color: #00b2e3;
}
.cat-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.25rem 0 0.75rem;
}
.listing-filter-section {
  padding: 0.85rem 1rem 0.25rem;
  border-bottom: 1px solid #f1f5f9;
}
.listing-filter-section:last-child {
  border-bottom: 0;
}
.listing-filter-heading {
  margin: 0 0 0.75rem;
  font-size: 14px;
  font-weight: 600;
  color: #0d1c2f;
}
.listing-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.listing-tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid #b8e8f5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #006684;
  text-decoration: none;
  background: #fff;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.listing-tag-pill:hover,
.listing-tag-pill.is-active {
  background: #f0faff;
  border-color: #00b2e3;
  color: #006684;
  text-decoration: none;
}
.listing-tree-nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.listing-tree-link {
  display: block;
  padding: 0.42rem 0.35rem;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.listing-tree-link.level-1 {
  padding-left: 0.85rem;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}
.listing-tree-link.level-2 {
  padding-left: 1.35rem;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}
.listing-tree-link.level-3 {
  padding-left: 1.85rem;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}
.listing-tree-link.is-group {
  font-weight: 500;
  color: #0d1c2f;
}
.listing-tree-link.is-group.level-1 {
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}
.listing-tree-link.is-group.level-1:first-of-type {
  margin-top: 0.15rem;
  border-top: 0;
  padding-top: 0.42rem;
}
.listing-tree-link.is-active {
  background: #f0faff;
  color: #006684;
  font-weight: 500;
}
.listing-tree-link:hover {
  color: #006684;
  background: #f8fafc;
  text-decoration: none;
}
.listing-tree-link.is-product {
  color: #64748b;
}
.listing-usage-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.listing-usage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0.15rem;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  line-height: 1.35;
}
.listing-usage-item:hover {
  color: #006684;
  text-decoration: none;
}
.listing-usage-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  background: #fff;
}
.listing-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.listing-filter-modal[hidden] {
  display: none !important;
}
.listing-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}
.listing-filter-sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(13, 28, 47, 0.15);
  animation: listingFilterIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes listingFilterIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.listing-filter-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 3rem;
  border-bottom: 1px solid #eef2f7;
  flex-shrink: 0;
}
.listing-filter-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0d1c2f;
}
.listing-filter-close {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0.35rem;
  cursor: pointer;
  color: #64748b;
  line-height: 1;
}
.listing-filter-close .material-symbols-outlined {
  font-size: 24px;
}
body.is-listing-filter-open {
  overflow: hidden;
}
.listing-filter-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding-bottom: 1.5rem;
}
@media (min-width: 901px) {
  .cat-side--desktop .listing-filter-section--tags {
    display: none;
  }
}
@media (max-width: 900px) {
  .cat-side--desktop {
    display: none !important;
  }
}
.listing-grid .product-card--listing .product-card-title {
  font-size: 13px;
}
.listing-grid .product-card--listing .product-card-price .price-from {
  font-size: 15px;
}

/* Ürün listesi — mobil kurumsal */
@media (max-width: 900px) {
  .listing-page {
    padding-top: 0.75rem;
  }
  .listing-page .site-breadcrumb {
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.6rem 0.85rem;
    font-size: 12px;
  }
  .listing-page .listing-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .listing-page .listing-main {
    display: contents;
  }
  .listing-page .listing-toolbar-wrap {
    order: 1;
    margin: 0 -1rem 0.75rem;
    width: calc(100% + 2rem);
  }
  .listing-page .listing-toolbar {
    display: grid;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    border-color: #e8eef3;
  }
  .listing-page .listing-tool {
    flex-direction: column;
    gap: 0.25rem;
    min-height: 68px;
    padding: 0.7rem 0.5rem;
  }
  .listing-page .listing-tool .material-symbols-outlined {
    font-size: 24px;
  }
  .listing-page .listing-sort-desktop {
    display: none;
  }
  .listing-page .cat-side {
    display: none;
  }
  .listing-page .listing-layout.is-cat-open .cat-side {
    display: none;
  }
  .listing-page .listing-main-head {
    order: 3;
    margin-bottom: 1rem !important;
    padding: 0 0.15rem;
  }
  .listing-page .listing-head-row {
    justify-content: center;
  }
  .listing-page .listing-head-row > div {
    text-align: center;
    width: 100%;
  }
  .listing-page .listing-main-head h1 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0d1c2f;
    letter-spacing: -0.02em;
  }
  .listing-page .listing-main-head p {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
  }
  .listing-page .listing-grid,
  .listing-page .listing-empty {
    order: 4;
  }
  .listing-page .listing-grid {
    gap: 0.75rem;
  }
  .listing-page .product-card--listing {
    border-radius: 14px;
    border-color: #e8eef3;
  }
  .listing-page .product-card--listing .product-card-media {
    padding: 0.7rem 0.7rem 0;
  }
  .listing-page .product-card--listing .product-card-badge {
    left: 50%;
    top: 0.95rem;
    transform: translateX(-50%);
  }
  .listing-page .product-card--listing .product-card-body {
    align-items: center;
    text-align: center;
    padding: 0.65rem 0.6rem 0.85rem;
    gap: 0.3rem;
  }
  .listing-page .product-card--listing .product-card-title {
    font-size: 12px;
    font-weight: 500;
    color: #0d1c2f;
    min-height: 2.4em;
    -webkit-line-clamp: 2;
  }
  .listing-page .product-card--listing .product-card-rating {
    justify-content: center;
  }
  .listing-page .product-card--listing .product-card-price {
    justify-content: center;
    width: 100%;
    border-top: none;
    padding-top: 0.25rem;
    margin-top: 0.15rem;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }
  .listing-page .product-card--listing .product-card-price .price-from {
    font-size: 16px;
    color: #0d1c2f;
  }
  .listing-page .product-card--listing .product-card-price small {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
}

@media (min-width: 901px) {
  .listing-toolbar-wrap {
    display: none;
  }
}

/* Bülten widget */
.newsletter-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(13, 28, 47, 0.15);
  padding: 1.25rem;
  animation: slideUp 0.4s ease;
}
.newsletter-widget.hidden { display: none; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ürün detay – şablonlar (matbaa tarzı) */
.product-templates {
  width: 100%;
}
.product-templates--desktop {
  display: none;
  margin-top: 0.85rem;
}
.product-templates--mobile {
  display: block;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .product-templates--desktop { display: block; }
  .product-templates--mobile { display: none; }
}
.product-templates-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.product-templates-top {
  padding: 0;
}
.template-tabs-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.35rem 0 0.15rem;
  border-bottom: 1px solid #e5e7eb;
}
.product-templates .template-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  flex: 1;
  min-width: 0;
}
.product-templates .template-tab {
  padding: 0.85rem 0.95rem;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #64748b;
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  background: none;
  font-family: inherit;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.product-templates .template-tab:hover {
  color: #334155;
}
.product-templates .template-tab.active {
  color: #00b2e3;
  border-bottom-color: #00b2e3;
}
.template-help-ico {
  flex-shrink: 0;
  align-self: center;
  width: 22px;
  height: 22px;
  margin-right: 0.55rem;
  border-radius: 50%;
  border: 1.5px solid #00b2e3;
  color: #00b2e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.template-help-ico:hover {
  background: #00b2e3;
  color: #fff;
}
.template-panel-body {
  padding: 0.85rem 1rem 1rem;
}
.template-panel-body.hidden {
  display: none !important;
}
.template-format-title {
  margin: 0 0 0.55rem;
  font-size: 13px;
  font-weight: 500;
  color: #006684;
}
.template-dl-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.template-dl-list li + li {
  margin-top: 0.15rem;
}
.template-dl-list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.35rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.template-dl-list a:hover {
  background: #f8fafc;
}
.template-file-ico {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: 34px;
  object-fit: contain;
}
.template-dl-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
}
.product-templates-help {
  border-top: 1px solid #e5e7eb;
  padding: 0.35rem 0.85rem 0.65rem;
}
.product-templates-help--solo {
  border-top: 0;
  padding-top: 0.75rem;
}
.template-help-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.template-help-item + .template-help-item {
  border-top: 1px solid #f1f5f9;
}
.template-help-details {
  margin: 0;
}
.template-help-summary {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.6rem 0.35rem;
  cursor: pointer;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  border-radius: 8px;
  list-style: none;
  transition: color 0.15s ease, background 0.15s ease;
  user-select: none;
}
.template-help-summary::-webkit-details-marker {
  display: none;
}
.template-help-summary:hover,
.template-help-details[open] > .template-help-summary {
  color: #006684;
  background: #f0fbff;
}
.template-help-chevron {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  color: #0f172a;
  transition: transform 0.2s ease;
}
.template-help-details[open] .template-help-chevron {
  transform: rotate(90deg);
}
.template-help-q {
  flex: 1;
  min-width: 0;
}
.template-help-answer {
  padding: 0 0.35rem 0.75rem 1.45rem;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 500;
}
.template-help-answer p {
  margin: 0;
}
.template-help-more {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 12px;
  font-weight: 500;
  color: #006684;
  text-decoration: none;
}
.template-help-more:hover {
  text-decoration: underline;
}
button.template-help-ico {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

/* Eski template sınıfları (geriye uyumluluk) */
.template-dl-meta,
.template-dl-ico,
.template-ext {
  display: none;
}

/* Eski template panel (geriye uyumluluk) */
.template-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.template-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 0 1rem;
  gap: 1.5rem;
}
.template-tab {
  padding: 0.85rem 0;
  font-weight: 600;
  font-size: 14px;
  color: #94a3b8;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.template-tab.active {
  color: #006684;
  border-bottom-color: #00b2e3;
}
.template-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-weight: 600;
  font-size: 14px;
  color: #1e293b;
  text-decoration: none;
}
.template-list a:hover { color: var(--primary-dark); }
.template-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #e8f6fb;
  color: #006684;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Renk seçimi — kompakt kurumsal chip satırı */
.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.swatch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transform-origin: center center;
  backface-visibility: hidden;
}
.swatch-chip:hover { border-color: #94a3b8; }
.swatch-chip.active {
  border-color: #00b2e3;
  background: #f0f9fb;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.12);
}
.swatch-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}
.swatch-name {
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
}
.swatch-chip.active .swatch-name { color: #0f172a; }

/* Eski color-grid */
.color-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 520px) {
  .color-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .color-grid { grid-template-columns: repeat(3, 1fr); }
}
.color-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.color-option:hover { border-color: #94a3b8; }
.color-option.active {
  border-color: var(--primary-dark);
  background: #f0faff;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.12);
}
.color-chip {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.color-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.color-meta strong {
  font-size: 13px;
  color: var(--text);
}

/* ========== Ürün sayfası (3 kolon – matbaa tarzı) ========== */
.product-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
}
.product-col-gallery { order: 1; }
.product-col-config { order: 2; }
.product-col-price { order: 3; }

@media (min-width: 1024px) {
  .product-page {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.45fr) minmax(220px, 0.68fr);
    gap: 1.5rem 1.75rem;
  }
  .product-col-gallery,
  .product-col-config,
  .product-col-price { order: unset; }
  .product-col-price {
    position: sticky;
    top: 8.75rem;
  }
}

.product-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1.35rem;
}
.product-rating-stars,
.product-rating .product-rating-stars {
  display: inline-flex;
  gap: 1px;
  color: #f59e0b;
  vertical-align: middle;
}
.product-rating-stars .material-symbols-outlined,
.product-rating .material-symbols-outlined {
  font-size: 18px;
}
.product-rating .material-symbols-outlined {
  font-size: 18px;
  color: #f59e0b;
}
.product-rating-count {
  margin-left: 0.35rem;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.product-gallery-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem;
}
.product-gallery-main {
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #f3f6f9;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: stretch;
  position: relative;
  border: 1px solid #eef2f6;
}
.product-gallery-main > * {
  grid-area: 1 / 1;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
  display: block;
  pointer-events: none;
}
.product-gallery-zoom {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  z-index: 1;
}
.product-gallery-zoom-hint {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: rgba(13, 28, 47, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.product-gallery-main:hover .product-gallery-zoom-hint,
.product-gallery-zoom:focus-visible .product-gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}
.product-gallery-nav {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: start;
  width: 40px;
  height: 40px;
  margin-left: 0.55rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
  color: #0d1c2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 28, 47, 0.12);
}
.product-gallery-nav:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0d1c2f;
}
.product-gallery-nav .material-symbols-outlined { font-size: 22px; }
.product-gallery-nav--next {
  justify-self: end;
  margin-left: 0;
  margin-right: 0.55rem;
}

/* Ürün lightbox — kompakt, kurumsal */
.product-gallery-lightbox .pdb-lightbox-backdrop {
  background: rgba(13, 28, 47, 0.58);
  backdrop-filter: blur(2px);
}
.product-gallery-lightbox .pdb-lightbox-dialog--product {
  width: min(560px, 92vw);
  max-height: min(78dvh, 680px);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(13, 28, 47, 0.28);
  padding: 2.5rem 2rem 1.15rem;
}
.product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-figure {
  gap: 0.5rem;
}
.product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-img {
  max-height: min(58dvh, 480px);
  width: auto;
  max-width: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: none;
}
.product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-caption {
  color: #64748b;
  font-weight: 600;
}
.product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-close,
.product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-nav {
  background: #fff;
  border-color: #e2e8f0;
  color: #0d1c2f;
}
.product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-nav--prev {
  left: 0.35rem;
}
.product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-nav--next {
  right: 0.35rem;
}
@media (max-width: 720px) {
  .product-gallery-nav {
    width: 34px;
    height: 34px;
  }
  .product-gallery-zoom-hint {
    opacity: 0.95;
    transform: none;
  }
  .product-gallery-lightbox .pdb-lightbox-dialog--product {
    width: min(100%, 94vw);
    padding: 2.5rem 0.75rem 1rem;
    max-height: 86dvh;
  }
  .product-gallery-lightbox .pdb-lightbox-dialog--product .pdb-lightbox-img {
    max-height: min(62dvh, 420px);
  }
}
.product-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
  overflow-x: auto;
}
.product-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
  cursor: pointer;
}
.product-thumb.active {
  border-color: #00b2e3;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.design-check-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  background: #f4f6f8;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s, border-color 0.15s;
}
.design-check-bar:hover {
  background: #eef6fa;
  border-color: #b6dceb;
}
.design-check-ico {
  color: #00b2e3;
  font-size: 22px !important;
  flex-shrink: 0;
}
.design-check-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.design-check-copy strong {
  font-size: 12px;
  font-weight: 600;
}
.design-check-copy span {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}
.design-check-bar > .material-symbols-outlined:last-child {
  color: #94a3b8;
  font-size: 20px !important;
}

/* Fiyat kutusu (sağ kolon) */
.product-price-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.ppb-label {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}
.ppb-vat {
  margin: 0.15rem 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
}
button.ppb-vat {
  display: inline-block;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color 0.15s ease;
}
button.ppb-vat:hover,
button.ppb-vat:focus-visible {
  color: #00b2e3;
}
button.ppb-vat:focus-visible {
  outline: 2px solid rgba(0, 178, 227, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}
.ppb-total {
  margin: 0.55rem 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.05rem);
  font-weight: 600;
  color: #0c4a6e;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  transform-origin: left center;
}
.ppb-total.ppb-total--up {
  animation: ppbTickerUp 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.ppb-total.ppb-total--down {
  animation: ppbTickerDown 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes ppbTickerUp {
  0% { color: #00b2e3; transform: translateY(0.18em); }
  45% { color: #0088b0; transform: translateY(0); }
  100% { color: #0c4a6e; transform: translateY(0); }
}
@keyframes ppbTickerDown {
  0% { color: #00b2e3; transform: translateY(-0.18em); }
  45% { color: #0088b0; transform: translateY(0); }
  100% { color: #0c4a6e; transform: translateY(0); }
}
@keyframes uiSmoothTurn {
  0% { transform: perspective(560px) rotateY(0deg); }
  32% { transform: perspective(560px) rotateY(-9deg); }
  68% { transform: perspective(560px) rotateY(5deg); }
  100% { transform: perspective(560px) rotateY(0deg); }
}
@keyframes uiPriceTurn {
  0% { transform: perspective(480px) rotateY(0deg) scale(1); }
  42% { transform: perspective(480px) rotateY(-7deg) scale(1.035); }
  100% { transform: perspective(480px) rotateY(0deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .cfg-tile.cfg-opt--select,
  .swatch-chip.cfg-opt--select,
  .qty-table--picker .qty-row.qty-row--select,
  .qty-table--picker .qty-row-price.qty-price-flash,
  .ppb-total.ppb-total--up,
  .ppb-total.ppb-total--down,
  .product-mobile-cta-price.ppb-total--up,
  .product-mobile-cta-price.ppb-total--down {
    animation: none;
  }
}
.ppb-breakdown {
  margin: -0.35rem 0 0.85rem;
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.45;
}
.ppb-cart {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: 10px;
  background: #00b2e3;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}
.ppb-cart:hover { background: #0099c7; }
.ppb-cart:disabled { opacity: 0.75; cursor: wait; }
.ppb-design {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid #00b2e3;
  border-radius: 10px;
  background: #fff;
  color: #00b2e3;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.ppb-design:hover {
  background: #f0faff;
}
.ppb-ship {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.45;
}
.ppb-ship .material-symbols-outlined {
  font-size: 18px !important;
  color: #00b2e3;
  flex-shrink: 0;
  margin-top: 1px;
}
.ppb-ship strong {
  color: #0f172a;
  font-weight: 600;
}

/* Mobil: sabit alt bar (fiyat + sepete ekle) — Bi Dolubaski tarzı */
.product-mobile-cta {
  display: none;
}
@media (max-width: 1023.98px) {
  .ppb-ship--desktop {
    display: none;
  }
  .product-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #e8eef3;
    box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.08);
  }
  .product-mobile-cta-ship {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.35;
  }
  .product-mobile-cta-ship .material-symbols-outlined {
    flex: 0 0 auto;
    font-size: 16px;
    color: #006684;
    margin-top: 1px;
  }
  .product-mobile-cta-ship strong {
    color: #0f172a;
    font-weight: 600;
  }
  .product-mobile-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
  }
  body.is-product-page {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }
  body.is-product-page .newsletter-widget {
    bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px) + 12px);
  }
  .product-mobile-cta-price {
    margin: 0;
    min-width: 0;
    flex: 1 1 auto;
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    transform-origin: left center;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-mobile-cta-price.ppb-total--up {
    animation: ppbTickerUpMobile 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .product-mobile-cta-price.ppb-total--down {
    animation: ppbTickerDownMobile 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes ppbTickerUpMobile {
    0% { color: #00b2e3; transform: translateY(0.16em); }
    45% { color: #0088b0; transform: translateY(0); }
    100% { color: #0f172a; transform: translateY(0); }
  }
  @keyframes ppbTickerDownMobile {
    0% { color: #00b2e3; transform: translateY(-0.16em); }
    45% { color: #0088b0; transform: translateY(0); }
    100% { color: #0f172a; transform: translateY(0); }
  }
  .product-mobile-cta-btn {
    flex: 0 0 auto;
    min-width: 9.5rem;
    padding: 0.85rem 1.15rem;
    border: 0;
    border-radius: 8px;
    background: #00b2e3;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.15s ease;
  }
  .product-mobile-cta-btn:hover { background: #0099c7; }
  .product-mobile-cta-btn:disabled { opacity: 0.75; cursor: wait; }
  .product-mobile-cta-btn--photo { background: #0f172a; }
  .product-mobile-cta-btn--photo:hover { background: #1e293b; }
  .product-mobile-cta-btn--outline {
    width: 100%;
    background: #fff;
    color: #006684;
    border: 2px solid #00b2e3;
  }
  .product-mobile-cta-row--secondary { margin-top: 0.15rem; }
}
@media (min-width: 1024px) {
  .product-mobile-cta { display: none !important; }
}

/* ========== Ürün sayfası alt bölümler (matbaa tarzı) ========== */
.product-detail-below {
  margin-top: 2.5rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.pdb-block {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
}
.pdb-heading {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.pdb-rating-count { color: #64748b; font-size: 13px; font-weight: 600; }
.pdb-btn-outline {
  appearance: none;
  border: 1.5px solid #006684;
  background: #fff;
  color: #006684;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.pdb-btn-outline:hover { background: #f0fbff; }
.pdb-btn-link {
  appearance: none;
  border: 0;
  background: none;
  color: #006684;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 0.75rem;
}
.pdb-btn-link:hover { text-decoration: underline; }
.pdb-community .pdb-tab.is-active {
  color: #006684;
  border-bottom-color: #006684;
}
.pdb-community .pdb-tablist {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.25rem;
}
.pdb-community .pdb-tab {
  font-size: 14px;
  padding: 0.85rem 0.25rem;
  margin-right: 1.25rem;
  border-bottom-width: 2px;
}
.pdb-subheading {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.pdb-sibling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.pdb-sibling-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e8eef3;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pdb-sibling-card:hover {
  border-color: #00b2e3;
  box-shadow: 0 4px 14px rgba(0, 178, 227, 0.12);
}
.pdb-sibling-card.is-current {
  border-color: #00b2e3;
  background: #f0fbff;
}
.pdb-sibling-thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}
.pdb-sibling-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdb-sibling-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.pdb-sibling-body strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.pdb-sibling-body em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: #006684;
}
.pdb-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  border-bottom: 1px solid #e8eef3;
  margin: -0.25rem -0.35rem 1rem;
  padding: 0 0.35rem;
}
.pdb-tablist--sub {
  margin-top: 0;
}
.pdb-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.75rem 0.95rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.pdb-tab.is-active {
  color: #006684;
  border-bottom-color: #00b2e3;
}
.pdb-tab-count {
  font-weight: 600;
  color: #94a3b8;
}
.pdb-panel,
.pdb-cpanel {
  display: none;
}
.pdb-panel.is-active,
.pdb-cpanel.is-active {
  display: block;
}
.pdb-order-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.pdb-order-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 1.65rem 1.25rem 1.5rem;
}
.pdb-order-step {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 0 0.65rem;
}
.pdb-order-icon {
  display: block;
  margin: 0 auto 0.85rem;
  font-size: 42px;
  line-height: 1;
  color: #64748b;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}
.pdb-order-step-title {
  margin: 0 0 0.55rem;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.pdb-order-step-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #64748b;
  font-weight: 500;
}
.pdb-order-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.35rem 0.15rem 0;
  color: #334155;
}
.pdb-order-arrow .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: 'FILL' 0, 'wght' 600;
}
@media (max-width: 960px) {
  .pdb-order-flow {
    flex-direction: column;
    align-items: stretch;
    padding: 1.15rem 1rem;
  }
  .pdb-order-step {
    text-align: left;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.25rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #eef2f7;
  }
  .pdb-order-step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .pdb-order-icon {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 36px;
    align-self: start;
  }
  .pdb-order-step-title {
    margin: 0;
    align-self: end;
  }
  .pdb-order-step-text {
    grid-column: 2;
  }
  .pdb-order-arrow {
    display: none;
  }
}
.pdb-rich {
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}
.pdb-rich h2,
.pdb-rich h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}
.pdb-rich h2:first-child,
.pdb-rich h3:first-child {
  margin-top: 0;
}
.pdb-rich ul,
.pdb-rich ol {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.pdb-reviews-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 1.75rem 2rem;
  align-items: start;
}
.pdb-reviews-sidebar {
  padding: 1.15rem 1.1rem;
  border: 1px solid #e8eef3;
  border-radius: 14px;
  background: linear-gradient(180deg, #fafcff 0%, #fff 100%);
}
.pdb-reviews-sidebar-title {
  margin: 0 0 1rem;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.pdb-reviews-score {
  text-align: center;
  margin-bottom: 1rem;
}
.pdb-reviews-score-value {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.pdb-reviews-score-stars {
  display: flex;
  justify-content: center;
  margin: 0.45rem 0 0.35rem;
  color: #f59e0b;
}
.pdb-reviews-score-stars .rating-stars {
  font-size: 18px;
  gap: 2px;
}
.pdb-reviews-score-count {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}
.pdb-reviews-ask-btn,
.pdb-reviews-write-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 0.85rem;
  padding: 0.65rem 1rem;
  border: 1.5px solid #006684;
  border-radius: 10px;
  background: #fff;
  color: #006684;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pdb-reviews-ask-btn:hover,
.pdb-reviews-write-btn.is-outline:hover {
  background: #f0fbff;
}
.pdb-reviews-write-btn {
  margin-top: 1rem;
  background: #006684;
  color: #fff;
  border-color: #006684;
}
.pdb-reviews-write-btn:hover {
  background: #00556d;
  border-color: #00556d;
}
.pdb-reviews-sidebar-note {
  margin: 1rem 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}
.pdb-review-delivery-notice {
  margin-top: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #854d0e;
}
.pdb-review-delivery-notice--banner {
  width: 100%;
  margin: 0;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  border-left: 3px solid #eab308;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}
.pdb-review-delivery-notice a {
  color: #a16207;
  font-weight: 600;
  text-decoration: underline;
}
.pdb-review-photo-field input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 13px;
}
.review-image-picker-input {
  display: none !important;
}
.review-image-picker-toolbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.45rem;
}
.review-image-picker-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #0d1c2f;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.review-image-picker-add:hover:not(:disabled) {
  background: #f0faff;
  border-color: #7dd3fc;
  color: #006684;
}
.review-image-picker-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.review-image-picker-count {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}
.review-image-picker-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}
.review-image-picker-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.review-image-picker-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-image-picker-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-image-picker-remove:hover {
  background: #dc2626;
}
.pdb-field-optional {
  font-weight: 400;
  color: #94a3b8;
  font-style: normal;
}
.pdb-review-card-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.pdb-review-photo {
  display: block;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  cursor: zoom-in;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.pdb-review-photo:hover,
.pdb-review-photo:focus-visible {
  border-color: #00b2e3;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.18);
  outline: none;
  transform: translateY(-1px);
}
.pdb-review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
body.pdb-lightbox-open {
  overflow: hidden;
}
.pdb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}
.pdb-lightbox[hidden] {
  display: none !important;
}
.pdb-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 28, 47, 0.72);
  backdrop-filter: blur(4px);
}
.pdb-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88dvh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(13, 28, 47, 0.35);
  padding: 1.25rem 1.25rem 1.5rem;
}
.pdb-lightbox-figure {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.pdb-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: min(72dvh, 760px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
}
.pdb-lightbox-caption {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #64748b;
}
.pdb-lightbox-caption[hidden] {
  display: none !important;
}
.pdb-lightbox-close,
.pdb-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0d1c2f;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 28, 47, 0.1);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pdb-lightbox-close:hover,
.pdb-lightbox-nav:hover {
  background: #f0faff;
  border-color: #b6e8f6;
  color: #006684;
}
.pdb-lightbox-close {
  top: 0.75rem;
  right: 0.75rem;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  z-index: 2;
}
.pdb-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
}
.pdb-lightbox-nav--prev {
  left: 0.65rem;
}
.pdb-lightbox-nav--next {
  right: 0.65rem;
}
.pdb-lightbox-nav[hidden],
.pdb-lightbox-close .material-symbols-outlined,
.pdb-lightbox-nav .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}
.pdb-lightbox-nav[hidden] {
  display: none !important;
}
@media (max-width: 720px) {
  .pdb-lightbox-dialog {
    padding: 2.75rem 0.75rem 1rem;
    border-radius: 14px;
    max-height: 92dvh;
  }
  .pdb-lightbox-img {
    max-height: min(70dvh, 640px);
  }
  .pdb-lightbox-nav--prev {
    left: 0.35rem;
  }
  .pdb-lightbox-nav--next {
    right: 0.35rem;
  }
}
.pdb-reviews-bars {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pdb-reviews-bar-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 0.45rem;
}
.pdb-reviews-bar-label {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
}
.pdb-reviews-bar-track {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e8eef3;
  overflow: hidden;
}
.pdb-reviews-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00b2e3, #0094c2);
}
.pdb-reviews-bar-count {
  font-size: 12px;
  font-weight: 500;
  color: #475569;
  text-align: right;
}
.pdb-reviews-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef2f6;
}
.pdb-reviews-main-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}
.pdb-reviews-main-title span {
  color: #64748b;
  font-weight: 500;
}
.pdb-review-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pdb-review-card {
  padding: 1rem 1.05rem;
  border: 1px solid #e8eef3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.pdb-review-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.pdb-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #006684 0%, #00b2e3 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.pdb-review-avatar.is-qa {
  width: 38px;
  height: 38px;
  font-size: 12px;
}
.pdb-review-card-user strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
}
.pdb-review-card-user time {
  display: block;
  margin-top: 0.1rem;
  font-size: 12px;
  color: #94a3b8;
}
.pdb-review-card-stars {
  color: #f59e0b;
}
.pdb-review-card-stars .rating-stars {
  font-size: 16px;
}
.pdb-review-card-title {
  margin: 0 0 0.35rem;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}
.pdb-review-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}
.pdb-reviews-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.5rem 1rem;
  border: 1px dashed #dbe3ea;
  border-radius: 14px;
  background: #fafcff;
  text-align: center;
}

.pdb-reviews-empty .pdb-empty-ico {
  display: block;
  color: #94a3b8;
}

.pdb-reviews-empty .material-symbols-outlined {
  font-size: 34px;
  color: #94a3b8;
}
.pdb-reviews-empty p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}
.pdb-qa-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pdb-qa-intro {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eef2f6;
}
.pdb-qa-intro-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.25rem;
}
.pdb-qa-intro-copy {
  min-width: 0;
  flex: 1 1 auto;
}
.pdb-qa-intro-copy .pdb-subheading {
  margin: 0 0 0.35rem;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}
.pdb-qa-intro-action {
  flex: 0 0 auto;
}
.pdb-qa-intro .pdb-reviews-ask-btn {
  width: auto;
  min-width: 132px;
  margin-top: 0;
}
.pdb-qa-lead {
  margin: 0;
  max-width: 56ch;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}
.pdb-qa-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pdb-qa-card {
  padding: 1rem 1.05rem;
  border: 1px solid #e8eef3;
  border-radius: 14px;
  background: #fff;
}
.pdb-qa-card-q {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.pdb-qa-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}
.pdb-qa-card-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.pdb-qa-card-meta time {
  font-size: 12px;
  color: #94a3b8;
}
.pdb-qa-card-q p,
.pdb-qa-card-a p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}
.pdb-qa-card-a {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcfe 0%, #f3fbfe 100%);
  border: 1px solid rgba(0, 178, 227, 0.14);
}
.pdb-qa-brand-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #006684;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.pdb-qa-card-a strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 13px;
  font-weight: 600;
  color: #006684;
}
.pdb-form-hint {
  margin: -0.35rem 0 0.85rem;
  font-size: 12px;
  color: #94a3b8;
}
.pdb-reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pdb-rating-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  font-size: 13px;
}
.pdb-rating-stars,
.pdb-review-stars {
  display: inline-flex;
  gap: 1px;
  color: #f59e0b;
}
.pdb-rating-stars .material-symbols-outlined,
.pdb-review-stars .material-symbols-outlined {
  font-size: 18px;
}
.pdb-review-list,
.pdb-qa-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pdb-review-item,
.pdb-qa-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef2f6;
}
.pdb-review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 12px;
}
.pdb-review-meta strong {
  font-size: 13px;
  color: #0f172a;
}
.pdb-review-meta time {
  color: #94a3b8;
}
.pdb-review-item p,
.pdb-qa-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}
.pdb-qa-q,
.pdb-qa-a {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.pdb-qa-a {
  margin-top: 0.65rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
}
.pdb-qa-q .material-symbols-outlined,
.pdb-qa-a .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 20px;
  color: #00b2e3;
}
.pdb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pdb-faq-item {
  border: 1px solid #e8eef3;
  border-radius: 8px;
  overflow: hidden;
}
.pdb-faq-item summary {
  padding: 0.85rem 1rem;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.pdb-faq-item summary::-webkit-details-marker { display: none; }
.pdb-faq-body {
  padding: 0 1rem 0.85rem;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}
.pdb-empty {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}
.pdb-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8eef3;
}
.pdb-form h4 {
  margin: 0 0 0.75rem;
  font-size: 14px;
  font-weight: 600;
}
.pdb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.pdb-form-grid .full { grid-column: 1 / -1; }
.pdb-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}
.pdb-form input,
.pdb-form select,
.pdb-form textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  color: #0f172a;
}
.pdb-form-msg {
  margin: 0.75rem 0 0;
  font-size: 13px;
  font-weight: 600;
}
.pdb-form-msg.is-ok { color: #059669; }
.pdb-form-msg.is-err { color: #dc2626; }
.pdb-form-actions {
  margin-top: 1rem;
}
.pdb-gate-note,
.pdb-action-note {
  margin: 0;
  max-width: 220px;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  text-align: right;
}
.pdb-gate-note {
  max-width: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-align: left;
}
.pdb-gate-note a {
  color: #006684;
  font-weight: 500;
}
.pdb-toggle-form { margin-top: 0.75rem; }
.pdb-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.ppb-cart--photo {
  background: #0f172a;
  margin-bottom: 0.5rem;
}
.ppb-cart--photo:hover { background: #1e293b; }
.ppb-cart--secondary {
  background: #fff;
  color: #006684;
  border: 2px solid #00b2e3;
}
.ppb-cart--secondary:hover {
  background: #f0fbff;
}
@media (max-width: 639.98px) {
  .pdb-form-grid { grid-template-columns: 1fr; }
  .pdb-block { padding: 1rem; }
  .pdb-reviews-layout {
    grid-template-columns: 1fr;
  }
  .pdb-review-card-head {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .pdb-review-card-stars {
    grid-column: 1 / -1;
    padding-left: calc(42px + 0.75rem);
  }
  .pdb-qa-intro-head {
    flex-direction: column;
    align-items: stretch;
  }
  .pdb-qa-intro-action .pdb-reviews-ask-btn {
    width: 100%;
  }
}
@media (max-width: 900px) and (min-width: 640px) {
  .pdb-reviews-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.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;
}

/* ========== Yapılandırıcı satırları (kurumsal form) ========== */
.cfg-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e8eef3;
}
.cfg-row[hidden] {
  display: none !important;
}
.cfg-row.cfg-row--qty {
  border-bottom: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .cfg-row.cfg-row--qty {
    gap: 0.85rem;
    padding-top: 1.25rem;
  }
}
.cfg-opts--qty {
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  width: 100%;
}
.cfg-qty-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}
.cfg-qty-note {
  margin: 0 0 0.55rem;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.cfg-qty-head strong {
  font-size: 14px;
  font-weight: 750;
  color: #1e293b;
}
@media (min-width: 1024px) {
  .cfg-qty-head strong {
    font-size: 15px;
  }
}
@media (min-width: 720px) {
  .cfg-row {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 0.95rem 1.15rem;
    align-items: start;
    padding: 1.1rem 0;
  }
  .cfg-label {
    padding-top: 0.7rem;
  }
}
.cfg-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.4rem;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .cfg-label {
    font-size: 15px;
  }
}
.cfg-info {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1px solid #94a3b8;
  background: #fff;
  color: #64748b;
  font-size: 9px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  padding: 0;
  cursor: help;
  display: inline-grid;
  place-items: center;
}
.cfg-info:hover {
  border-color: #00b2e3;
  color: #00b2e3;
}
.cfg-swatch-val {
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  color: #00b2e3;
}
.cfg-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
}

.cfg-row--select .cfg-opts {
  display: block;
}
.cfg-select-wrap {
  position: relative;
  width: min(100%, 430px);
  z-index: 12;
}
.cfg-select-trigger {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.9rem 0.72rem 1rem;
  border: 1.5px solid #d5dde5;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  color: #1e293b;
  font: 600 14px/1.35 inherit;
  text-align: left;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.cfg-select-trigger:hover {
  border-color: rgba(0, 178, 227, 0.55);
  background: #fff;
}
.cfg-select-trigger:focus-visible,
.cfg-select-wrap.is-open .cfg-select-trigger {
  border-color: #00b2e3;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.13), 0 5px 14px rgba(0, 102, 132, 0.08);
}
.cfg-select-current {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.cfg-select-current > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cfg-select-current small {
  flex: 0 0 auto;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: #e6f8fd;
  color: #007a9d;
  font-size: 10px;
  font-weight: 700;
}
.cfg-select-current small[hidden] {
  display: none;
}
.cfg-select-chevron {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: #64748b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), stroke 0.2s ease;
}
.cfg-select-wrap.is-open .cfg-select-chevron {
  transform: rotate(180deg);
  stroke: #006684;
}
.cfg-select-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  max-height: min(330px, 48vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.4rem;
  border: 1px solid #dce7ed;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(15, 43, 56, 0.16), 0 4px 12px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(12px);
  scrollbar-width: thin;
  scrollbar-color: #9bddec #eef7fa;
  transform-origin: top center;
}
.cfg-select-menu:not([hidden]) {
  animation: cfgSelectMenuIn 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cfg-select-menu[hidden] {
  display: none !important;
}
.cfg-select-option {
  position: relative;
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.62rem 0.7rem 0.62rem 0.8rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #334155;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.cfg-select-option + .cfg-select-option {
  margin-top: 0.15rem;
}
.cfg-select-option:hover,
.cfg-select-option:focus-visible {
  outline: none;
  background: #eaf9fd;
  color: #005c77;
}
.cfg-select-option:active {
  transform: scale(0.995);
}
.cfg-select-option.active {
  background: linear-gradient(100deg, #006684 0%, #008fb8 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 102, 132, 0.2);
}
.cfg-select-option-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
}
.cfg-select-option-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.cfg-select-option-copy small {
  flex: 0 0 auto;
  color: #008fb8;
  font-size: 10px;
  font-weight: 700;
}
.cfg-select-option.active .cfg-select-option-copy small {
  color: #c8f4ff;
}
.cfg-select-option-check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #c9d8df;
  border-radius: 999px;
  color: transparent;
}
.cfg-select-option-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cfg-select-option.active .cfg-select-option-check {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
@keyframes cfgSelectMenuIn {
  from { opacity: 0; transform: translateY(-8px) scaleY(0.94); }
  to { opacity: 1; transform: none; }
}
@media (min-width: 1024px) {
  .cfg-select-trigger {
    min-height: 52px;
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .cfg-select-wrap {
    width: 100%;
  }
  .cfg-select-menu {
    max-height: min(300px, 52vh);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cfg-select-menu,
  .cfg-select-trigger,
  .cfg-select-chevron,
  .cfg-select-option {
    animation: none !important;
    transition: none !important;
  }
}

.cfg-tile {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 52px;
  min-width: 132px;
  padding: 0.7rem 2.05rem 0.7rem 0.95rem;
  border: 1.5px solid #d5dde5;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  transform-origin: center center;
  backface-visibility: hidden;
}
.cfg-tile.cfg-opt--select,
.swatch-chip.cfg-opt--select {
  animation: none;
}
.cfg-tile:hover { border-color: #94a3b8; }
.cfg-tile.active {
  border-color: #00b2e3;
  color: #0f172a;
}
.cfg-tile--orient,
.cfg-tile--icon {
  min-width: 148px;
}
@media (min-width: 1024px) {
  .cfg-tile {
    min-height: 56px;
    min-width: 148px;
    padding: 0.8rem 2.2rem 0.8rem 1.05rem;
    gap: 0.7rem;
  }
  .cfg-tile--orient,
  .cfg-tile--icon {
    min-width: 168px;
  }
}
.cfg-tile-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}
.cfg-tile-text strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .cfg-tile-text strong {
    font-size: 15px;
  }
}
.cfg-tile-text small {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.25;
}
.cfg-tile.active .cfg-tile-text small { color: #64748b; }
.cfg-tile-text em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: #00b2e3;
}
.cfg-orient-ico,
.cfg-corner-ico {
  display: grid;
  place-items: center;
  color: #64748b;
  flex-shrink: 0;
}
.cfg-tile.active .cfg-orient-ico,
.cfg-tile.active .cfg-corner-ico {
  color: #00b2e3;
}

.cfg-tick {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  opacity: 0;
  pointer-events: none;
}
.cfg-tick::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #00b2e3;
}
.cfg-tick::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 4px;
  height: 7.5px;
  border: solid #fff;
  border-width: 0 1.7px 1.7px 0;
  transform: rotate(45deg);
}
.cfg-tile.active .cfg-tick { opacity: 1; }

.vat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-end;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  user-select: none;
}
.vat-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.vat-toggle-ui {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #cbd5e1;
  position: relative;
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.vat-toggle-ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
  transition: transform 0.15s ease;
}
.vat-toggle input:checked + .vat-toggle-ui {
  background: #00b2e3;
}
.vat-toggle input:checked + .vat-toggle-ui::after {
  transform: translateX(16px);
}
.vat-toggle input:focus-visible + .vat-toggle-ui {
  outline: 2px solid #00b2e3;
  outline-offset: 2px;
}

.qty-table {
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}
.qty-table--picker {
  border: 1px solid #d4dee8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.qty-table--picker .qty-row {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem 0.85rem 0.75rem;
  border-bottom: 1px solid #edf2f7;
  background: #fff;
  position: relative;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transform-origin: center center;
  backface-visibility: hidden;
}
.qty-table--picker .qty-row.qty-row--select {
  animation: none;
}
.qty-table--picker .qty-row:last-child {
  border-bottom: 0;
}
.qty-table--picker .qty-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #006684;
  transition: width 0.15s ease;
}
.qty-table--picker .qty-row:hover {
  background: #f8fbfd;
}
.qty-table--picker .qty-row.active {
  background: #eef8fc;
  box-shadow: inset 0 0 0 1px rgba(0, 102, 132, 0.12);
}
.qty-table--picker .qty-row.active::before {
  width: 4px;
}
.qty-table--picker .qty-row-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #b8c8d4;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.qty-table--picker .qty-row.active .qty-row-radio {
  border-color: #006684;
  background: #006684;
  box-shadow: inset 0 0 0 3px #fff;
}
.qty-table--picker .qty-row.qty-row--select .qty-row-radio {
  animation: none;
}
@keyframes uiRadioTurn {
  0% { transform: perspective(240px) rotateY(0deg); }
  50% { transform: perspective(240px) rotateY(180deg); }
  100% { transform: perspective(240px) rotateY(360deg); }
}
.qty-row-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.qty-row-qty-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  line-height: 1.2;
}
.qty-row-qty-line strong {
  font-size: 16px;
  font-weight: 600;
  color: #0f2942;
  font-variant-numeric: tabular-nums;
}
.qty-row-qty-line > span:not(.qty-row-badge) {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: lowercase;
}
.qty-table--picker .qty-row.active .qty-row-qty-line strong {
  color: #004d63;
}
.qty-row-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #c2410c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.qty-table--picker .qty-row-unit {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}
.qty-table--picker .qty-row.active .qty-row-unit {
  color: #5b8a9a;
}
.qty-row-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
  text-align: right;
}
.qty-table--picker .qty-row-price {
  font-size: 15px;
  font-weight: 600;
  color: #0f2942;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transform-origin: right center;
  transition: color 0.2s ease;
}
.qty-table--picker .qty-row-price.qty-price-flash {
  animation: none;
}
.qty-table--picker .qty-row.active .qty-row-price {
  color: #006684;
}
.qty-row-ship-hint {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
}
.qty-table--picker .qty-row.active .qty-row-ship-hint {
  color: #5b8a9a;
}
.qty-table-head {
  display: none;
  grid-template-columns: 28px minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  background: #f7f9fb;
  border-bottom: 1px solid #e8eef3;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
}
.qty-row {
  width: 100%;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) minmax(0, 1.35fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  border: 0;
  border-bottom: 1px solid #eef2f6;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.12s ease;
}
.qty-row:last-child { border-bottom: 0; }
.qty-row:hover { background: #fafbfc; }
.qty-row.active { background: #f3fafd; }
.qty-row-radio {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid #cbd5e1;
  display: grid;
  place-items: center;
  background: #fff;
  flex-shrink: 0;
}
.qty-row.active .qty-row-radio {
  border-color: #00b2e3;
  background: #00b2e3;
  box-shadow: inset 0 0 0 3.5px #fff;
}
.qty-row-qty {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1.15;
}
.qty-row-qty strong {
  font-size: 15px;
  font-weight: 750;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}
.qty-row-qty small {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}
.qty-row-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.qty-row-price {
  font-size: 15px;
  font-weight: 750;
  color: #0f172a;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.qty-row.active .qty-row-price { color: #006684; }
.qty-row-unit {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}
.qty-row-ship {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  justify-self: end;
}
@media (min-width: 640px) {
  .qty-table-head { display: grid; }
  .qty-table:not(.qty-table--picker) .qty-row {
    grid-template-columns: 28px minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  }
  .qty-table:not(.qty-table--picker) .qty-row-ship { justify-self: start; }
}
@media (min-width: 1024px) {
  .qty-table {
    border-radius: 12px;
  }
  .qty-table-head {
    padding: 0.75rem 1.35rem;
    font-size: 11px;
  }
  .qty-row {
    padding: 1.05rem 1.35rem;
    gap: 1rem;
  }
  .qty-row-qty strong {
    font-size: 17px;
  }
  .qty-row-qty small {
    font-size: 13px;
  }
  .qty-row-price {
    font-size: 17px;
  }
  .qty-row-unit {
    font-size: 12.5px;
  }
  .qty-row-ship {
    font-size: 13.5px;
  }
  .qty-row-radio {
    width: 20px;
    height: 20px;
  }
}

/* Eski koyu checkout paneli (artık kullanılmıyor) */
.price-checkout { display: none !important; }

/* Toplam fiyat / sepete ekle paneli */
.price-checkout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(165deg, #0d1c2f 0%, #12324a 55%, #0f2a3d 100%);
  border-radius: 14px;
  border: 1px solid #0a1624;
  box-shadow: 0 8px 24px rgba(13, 28, 47, 0.18);
}
.price-checkout-info {
  min-width: 0;
  flex: 1 1 180px;
}
.price-checkout-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.price-checkout-label span {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(0, 178, 227, 0.18);
  color: #7dd3f0;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
}
.price-checkout-total {
  margin: 0.25rem 0 0;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.price-checkout-meta {
  margin: 0.4rem 0 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}
.price-checkout-meta strong,
.price-meta-ship strong {
  color: #7dd3f0;
  font-weight: 600;
}
.price-checkout-btn {
  flex: 0 0 auto;
  min-width: 168px;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 11px;
  background: #00b2e3;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 178, 227, 0.35);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.price-checkout-btn:hover {
  background: #33c2e9;
  box-shadow: 0 6px 18px rgba(0, 178, 227, 0.42);
}
.price-checkout-btn:active { transform: translateY(1px); }

@media (max-width: 480px) {
  .price-checkout-btn {
    width: 100%;
    min-width: 0;
  }
}

/* Eski qty-option (başka sayfada kalırsa) */
.qty-option {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.75rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  background: #fff;
}
.qty-option:hover { border-color: #94a3b8; }
.qty-option.active {
  border-color: var(--primary);
  background: #f0faff;
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.15);
}
.qty-option .ship {
  font-size: 11px;
  color: var(--muted);
  margin-top: 0.25rem;
  font-weight: 600;
}
.qty-option .ship strong { color: var(--primary-dark); }

/* Köşe seçimi */
.corner-option {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  padding-right: 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  font-family: inherit;
  text-align: left;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.corner-option:hover { border-color: #94a3b8; }
.corner-option.active {
  border-color: #00b2e3;
  background: #fff;
}
.corner-option svg { flex-shrink: 0; }

/* Ürün detay – kurumsal içerik */
.product-badge-new {
  display: inline-flex;
  align-items: center;
  background: #ba1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.product-badge-soft {
  display: inline-flex;
  align-items: center;
  background: #e0f7ff;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .spec-grid { grid-template-columns: repeat(4, 1fr); }
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.spec-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin: 0;
}
.spec-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}
.orient-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.orient-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  padding-right: 1.65rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.orient-card:hover { border-color: #94a3b8; }
.orient-card.active {
  border-color: #00b2e3;
  background: #fff;
  box-shadow: none;
}
.orient-mini {
  width: 44px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #f8fafc;
  border-radius: 8px;
  flex-shrink: 0;
}
.orient-card.active .orient-mini { background: #e8f6fb; }
.orient-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.orient-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.orient-desc {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}
.orient-card.active .orient-face {
  stroke: #00b2e3;
}
.orient-visual { display: none; }
.side-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  padding-right: 1.75rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.side-card:hover { border-color: #94a3b8; }
.side-card.active {
  border-color: #00b2e3;
  background: #fff;
  box-shadow: none;
}
.side-card.active svg rect[stroke] {
  stroke: #00b2e3;
}
.option-block + .option-block {
  padding-top: 0.15rem;
}

.shipping-note {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: #f0f9fc;
  border: 1px solid #cce7f5;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
}
.content-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
  padding: 0 1rem;
}
.content-tab {
  padding: 1rem 1.15rem;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}
.content-tab.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}
.prose-product p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.feature-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .feature-pillars { grid-template-columns: repeat(4, 1fr); }
}
.feature-pillar {
  text-align: center;
  padding: 1.15rem 0.75rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.feature-pillar svg { margin: 0 auto 0.65rem; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e0f7ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5' fill='none' stroke='%23006684' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-list {
  padding: 0.5rem 1.5rem 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.faq-item summary {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: #94a3b8;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0.65rem 0 0.25rem;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Yorum / Soru-Cevap – kurumsal panel */
.feedback-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
  padding: 0 1.25rem;
  gap: 0;
}
.feedback-tab {
  position: relative;
  padding: 1rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.feedback-tab.active {
  color: var(--primary-dark);
}
.feedback-tab.active::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: -1px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px 2px 0 0;
}
.feedback-count {
  font-size: 11px;
  font-weight: 500;
  background: #e2e8f0;
  color: #475569;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}
.feedback-tab.active .feedback-count {
  background: #cceef8;
  color: var(--primary-dark);
}
.feedback-summary {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8fafc;
}
@media (min-width: 1024px) {
  .feedback-summary {
    border-bottom: none;
    border-right: 1px solid var(--border);
    align-items: flex-start;
    text-align: left;
  }
}
.rating-bar {
  display: grid;
  grid-template-columns: 12px 1fr 32px;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}
.rating-bar .bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}
.rating-bar .bar i {
  display: block;
  height: 100%;
  background: var(--express);
  border-radius: 999px;
  font-style: normal;
}
.rating-bar em {
  font-style: normal;
  text-align: right;
  color: #94a3b8;
}
.feedback-list {
  padding: 0.5rem 0 0;
}
.feedback-list.qa-only {
  padding: 0.5rem 1.5rem 1.5rem;
}
.review-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.review-item:last-of-type {
  border-bottom: none;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e6eeff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 11px;
  font-weight: 500;
  color: #059669;
  background: #ecfdf5;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.qa-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.qa-item:last-of-type { border-bottom: none; }
.qa-q, .qa-a {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.qa-a { margin-top: 0.85rem; padding-left: 0.25rem; }
.qa-label {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qa-label.answer {
  background: #e0f7ff;
  color: var(--primary-dark);
}
.feedback-gate {
  margin: 1rem 1.5rem 1.5rem;
  padding: 1rem 1.15rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.feedback-gate-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  flex-shrink: 0;
}
.feedback-gate-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.feedback-form {
  margin: 0 1.5rem 1.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.feedback-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font-size: 14px;
  background: #fff;
  outline: none;
}
.feedback-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.15);
}
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(180deg, #007a9a 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 102, 132, 0.22);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}
.btn-primary-sm .account-ico {
  color: #fff;
  flex-shrink: 0;
}
.btn-primary-sm:hover {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #00506a 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(0, 102, 132, 0.28);
  transform: translateY(-1px);
}
.btn-primary-sm:hover .account-ico {
  color: #fff;
}
.btn-primary-sm:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 102, 132, 0.18);
}
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  background: #fff;
  text-decoration: none;
}
.btn-outline-sm:hover { background: #e0f7ff; }
.btn-ghost-sm {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.btn-ghost-sm:hover { color: #64748b; }

/* Ürünler listesi – gri metin, 3 kolon */
.listing-title { color: #475569 !important; font-weight: 500; }
.listing-meta { color: #94a3b8 !important; }
.listing-price { color: #334155 !important; }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Giriş kampanya popup — yatay kurumsal */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s;
}
.promo-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.promo-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  border: 0;
  cursor: pointer;
}
.promo-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, var(--promo-w, 880px));
  max-height: min(90vh, 420px);
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.promo-popup.is-open .promo-popup-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.promo-popup-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #334155;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}
.promo-popup-close:hover { background: #fff; color: #0f172a; }
.promo-popup-layout {
  display: flex;
  align-items: stretch;
}
.promo-popup-content {
  flex: 1.15 1 0;
  padding: 1.35rem 1.45rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  justify-content: flex-start;
}
.promo-popup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #F39200;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}
.promo-popup-offer {
  margin: 0 0 0.35rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.promo-popup-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  line-height: 1.28;
}
.promo-popup-text {
  margin: 0 0 0.8rem;
  line-height: 1.55;
  white-space: pre-wrap;
}
.promo-popup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
}
.promo-popup-chip {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  background: #fff;
}
.promo-popup-chip.is-limit {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}
.promo-popup-cta {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  align-self: center;
  padding: 0.68rem 1.2rem;
  border-radius: 8px;
  background: #006684;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  min-width: 168px;
}
.promo-popup-cta:hover { background: #00b2e3; color: #003849; }
.promo-popup-visual {
  flex: 0.9 1 0;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}
.promo-popup-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 760px) {
  .promo-popup-dialog { max-height: min(92vh, 640px); overflow: auto; }
  .promo-popup-layout { flex-direction: column; }
  .promo-popup-visual {
    flex: none;
    min-height: 150px;
    max-height: 160px;
    order: -1;
  }
  .promo-popup-visual img {
    position: relative;
    inset: auto;
    min-height: 150px;
    max-height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-popup,
  .promo-popup-dialog { transition: none; }
}

/* Kargo takip */
.shipment-track {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  background: #fff;
}
.shipment-track-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}
.shipment-track-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.shipment-track-title {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
}
.shipment-track-no {
  font-weight: 500;
  color: #006684;
}
.shipment-track-meta,
.shipment-track-status {
  margin: 0.35rem 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.shipment-track-status {
  color: #0369a1;
  font-weight: 500;
}
.shipment-track-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.shipment-track-link:hover { background: #e0f2fe; }
.shipment-track-link .material-symbols-outlined { font-size: 16px; }
.shipment-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shipment-step {
  display: flex;
  gap: 0.85rem;
  position: relative;
  padding-bottom: 1.1rem;
}
.shipment-step:last-child { padding-bottom: 0; }
.shipment-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}
.shipment-step-dot {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #e2e8f0;
}
.shipment-step.is-active .shipment-step-dot {
  background: #006684;
  box-shadow: 0 0 0 1px #99f6e4;
}
.shipment-step-body { min-width: 0; }
.shipment-step-date {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
}
.shipment-step-desc {
  margin: 0.2rem 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}
.shipment-step-loc {
  margin: 0.15rem 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.shipment-track-empty {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

/* Yasal sayfalar */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-doc {
    order: 1;
  }
  .legal-sidebar {
    order: 2;
    margin-top: 1.25rem;
  }
}
.legal-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
@media (min-width: 901px) {
  .legal-sidebar {
    position: sticky;
    top: 5.5rem;
  }
}
.legal-sidebar-title {
  margin: 0 0 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.legal-sidebar-link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.legal-sidebar-link:hover,
.legal-sidebar-link.is-active {
  background: #e6f7fc;
  color: var(--primary-dark);
}
.legal-doc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.legal-doc-title {
  margin: 0 0 1.25rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
}
.legal-doc-body {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}
.legal-doc-body h2 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.legal-doc-body p,
.legal-doc-body ul,
.legal-doc-body ol {
  margin: 0 0 0.85rem;
}
.legal-doc-body ul,
.legal-doc-body ol {
  padding-left: 1.25rem;
}
.legal-doc-body a {
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: underline;
}
.legal-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  font-size: 13px;
}
.legal-info-table th,
.legal-info-table td {
  border: 1px solid var(--border);
  padding: 0.55rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.legal-info-table th {
  width: 38%;
  background: #f8fafc;
  font-weight: 500;
  color: var(--text);
}
.legal-doc-updated {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.legal-check {
  font-size: 12px;
  line-height: 1.45;
  align-items: flex-start;
}
.legal-check a {
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: underline;
}

/* Çerez bildirimi */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.85rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
}
.cookie-consent-copy { flex: 1 1 320px; min-width: 0; }
.cookie-consent-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.35rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.cookie-consent-title-icon {
  font-size: 20px;
  color: #00b2e3;
}
.cookie-consent-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
}
.cookie-consent-link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 12px;
  font-weight: 500;
  color: #00b2e3;
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-btn {
  border: none;
  border-radius: 12px;
  padding: 0.62rem 0.95rem;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cookie-btn-primary {
  background: #00b2e3;
  color: #fff;
}
.cookie-btn-primary:hover { background: #0094c2; color: #fff; }
.cookie-btn-outline {
  background: #fff;
  color: #00b2e3;
  border: 1px solid rgba(0, 178, 227, 0.45);
}
.cookie-btn-outline:hover { background: rgba(0, 178, 227, 0.08); }
.cookie-btn-ghost {
  background: #f8fafc;
  color: #475569;
  border: 1px solid var(--border);
}
.cookie-btn-ghost:hover { background: #eef2f6; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
html.is-cookie-modal-open { overflow: hidden; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(15, 23, 42, 0.45);
  cursor: pointer;
}
.cookie-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
}
.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.cookie-modal-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.cookie-modal-title-icon {
  font-size: 22px;
  color: #00b2e3;
}
.cookie-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-modal-close:hover { background: #eef2f6; color: #0f172a; }
.cookie-modal-body { padding: 1rem 1.1rem 1.15rem; }

.cookie-prefs-panel { display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-prefs-panel--embedded {
  margin-top: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fafc;
}
.cookie-prefs-lead {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}
.cookie-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.cookie-pref-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 178, 227, 0.12);
  color: #00b2e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cookie-pref-icon .material-symbols-outlined {
  font-size: 20px;
  text-transform: none;
  letter-spacing: normal;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.cookie-pref-row:last-of-type { border-bottom: none; }
.cookie-pref-copy { flex: 1 1 auto; min-width: 0; }
.cookie-pref-copy strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}
.cookie-pref-copy p {
  margin: 0.2rem 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}
.cookie-pref-badge {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  color: #0084ad;
  background: rgba(0, 178, 227, 0.14);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}
.cookie-pref-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  cursor: pointer;
}
.cookie-pref-toggle input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.cookie-pref-switch {
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.15s ease;
}
.cookie-pref-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
  transition: transform 0.15s ease;
}
.cookie-pref-toggle input:checked + .cookie-pref-switch {
  background: #00b2e3;
}
.cookie-pref-toggle input:checked + .cookie-pref-switch::after {
  transform: translateX(20px);
}
.cookie-prefs-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 0.35rem;
}

.cookie-fab {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 110;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 178, 227, 0.35);
  border-radius: 999px;
  background: #fff;
  color: #00b2e3;
  box-shadow: 0 8px 24px rgba(0, 132, 173, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-fab:hover { background: rgba(0, 178, 227, 0.08); }
.cookie-fab .material-symbols-outlined { font-size: 22px; }

@media (max-width: 640px) {
  .cookie-consent-inner { padding: 0.9rem; }
  .cookie-consent-actions { width: 100%; }
  .cookie-consent-actions .cookie-btn { flex: 1 1 auto; text-align: center; }
  .cookie-fab { bottom: 5.5rem; }
  .cookie-consent.is-visible ~ .cookie-fab { bottom: 1rem; }
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.blog-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .blog-grid, .blog-grid--home { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .blog-grid, .blog-grid--home { grid-template-columns: 1fr; }
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .18s ease, transform .18s ease;
  min-height: 100%;
}
.blog-card:hover {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.blog-card-thumb {
  aspect-ratio: 16 / 10;
  background: #eef2f6;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-thumb-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.blog-card-thumb-empty .blog-thumb-ico {
  width: 32px;
  height: 32px;
}
.blog-card-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.blog-card-cat {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: #e6f7fc;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}
.blog-card-body h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.blog-card-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.blog-card-meta {
  margin-top: auto;
  padding-top: 0.55rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
}
.blog-card-read { color: var(--primary-dark); }
.blog-page-head { margin-bottom: 1.5rem; }
.blog-page-head h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}
.blog-page-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 14px;
}
.blog-article {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.blog-article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.blog-article-head { padding: 1.5rem 1.5rem 0; }
.blog-article-head h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
}
.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.85rem;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
}
.blog-article-body {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}
.blog-article-body h2,
.blog-article-body h3 {
  margin: 1.35rem 0 0.65rem;
  color: var(--text);
  line-height: 1.3;
}
.blog-article-body p,
.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 0.85rem;
}
.blog-article-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 0.75rem 0;
}
.blog-article-body a { color: var(--primary-dark); font-weight: 500; }
.blog-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.5rem 1.5rem;
}
.blog-article-tags span {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}
.blog-back-row { max-width: 820px; margin: 1rem auto 0; }
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}
.blog-back-link .blog-back-ico {
  width: 18px;
  height: 18px;
}

/* Ana sayfa alt — referanslar + öne çıkan blog */
.home-bottom {
  margin-top: 4rem;
  margin-bottom: 3rem;
  padding-top: 2.5rem;
}
.home-references {
  text-align: center;
  margin-bottom: 3.5rem;
}
.home-references-title {
  margin: 0 0 2rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}
.home-references-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.home-references-logos:hover {
  opacity: 0.85;
  filter: grayscale(0);
}
.home-ref-logo {
  font-size: 1.35rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-ref-logo img {
  max-height: 38px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.home-ref-logo:nth-child(4) { font-weight: 500; text-transform: lowercase; }
.home-blog-block { margin-top: 1rem; }
.home-blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home-blog-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #0d1c2f;
  letter-spacing: -0.02em;
}
.home-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 14px;
  font-weight: 600;
  color: #006684;
  text-decoration: none;
  white-space: nowrap;
}
.home-blog-all:hover { text-decoration: underline; }
.home-blog-all .material-symbols-outlined { font-size: 18px; }
.home-blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.home-blog-featured:hover {
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .home-blog-featured { grid-template-columns: 1fr 1fr; }
}
.home-blog-featured-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #eef2f6;
}
@media (min-width: 768px) {
  .home-blog-featured-media { min-height: 360px; }
}
.home-blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.home-blog-featured:hover .home-blog-featured-media img {
  transform: scale(1.06);
}
.home-blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem;
}
@media (min-width: 1024px) {
  .home-blog-featured-body { padding: 3rem; }
}
.home-blog-cat {
  display: block;
  margin-bottom: 1rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #006684;
}
.home-blog-post-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  color: #0d1c2f;
  letter-spacing: -0.02em;
}
.home-blog-excerpt {
  margin: 0 0 1.75rem;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}
.home-blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  background: #00b2e3;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.home-blog-featured:hover .home-blog-read-btn { background: #0094c2; }

/* Site footer — marka cyan / teal (üst çizgi rengi) */
.site-footer {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-top: 3rem;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: linear-gradient(180deg, #00b2e3 0%, #0094c2 55%, #0084ad 100%);
  color: #fff;
  box-sizing: border-box;
}
.site-footer-accent {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #006684 0%, #00b2e3 50%, #006684 100%);
}
.site-footer-main {
  padding: 3rem 1.25rem 2rem;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .site-footer-main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 102, 132, 0.35);
  width: 100%;
}
.site-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.25rem;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .site-footer-bottom-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}
.site-footer-logo {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.site-footer-logo.site-logo--image {
  display: inline-flex;
  align-items: center;
  max-width: 200px;
}
.site-footer-logo:hover { color: #e0f7fc; }
.site-footer-tagline {
  margin: 0 0 1.15rem;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.2);
}
.site-footer-contact {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.site-footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.18);
  transition: color 0.15s ease;
}
.site-footer-contact-item.is-static {
  color: #fff;
  font-weight: 500;
}
.site-footer-contact-item .material-symbols-outlined {
  font-size: 18px;
  color: #fff;
  filter: drop-shadow(0 1px 1px rgba(0, 60, 80, 0.2));
}
.site-footer-contact-item:hover { color: #f0fdff; }
.site-footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.site-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  background: #fff;
  color: #006684;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 40, 60, 0.12);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.site-footer-cta-btn:hover {
  background: #006684;
  color: #fff;
}
.site-footer-cta-btn.is-ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.2);
  box-shadow: none;
}
.site-footer-cta-btn.is-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: #006684;
  text-shadow: none;
}
.site-footer-heading {
  margin: 0 0 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.22);
}
.site-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.site-footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.18);
  transition: color 0.15s ease, padding-left 0.15s ease, opacity 0.15s ease;
}
.site-footer-links a:hover {
  color: #f0fdff;
  padding-left: 0.15rem;
  opacity: 1;
}
.site-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.site-footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.18);
}
.site-footer-trust-item .material-symbols-outlined {
  font-size: 18px;
  color: #fff;
}
.site-footer-trust-item.is-link {
  text-decoration: none;
  color: #fff;
  transition: opacity 0.15s ease;
}
.site-footer-trust-item.is-link:hover { opacity: 0.92; }
.site-footer-trust-item.is-link:hover .material-symbols-outlined { color: #fff; }
.site-footer-copy {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.18);
}
.site-footer-copy strong {
  color: #fff;
  font-weight: 600;
  margin-right: 0.35rem;
}
.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
.site-footer-legal a {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 60, 80, 0.15);
}
.site-footer-legal a:hover { color: #f0fdff; }
@media (max-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}
@media (max-width: 640px) {
  .site-footer-main {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .site-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.support-kicker {
  margin: 0 0 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.support-page-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
.support-page-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.support-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}
.support-page-intro {
  padding: 1.25rem 0;
}
.support-page-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.support-page-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 14px;
  color: #334155;
}
.support-page-list .material-symbols-outlined {
  font-size: 20px;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.support-page-meta {
  margin: 1.25rem 0 0;
  font-size: 13px;
  color: var(--muted);
}
.support-form-card,
.support-faq-card,
.support-side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.support-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.support-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.support-field.full { grid-column: 1 / -1; }
.support-field span {
  font-size: 12px;
  font-weight: 500;
  color: #475569;
}
.support-field input,
.support-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 14px;
  background: #fff;
}
.support-field input:focus,
.support-field textarea:focus {
  outline: 2px solid rgba(0, 178, 227, 0.35);
  border-color: var(--primary);
}
.support-field-optional {
  font-style: normal;
  font-weight: 500;
  color: #94a3b8;
}
.support-phone-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: stretch;
}
.support-phone-row .account-auth-phone-code select,
.support-phone-row .account-auth-phone-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.78rem 0.9rem;
  font-size: 15px;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
}
.support-phone-row .account-auth-phone-code select {
  padding-right: 1.75rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
}
.support-phone-row .account-auth-phone-code select:focus,
.support-phone-row .account-auth-phone-input:focus {
  outline: 2px solid rgba(0, 178, 227, 0.35);
  border-color: var(--primary);
}
.quote-upload {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 1rem;
  background: #f8fafc;
}
.quote-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.quote-upload-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
}
.quote-upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #006684;
}
.quote-upload-lead {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  max-width: 26rem;
}
.quote-upload-hint {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  line-height: 1.45;
}
.quote-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: 1px solid #006684;
  background: #006684;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.quote-upload-btn:hover {
  background: #004054;
  border-color: #004054;
}
.quote-upload-btn--ghost {
  background: #fff;
  color: #006684;
}
.quote-upload-btn--ghost:hover {
  background: #f0faff;
}
.quote-upload-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.quote-upload-list.hidden { display: none; }
.quote-upload-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.quote-upload-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0faff;
  color: #006684;
  flex-shrink: 0;
}
.quote-upload-item-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.quote-upload-item-meta strong {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  word-break: break-all;
}
.quote-upload-item-meta span {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}
.quote-upload-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.quote-upload-remove:hover {
  background: #fee2e2;
  color: #b91c1c;
}
.quote-upload-add {
  display: flex;
  justify-content: flex-start;
}
.support-submit {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  background: var(--primary-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.support-submit:hover { background: #004054; }
.support-alert {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 14px;
}
.support-alert.is-ok {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #065f46;
}
.support-alert.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.support-alert ul {
  margin: 0;
  padding-left: 1rem;
}
.support-help-head {
  margin-bottom: 1.5rem;
}
.support-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.support-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.support-action-btn.is-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-dark);
}
.support-action-btn.is-whatsapp {
  background: #25d366;
  color: #fff;
}
.support-help-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 1rem;
  align-items: start;
}
.support-faq-item {
  border-bottom: 1px solid #eef2f6;
}
.support-faq-item:last-child { border-bottom: 0; }
.support-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.support-faq-item summary::-webkit-details-marker { display: none; }
.support-faq-body {
  padding: 0 0 1rem;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.support-faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.65rem;
}
.support-faq-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
}
.support-side-card h2,
.support-side-card h3 {
  margin: 0 0 0.75rem;
  font-size: 16px;
  color: var(--ink);
}
.support-side-card p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-size: 14px;
  color: #334155;
}
.support-side-card hr {
  border: 0;
  border-top: 1px solid #eef2f6;
  margin: 1rem 0;
}
.support-side-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.support-side-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}
@media (max-width: 900px) {
  .support-page-grid,
  .support-help-grid {
    grid-template-columns: 1fr;
  }
  .support-form {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp canlı destek */
.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 115;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.95rem 0.65rem 0.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
  color: #fff;
}
.whatsapp-fab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.whatsapp-fab-label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .whatsapp-fab {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.55rem;
    border-radius: 999px;
  }
  .whatsapp-fab-label { display: none; }
}
body:has(.cookie-consent.is-visible) .whatsapp-fab {
  bottom: 5.75rem;
}
@media (max-width: 640px) {
  body:has(.cookie-consent.is-visible) .whatsapp-fab {
    bottom: 5.25rem;
  }
}

.home-blog-read-btn .material-symbols-outlined { font-size: 18px; }

/* Baskı dosyası yükleme — ürün sayfası */
.design-upload {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 1rem;
  background: #f8fafc;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.design-upload.is-dragover {
  border-color: #006684;
  background: #f0f9ff;
}
.design-upload-lead {
  margin: 0 0 0.65rem;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-align: center;
}
.design-upload-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.design-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  justify-content: center;
}
.design-upload-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.design-upload-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #006684;
}
.design-upload-secondary--sm {
  padding: 0.4rem 0.7rem;
  font-size: 12px;
}
.design-upload-hint {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}
.design-upload-loading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.design-upload-loading[hidden] { display: none !important; }
.design-upload-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #cbd5e1;
  border-top-color: #006684;
  border-radius: 50%;
  animation: design-upload-spin 0.7s linear infinite;
}
@keyframes design-upload-spin {
  to { transform: rotate(360deg); }
}
.design-upload-done {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.design-upload-done[hidden] { display: none !important; }
.design-upload-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.design-upload-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.design-upload-meta strong {
  font-size: 13px;
  color: #0f172a;
  word-break: break-all;
}
.design-upload-meta span {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}
.design-upload-empty[hidden] { display: none !important; }
.cart-line-spec-file a {
  color: var(--primary-dark, #1d4ed8);
  font-weight: 500;
  text-decoration: underline;
}

/* Enpara / sadakat — herkese açık bilgi sayfası */
.enpara-landing { padding-bottom: 3rem; }

.enpara-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
  margin: 1.25rem 0 1.75rem;
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  border: 1px solid #dbeafe;
  background:
    radial-gradient(ellipse 90% 80% at 0% 0%, rgba(0, 178, 227, 0.14), transparent 55%),
    linear-gradient(165deg, #f8fcff 0%, #fff 58%, #f0faff 100%);
}

.enpara-landing-kicker {
  margin: 0 0 0.35rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00b2e3;
}

.enpara-landing-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #0d1c2f;
  line-height: 1.05;
}

.enpara-landing-lead {
  margin: 0.85rem 0 0;
  max-width: 52ch;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  line-height: 1.6;
}

.enpara-landing-lead strong { color: #0f172a; font-weight: 600; }

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

.enpara-landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.enpara-landing-btn .material-symbols-outlined { font-size: 1.1rem; }

.enpara-landing-btn--primary {
  background: #006684;
  color: #fff;
  border: 1px solid #006684;
}

.enpara-landing-btn--primary:hover { background: #00556d; color: #fff; }

.enpara-landing-btn--ghost {
  background: #fff;
  color: #006684;
  border: 1px solid #cbd5e1;
}

.enpara-landing-btn--ghost:hover {
  border-color: #006684;
  background: #f0faff;
}

.enpara-landing-btn--light {
  background: #fff;
  color: #006684;
  border: 1px solid #fff;
  flex-shrink: 0;
}

.enpara-landing-btn--light:hover { background: #e0f6fd; color: #00556d; }

.enpara-landing-btn--block { width: 100%; }

.enpara-landing-hero-card {
  display: grid;
  place-items: center;
}

.enpara-landing-hero-card-inner {
  width: 100%;
  max-width: 280px;
  padding: 1.35rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #0d1c2f 0%, #12324a 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(13, 28, 47, 0.18);
}

.enpara-landing-hero-card-inner .material-symbols-outlined {
  font-size: 2.2rem;
  color: #7dd3f0;
}

.enpara-landing-hero-card-inner p {
  margin: 0.65rem 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.enpara-landing-hero-card-inner strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.enpara-landing-hero-card-inner span:last-child {
  display: block;
  margin-top: 0.25rem;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.enpara-landing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.enpara-landing-step {
  position: relative;
  padding: 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

.enpara-landing-step-no {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #e0f6fd;
  color: #006684;
  font-size: 11px;
  font-weight: 600;
}

.enpara-landing-step .material-symbols-outlined {
  font-size: 1.6rem;
  color: #006684;
}

.enpara-landing-step h2 {
  margin: 0.55rem 0 0.35rem;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.enpara-landing-step p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.5;
}

.enpara-landing-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1rem;
  align-items: start;
}

.enpara-landing-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.enpara-landing-faq-item {
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.enpara-landing-faq-item h2 {
  margin: 0 0 0.55rem;
  font-size: 16px;
  font-weight: 600;
  color: #0d1c2f;
}

.enpara-landing-faq-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  line-height: 1.6;
}

.enpara-landing-faq-item a {
  color: #006684;
  font-weight: 600;
  text-decoration: underline;
}

.enpara-landing-aside-card,
.enpara-landing-aside-note {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.enpara-landing-aside-card {
  padding: 1.1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.enpara-landing-aside-card h2 {
  margin: 0 0 0.85rem;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.enpara-landing-specs {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.enpara-landing-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.enpara-landing-specs li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.enpara-landing-specs strong {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

.enpara-landing-aside-note {
  display: flex;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: #f8fafc;
}

.enpara-landing-aside-note .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #64748b;
}

.enpara-landing-aside-note p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.5;
}

.enpara-landing-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #006684 0%, #008eb5 100%);
  color: #fff;
}

.enpara-landing-cta-band h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.enpara-landing-cta-band p {
  margin: 0.35rem 0 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 52ch;
}

@media (max-width: 960px) {
  .enpara-landing-hero,
  .enpara-landing-body { grid-template-columns: 1fr; }
  .enpara-landing-hero-card { order: -1; }
  .enpara-landing-hero-card-inner { max-width: none; }
}

@media (max-width: 720px) {
  .enpara-landing-steps { grid-template-columns: 1fr; }
  .enpara-landing-cta-band { flex-direction: column; align-items: flex-start; }
  .enpara-landing-btn--light { width: 100%; }
}

/* 404 – kurumsal hata sayfası */
body.is-error-page {
  background: var(--bg);
}

.error-page-html {
  zoom: 1;
}

.is-error-page-standalone {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 178, 227, 0.12), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(0, 102, 132, 0.1), transparent 30%),
    #f4f7fa;
}

.is-error-page-standalone .error-page {
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(5.5rem, 10vh, 8rem) 1.5rem 2rem;
  position: relative;
}

.error-page-logo {
  position: absolute;
  top: 2rem;
  left: clamp(1.5rem, 5vw, 4rem);
  color: #0d1c2f;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}
.error-page-logo.site-logo--image {
  display: inline-flex;
  align-items: center;
  max-width: 200px;
}

.error-page-wrap {
  display: grid;
  gap: 1.5rem;
  width: min(1080px, 100%);
  max-width: 1080px;
}

@media (min-width: 900px) {
  .is-error-page-standalone .error-page-wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: stretch;
  }
  .is-error-page-standalone .error-page-hero,
  .is-error-page-standalone .error-page-help {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .is-error-page-standalone .error-page-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.error-page-hero {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.error-page-code {
  margin: 0 0 0.75rem;
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 102, 132, 0.12);
}

.error-page-kicker {
  margin: 0 0 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.error-page-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}

.error-page-lead {
  margin: 0;
  max-width: 48ch;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
}

.error-page-path {
  margin: 1rem 0 0;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
}

.error-page-path span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: #334155;
  word-break: break-all;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.error-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1rem;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.error-page-btn .error-ico {
  flex-shrink: 0;
  display: block;
}

.error-page-btn.is-primary {
  background: var(--primary-dark);
  color: #fff;
  border: 1px solid var(--primary-dark);
}

.error-page-btn.is-primary:hover {
  background: #00556d;
  border-color: #00556d;
}

.error-page-btn.is-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid #cbd5e1;
}

.error-page-btn.is-outline:hover {
  border-color: var(--primary-dark);
  background: #f8fcfe;
}

.error-page-btn.is-ghost {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.error-page-btn.is-ghost:hover {
  background: #f1f5f9;
}

.error-page-help {
  padding: 1.35rem 1.4rem 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.error-page-help-title {
  margin: 0 0 1.1rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.error-page-help-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.error-help-item {
  display: flex;
  min-width: 0;
}

.error-help-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  min-height: 88px;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid #e8eef3;
  background: #fafcff;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.error-help-link:hover {
  border-color: rgba(0, 178, 227, 0.32);
  background: #f3fbfe;
  box-shadow: 0 4px 14px rgba(0, 102, 132, 0.06);
}

.error-help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-top: 0.05rem;
  border-radius: 11px;
  background: #eef8fc;
  color: var(--primary-dark);
}

.error-help-icon .error-ico {
  display: block;
}

.error-help-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
  min-height: 3.25rem;
}

.error-help-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.error-help-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted);
}

.error-help-meta {
  margin-top: 0.1rem;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--primary-dark);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .error-page-help-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .is-error-page-standalone .error-page {
    display: block;
    min-height: 100dvh;
    padding: 4.75rem 0.75rem 1rem;
  }

  .error-page-logo {
    top: 1.25rem;
    left: 1rem;
    font-size: 22px;
  }

  .is-error-page-standalone .error-page-wrap {
    width: 100%;
    gap: 0.85rem;
  }

  .error-page-hero {
    padding: 1.25rem 1rem;
  }

  .error-page-code {
    margin-bottom: 0.4rem;
    font-size: 3.25rem;
  }

  .error-page-help {
    padding: 1rem;
  }

  .error-page-help-title {
    margin-bottom: 0.75rem;
  }

  .error-page-actions {
    flex-direction: column;
  }

  .error-page-btn {
    width: 100%;
  }

  .error-page-help-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .error-help-link {
    min-height: 70px;
    padding: 0.75rem;
  }
}

/* Kurumsal sayfa hero — kampanya & blog */
.corp-page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid #dbeafe;
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fc 55%, #fff 100%);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  position: relative;
}
.corp-page-hero--campaigns {
  border-color: #fde68a;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 45%, #fff 100%);
}
.corp-page-hero--blog {
  border-color: #dbeafe;
}
.corp-page-hero-copy {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}
.corp-page-kicker {
  margin: 0 0 0.35rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #006684;
}
.corp-page-hero--campaigns .corp-page-kicker { color: #b45309; }
.corp-page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 600;
  color: #0d1c2f;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.corp-page-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #64748b;
  max-width: 54ch;
}
.corp-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.corp-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 11px;
  background: #006684;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}
.corp-page-btn:hover { background: #00506a; color: #fff; }
.corp-page-btn.is-outline {
  background: #fff;
  color: #006684;
  border-color: #cbd5e1;
}
.corp-page-btn.is-outline:hover { background: #f8fafc; }
.corp-page-hero-visual {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.corp-page-hero-visual .material-symbols-outlined,
.corp-page-hero-visual .corp-hero-ico {
  font-size: 42px;
  color: #006684;
}
.corp-page-hero-visual--campaigns .material-symbols-outlined,
.corp-page-hero-visual--campaigns .corp-hero-ico {
  color: #d97706;
}

.corp-empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.corp-empty-state .material-symbols-outlined,
.corp-empty-state .blog-empty-ico {
  font-size: 48px;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}
.corp-empty-state .blog-empty-ico {
  width: 48px;
  height: 48px;
  display: inline-block;
}
.corp-empty-state h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.corp-empty-state p {
  margin: 0 0 1rem;
  font-size: 14px;
  color: var(--muted);
}

.campaigns-featured-wrap { margin-bottom: 1.35rem; }
.campaigns-section-head {
  margin-bottom: 0.85rem;
}
.campaigns-section-head h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}
.campaigns-section-head p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.corp-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.corp-cta-strip strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.corp-cta-strip p {
  margin: 0.2rem 0 0;
  font-size: 13px;
  color: #64748b;
}
.corp-cta-strip--campaigns {
  border-color: #fde68a;
  background: linear-gradient(90deg, #fffbeb, #fff);
}

/* Blog — kurumsal liste & detay */
.blog-listing-layout,
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: 1.5rem;
  align-items: start;
}
.blog-listing-main,
.blog-detail-main {
  min-width: 0;
}
.blog-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.blog-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.blog-cat-pill:hover {
  border-color: #cbd5e1;
  color: #006684;
}
.blog-cat-pill.is-active {
  background: #006684;
  border-color: #006684;
  color: #fff;
}

.blog-featured-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  margin-bottom: 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-featured-hero:hover {
  border-color: #cbd5e1;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}
.blog-featured-hero-media {
  min-height: 220px;
  background: #eef2f6;
  overflow: hidden;
}
.blog-featured-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.blog-featured-hero-body {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: center;
}
.blog-featured-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #006684;
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
}
.blog-featured-hero-body h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  color: #0f172a;
}
.blog-featured-hero-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}
.blog-featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 0.35rem;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
}
.blog-featured-read {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  font-weight: 600;
  color: #006684;
}
.blog-featured-read .material-symbols-outlined,
.blog-featured-read .blog-forward-ico { font-size: 16px; }
.blog-featured-read .blog-forward-ico {
  width: 16px;
  height: 16px;
}

.blog-grid--listing { margin-bottom: 0.5rem; }
.blog-card--compact h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}
.blog-card-cat--link {
  text-decoration: none;
}
.blog-card-cat--link:hover { text-decoration: underline; }

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eef2f7;
}
.blog-page-btn {
  font-size: 13px;
  font-weight: 600;
  color: #006684;
  text-decoration: none;
}
.blog-page-btn:hover { text-decoration: underline; }
.blog-page-info {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: sticky;
  top: 5.5rem;
}
.blog-sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}
.blog-sidebar-kicker {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #006684;
  margin-bottom: 0.35rem;
}
.blog-sidebar-cta h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f172a;
}
.blog-sidebar-cta p {
  margin: 0 0 0.85rem;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}
.blog-sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem 0.85rem;
  margin-bottom: 0.45rem;
  border-radius: 10px;
  background: #006684;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.blog-sidebar-btn.is-outline {
  background: #fff;
  color: #006684;
  border: 1px solid #cbd5e1;
  margin-bottom: 0;
}
.blog-sidebar-title {
  margin: 0 0 0.65rem;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}
.blog-sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.blog-sidebar-cat {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
}
.blog-sidebar-cat:hover { background: #f8fafc; color: #006684; }
.blog-sidebar-cat.is-active {
  background: #e6f7fc;
  color: #006684;
  font-weight: 600;
}
.blog-sidebar-featured {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.blog-sidebar-featured img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}
.blog-sidebar-featured strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #0f172a;
  margin: 0.2rem 0;
}
.blog-sidebar-featured span:last-child {
  font-size: 11px;
  color: #94a3b8;
}
.blog-sidebar-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-size: 13px;
  color: #475569;
}
.blog-sidebar-contact p:last-child { margin-bottom: 0; }
.blog-sidebar-contact .material-symbols-outlined,
.blog-sidebar-contact .blog-sidebar-ico {
  font-size: 18px;
  color: #006684;
  flex-shrink: 0;
}
.blog-sidebar-contact .blog-sidebar-ico {
  width: 18px;
  height: 18px;
}

.blog-article--detail { max-width: none; margin: 0; }
.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-article-meta .material-symbols-outlined,
.blog-article-meta .blog-meta-ico {
  font-size: 15px;
  flex-shrink: 0;
}
.blog-article-meta .blog-meta-ico {
  width: 15px;
  height: 15px;
}

.blog-related {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid #eef2f7;
}
.blog-related h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (max-width: 960px) {
  .blog-listing-layout,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .blog-sidebar-cta { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .corp-page-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .corp-page-hero-visual { display: none; }
  .blog-featured-hero {
    grid-template-columns: 1fr;
  }
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

/* --- Review photo strip + improved review lightbox --- */
.pdb-review-photo-strip {
  margin: 0 0 1.25rem;
  padding: 0.9rem 0 1rem;
  border-bottom: 1px solid #e8eef4;
}

.pdb-review-photo-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.pdb-review-photo-strip-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0d1c2f;
  letter-spacing: -0.01em;
}

.pdb-review-photo-strip-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.pdb-review-photo-strip-track {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.pdb-review-photo-strip-track::-webkit-scrollbar {
  height: 6px;
}

.pdb-review-photo-strip-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.pdb-review-photo--strip {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  scroll-snap-align: start;
}

.pdb-lightbox-dialog--review {
  width: min(1040px, 100%);
  height: min(520px, 88dvh);
  max-height: min(520px, 88dvh);
  padding: 3.35rem 1rem 1.15rem;
  overflow: hidden;
}

.pdb-lightbox-dialog--review .pdb-lightbox-close {
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
}

.pdb-lightbox-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.9fr);
  gap: 1rem;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.pdb-lightbox-dialog--review .pdb-lightbox-figure {
  background: #f8fafc;
  border-radius: 14px;
  padding: 0.75rem;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdb-lightbox-dialog--review .pdb-lightbox-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.pdb-lightbox-review {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.15rem 0 0.15rem;
}

.pdb-lightbox-review-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding-right: 0.25rem;
}

.pdb-lightbox-review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-width: 0;
}

.pdb-lightbox-review-rating {
  display: none;
}

.pdb-lightbox-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f7fc;
  color: #006684;
  font-size: 0.78rem;
  font-weight: 800;
}

.pdb-lightbox-review-user strong {
  display: block;
  font-size: 0.92rem;
  color: #0d1c2f;
  line-height: 1.2;
}

.pdb-lightbox-review-user span {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

.pdb-lightbox-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.pdb-lightbox-review-stars .rating-stars {
  font-size: 15px;
  color: #f59e0b;
  letter-spacing: 0.02em;
}
.pdb-lightbox-review-stars .star--empty {
  color: #cbd5e1;
}

.pdb-lightbox-review-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0d1c2f;
  line-height: 1.3;
}

.pdb-lightbox-review-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
  white-space: pre-wrap;
  overflow: auto;
  max-height: min(42dvh, 360px);
}

.pdb-lightbox-caption {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #64748b;
  margin: 0;
  padding-top: 0.35rem;
}

@media (max-width: 760px) {
  .pdb-lightbox-body {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    height: auto;
  }

  .pdb-lightbox-dialog--review {
    height: auto;
    max-height: min(92dvh, 900px);
    overflow: auto;
  }

  .pdb-lightbox-dialog--review .pdb-lightbox-figure {
    height: min(320px, 42dvh);
    min-height: min(320px, 42dvh);
  }

  .pdb-lightbox-dialog--review .pdb-lightbox-img {
    max-height: 100%;
  }

  .pdb-review-photo--strip {
    width: 76px;
    height: 76px;
  }
}

