:root {
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --bg: #FFFFFF;
  --bg-2: #FAFAFA;
  --bg-3: #F4F4F5;
  --card: #FFFFFF;
  --line: rgba(10,10,11,0.08);
  --line-strong: rgba(10,10,11,0.14);
  --text: #0A0A0B;
  --text-2: #2A2A30;
  --muted: #5C5C66;
  --dim: #8A8A94;
  --orange: #FF6A1A;
  --orange-2: #FF8A3D;
  --orange-soft: rgba(255,106,26,0.10);
  --orange-soft-2: rgba(255,106,26,0.06);
  --dark: #0A0A0B;
  --dark-2: #16161A;
  --green: #10B981;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(10,10,11,0.04);
  --shadow-md: 0 4px 14px rgba(10,10,11,0.06);
  --shadow-lg: 0 24px 60px rgba(10,10,11,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-color: rgba(10,10,11,0.14) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(10,10,11,0.14);
  border: 3px solid #fff;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(10,10,11,0.24); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body), 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 12px;
}
.tb-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
}
.tb-item:hover { color: var(--orange); }
.tb-item svg { color: var(--orange); }
.tb-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-weight: 500;
}
.tb-status .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
.tb-socials { display: flex; gap: 8px; }
.tb-social {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.tb-social:hover { background: var(--orange); color: #fff; }

/* Language switcher */
.tb-lang { position: relative; }
.tb-lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 5px 10px; border-radius: 999px;
  font: 600 12px/1 var(--font-body); letter-spacing: 0.4px;
  cursor: pointer; transition: all 0.2s;
}
.tb-lang-btn:hover { background: rgba(255,255,255,0.10); color: #fff; }
.tb-lang-btn svg { color: rgba(255,255,255,0.6); }
.tb-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  padding: 6px;
  display: none;
  z-index: 1000;
}
.tb-lang.open .tb-lang-menu { display: block; }
.tb-lang-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font: 500 14px/1.2 var(--font-body);
  transition: background 0.15s;
}
.tb-lang-item:hover { background: rgba(255,107,0,0.08); color: var(--orange); }
.tb-lang-item.active { background: rgba(255,107,0,0.10); color: var(--orange); font-weight: 600; }
.tb-lang-item.active svg { margin-left: auto; color: var(--orange); }
.tb-lang-flag { font-size: 16px; line-height: 1; }

/* Currency switcher (similar to language) */
.tb-cur { position: relative; }
.tb-cur-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 5px 10px; border-radius: 999px;
  font: 600 12px/1 var(--font-body); letter-spacing: 0.4px;
  cursor: pointer; transition: all 0.2s;
}
.tb-cur-btn:hover { background: rgba(255,255,255,0.10); color: #fff; }
.tb-cur-btn svg { color: rgba(255,255,255,0.6); }
.tb-cur-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  padding: 6px;
  display: none;
  z-index: 1000;
}
.tb-cur.open .tb-cur-menu { display: block; }
.tb-cur-item-form { margin: 0; padding: 0; display: block; }
.tb-cur-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font: 600 14px/1.2 var(--font-body);
  transition: background 0.15s;
  cursor: pointer;
  text-align: left;
}
.tb-cur-item:hover { background: rgba(255,107,0,0.08); color: var(--orange); }
.tb-cur-item.active { background: rgba(255,107,0,0.10); color: var(--orange); }
.tb-cur-item.active svg { margin-left: auto; color: var(--orange); }
.tb-cur-sym { font-weight: 700; min-width: 14px; text-align: center; }

@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ========== NAV ========== */
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  column-gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  height: 40px;
  grid-column: 1;
}
.logo img { height: 36px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-self: center;
  grid-column: 2;
  white-space: nowrap;
}
.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links > li > a:hover { color: var(--orange); }
.nav-links > li > a.active { color: var(--orange); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  grid-column: 3;
  white-space: nowrap;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-login:hover { color: var(--orange); background: var(--orange-soft); }
.nav-user { position: relative; }
.nav-user-btn { border: 0; background: transparent; cursor: pointer; font-family: inherit; }
.nav-user-btn.is-open { color: var(--orange); background: var(--orange-soft); }
.nav-user-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(10,10,11,0.10);
  padding: 8px;
  z-index: 1400;
}
.nav-user-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text-2);
  font: 600 13px 'Inter', sans-serif;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-user-item:hover { background: rgba(255,107,0,0.08); color: var(--orange); }
.nav-user-badge {
  margin-left: auto;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #EEF2FF;
  color: #1D4ED8;
  font: 700 11px/18px 'Inter', sans-serif;
  text-align: center;
}
.nav-user-badge.is-orange {
  background: rgba(255,107,0,0.16);
  color: #D97706;
}
.nav-user-item.is-danger { color: #B91C1C; }
.nav-user-item.is-danger:hover { background: rgba(185,28,28,0.08); color: #991B1B; }
.nav-user-sep { height: 1px; background: var(--line); margin: 6px 2px; }
.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
  margin: 0 4px;
}
.nav-signup {
  padding: 9px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: all 0.2s;
}
.nav-signup:hover { border-color: var(--text); background: var(--bg-3); }
.nav-cta {
  padding: 9px 18px;
  background: var(--dark);
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .nav-login, .nav-divider, .nav-signup, .nav-search { display: none; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(255,106,26,0.25);
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,106,26,0.35); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--bg-3); border-color: var(--text); }
.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ========== HERO SLIDER ========== */
.hero {
  padding: 10px 10px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,106,26,0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,106,26,0.08) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,11,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 800px 500px at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 800px 500px at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.slider { position: relative; }
.slides {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}
.slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 60px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  min-width: 0;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.slide-content {
  max-width: 660px;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.slide h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: var(--text);
  overflow-wrap: anywhere;
}
.slide h1 em { font-style: normal; color: var(--orange); }
.slide-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.slide-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.meta-item .meta-label {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.meta-item .meta-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-top: 2px;
}
.slide-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.slide-visual {
  position: relative;
  aspect-ratio: 1.5;
  width: 100%;
  margin: 0;
  isolation: isolate;
}
.visual-bg {
  position: absolute;
  inset: 32px 0 22px 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,246,241,0.78)),
    radial-gradient(circle at 72% 24%, rgba(255,106,26,0.30), transparent 48%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(255,106,26,0.10);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(10,10,11,0.14);
  transform: rotate(1deg);
  z-index: 0;
}
.visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 14%, rgba(255,106,26,0.26), transparent 44%),
    radial-gradient(circle at 18% 92%, rgba(10,10,11,0.10), transparent 48%);
}
.visual-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,11,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,11,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
}

.visual-mockup {
  position: absolute;
  inset: 14px 22px 22px 24px;
  z-index: 2;
  padding: 10px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02) 30%),
    linear-gradient(135deg, #141417 0%, #0A0A0B 58%, #21130D 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 38px 74px rgba(10,10,11,0.32),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.visual-mockup::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.visual-mockup::after {
  content: '';
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: -16px;
  height: 18px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(10,10,11,0.38), rgba(10,10,11,0));
  filter: blur(8px);
  pointer-events: none;
}
.mockup-toolbar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}
.mockup-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.26);
}
.mockup-toolbar span:first-child { background: rgba(255,106,26,0.92); }
.mockup-toolbar span:nth-child(2) { background: rgba(255,255,255,0.42); }
.visual-image {
  position: relative;
  z-index: 2;
  height: calc(100% - 38px);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    #111114;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px rgba(10,10,11,0.28);
}
.visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.05) contrast(1.03);
}
.hero .visual-image img {
  object-fit: contain;
  object-position: center;
  filter: none;
}
.slide.is-custom-hero .visual-bg {
  display: none;
}
.slide.is-custom-hero .slide-visual {
  height: 400px;
  aspect-ratio: auto;
}
.slide.is-custom-hero .visual-mockup {
  inset: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.slide.is-custom-hero .visual-mockup::before,
.slide.is-custom-hero .visual-mockup::after,
.slide.is-custom-hero .mockup-toolbar {
  display: none;
}
.slide.is-custom-hero .visual-image {
  height: 100%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.slide.is-custom-hero .visual-image img {
  object-fit: contain;
  object-position: center;
}
.slide.is-custom-hero.is-image-only {
  grid-template-columns: minmax(0, 1fr);
}
.slide.is-custom-hero.is-image-only .slide-content {
  display: none;
}
.slide.is-custom-hero.is-image-only .slide-visual {
  height: 100%;
  aspect-ratio: auto;
  min-height: 320px;
  grid-column: 1 / -1;
  max-width: 100%;
  width: 100%;
}
.slide.is-custom-hero.is-image-only .visual-image img {
  object-fit: cover;
}
@media (max-width: 900px) {
  .slide.is-custom-hero:not(.is-image-only) .slide-visual {
    height: auto;
    aspect-ratio: 1.4;
  }
  .slide.is-custom-hero.is-image-only .slide-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: unset;
  }
  .slide.is-custom-hero.is-image-only .visual-image,
  .slide.is-custom-hero.is-image-only .visual-image img {
    height: auto;
  }
}
.visual-image-fallback {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(255,106,26,0.20), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
  padding: 28px;
}

.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card.fc-rating { top: 24px; left: -18px; }
.float-card.fc-users { bottom: 32px; right: -22px; animation-delay: -3s; }
.fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.fc-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fc-stars { color: #FBBF24; font-size: 12px; letter-spacing: -1px; }

.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.slider-dots { display: flex; gap: 6px; }
.dot {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--bg-3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.dot.active { background: var(--orange); width: 40px; }
.slider-arrows { display: flex; gap: 8px; }
.arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text);
}
.arrow:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

@media (max-width: 900px) {
  .hero { padding: 32px 0 28px; }
  .slide {
    grid-template-columns: 1fr;
    gap: 28px;
    transform: none;
  }
  .slide-visual { aspect-ratio: 1.4; max-width: 560px; margin: 0 auto; }
  .visual-bg { inset: 28px 0 20px 32px; }
  .visual-mockup { inset: 12px 18px 18px 20px; }
  .float-card.fc-rating { left: 0; }
  .float-card.fc-users { right: 0; }
}
@media (max-width: 640px) {
  .hero { padding: 22px 0 18px; }
  .slider, .slides, .slide { width: calc(100vw - 64px); max-width: calc(100vw - 64px); }
  .slides { display: block; }
  .slide { display: none; }
  .slide.active { display: grid; }
  .slide { gap: 22px; grid-template-columns: minmax(0, 1fr); overflow: hidden; }
  .hero .container { overflow: hidden; }
  .slide-content { width: calc(100vw - 64px); max-width: calc(100vw - 64px); }
  .slide-eyebrow { font-size: 10px; padding: 5px 10px; margin-bottom: 12px; }
  .slide h1 { max-width: 300px; font-size: 21px; line-height: 1.18; margin-bottom: 12px; }
  .slide h1 em { display: block; }
  .slide-desc { max-width: 300px; font-size: 14px; margin-bottom: 16px; }
  .slide-meta { gap: 14px; flex-wrap: wrap; }
  .slide-meta .meta-label { font-size: 10px; }
  .slide-meta .meta-value { font-size: 14px; }
  .slide-cta .btn { font-size: 13px; padding: 10px 16px; flex: 1 0 100%; min-width: 0; }
  .slide-cta .btn-primary, .slide-cta .btn-ghost { width: 100%; justify-content: center; }
  .trust-row { flex-wrap: wrap; gap: 10px; }
  .trust-row .trust-item { font-size: 11px; }
  .slider-controls { display: none; }
  .slide-visual { max-width: 100%; aspect-ratio: 4/3; }
  .slide.is-custom-hero.is-image-only {
    align-items: stretch;
    gap: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .slide.is-custom-hero.is-image-only .slide-visual {
    min-height: 0;
    height: auto;
    aspect-ratio: unset;
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .slide.is-custom-hero.is-image-only .visual-mockup {
    position: relative;
    inset: auto;
  }
  .slide.is-custom-hero.is-image-only .visual-image {
    background: #ffffff;
    height: auto;
    border-radius: 0;
  }
  .slide.is-custom-hero.is-image-only .visual-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center top;
  }
  .visual-bg { inset: 24px 0 16px 30px; border-radius: 26px; }
  .visual-mockup { inset: 8px 12px 16px; padding: 9px; border-radius: 24px; }
  .visual-mockup::before { inset: 7px; border-radius: 19px; }
  .mockup-toolbar { height: 28px; padding: 0 8px; }
  .mockup-toolbar span { width: 7px; height: 7px; }
  .visual-image { height: calc(100% - 28px); border-radius: 16px; }
  .visual-image-fallback { font-size: 32px; padding: 18px; }
  .float-card { display: none; }
}

/* ========== STATS ========== */
.stats-strip {
  padding: 20px 20px;
  position: relative;
  background: var(--bg-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--orange-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,26,0.35);
  box-shadow: var(--shadow-md);
}
.stat-card:hover::before { opacity: 1; }
.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num span { color: var(--orange); font-size: 32px; }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.stat-sub {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-num { font-size: 34px; }
  .stat-num span { font-size: 26px; }
}

/* ========== SECTIONS ========== */
section { padding: 10px 0; position: relative; }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
h2 em { font-style: normal; color: var(--orange); }
.section-head p { color: var(--muted); font-size: 18px; }
@media (max-width: 680px) {
  .section-head,
  .section-head.center,
  .home-services .section-head,
  .testimonials-section .section-head,
  .home-references .section-head,
  .home-blog-section .section-head,
  .products-section .section-head.center {
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    text-align: center;
  }
  .section-head .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .section-head h2 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.22;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .section-head p {
    font-size: 15px;
    line-height: 1.62;
  }
  .products-section .section-head h2 {
    margin-top: 6px;
  }
  .cta-section {
    padding: 0 0 28px;
  }
  .cta-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cta {
    padding: 32px 18px 28px;
    border-radius: 18px;
  }
  .cta::before {
    width: 130%;
    height: 440px;
    top: -38%;
  }
  .cta .eyebrow {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
  .cta h2 {
    font-size: clamp(21px, 6vw, 26px);
    line-height: 1.28;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .cta p {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: none;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .cta-buttons .btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    font-size: 14px;
    padding: 12px 18px;
  }
  .home-domain-card .section-head h2 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.22;
  }
  .home-domain-card .section-head p {
    font-size: 14px;
    line-height: 1.6;
  }
  .page-header h1 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.22;
  }
  .page-header p,
  .page-header.page-header--wide p,
  .page-header.services-page-header p,
  .page-header.page-header--wide.about-page-header p,
  .page-header.page-header--wide.references-page-header p,
  .page-header.page-header--wide.blog-page-header p,
  .page-header.cms-page-header p,
  .page-header.products-page-header p {
    font-size: 15px;
    line-height: 1.62;
  }
  .page-header.srv-page-header .srv-hero p {
    font-size: 15px;
    line-height: 1.62;
  }
  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  /* Hakkımızda ve içerik detay başlıkları */
  .about-section { padding: 28px 0 40px; }
  .about-text .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .about-text h2 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.22;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .about-text p {
    font-size: 15px;
    line-height: 1.62;
    text-align: left;
    text-justify: auto;
    text-indent: 0;
    margin-bottom: 14px;
  }
  .principles {
    margin-top: 24px;
    padding-top: 24px;
    gap: 16px;
  }
  .principle-title { font-size: 14px; }
  .principle-desc { font-size: 13px; }

  /* CMS / yasal sayfa içeriği */
  .cms-page-body { padding: 28px 0 40px; }
  .cms-page-body .page-content {
    font-size: 15px;
    line-height: 1.62;
  }
  .cms-page-body .page-content h2 {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.25;
    margin: 28px 0 12px;
  }
  .cms-page-body .page-content h3 {
    font-size: 17px;
    margin: 22px 0 10px;
  }
  .cms-page-body .page-content p {
    text-align: left;
    text-justify: auto;
  }

  /* Hizmet detay */
  .srv-hero h1 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.22;
  }
  .srv-body { padding: 28px 0 44px; }
  .srv-content h2 {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.25;
    margin: 24px 0 10px;
  }
  .srv-content h3 {
    font-size: 17px;
    margin: 20px 0 8px;
  }
  .srv-content p {
    font-size: 15px;
    line-height: 1.62;
    text-align: left;
    text-justify: auto;
  }
  .srv-others .section-head h2 {
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.22;
  }

  /* Blog yazı detay */
  .post-page-header .post-hero h1,
  .post-hero h1 {
    font-size: clamp(22px, 6.2vw, 28px) !important;
    line-height: 1.22 !important;
  }
  .post-content h2 {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.25;
  }
  .post-content h3 { font-size: 17px; }
  .post-content p {
    font-size: 15px;
    line-height: 1.62;
    text-align: left !important;
    text-justify: auto;
  }

  /* İletişim */
  .contact-info-card h3 {
    font-size: clamp(20px, 5.5vw, 24px);
    line-height: 1.25;
  }
  .contact-info-card > p,
  .contact-info-card .contact-info-list li {
    font-size: 15px;
    line-height: 1.62;
  }
}

/* ========== PRODUCTS ========== */
.products-section { background: var(--bg-2); }
/* Ana sayfadaki ürün başlığı container genişliğine kadar uzasın */
.products-section .section-head { max-width: none; }
.products-tabs {
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.products-tabs-menu {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  background: color-mix(in srgb, var(--bg-2) 72%, var(--card));
  border-bottom: 1px solid var(--line);
}
.products-tab-btn {
  position: relative;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--text-2);
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
  font-family: inherit;
  box-shadow: none;
}
.products-tab-btn::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity .2s, transform .2s;
}
.products-tab-btn:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--orange) 22%, transparent);
  background: color-mix(in srgb, var(--orange) 5%, var(--card));
}
.products-tab-btn.is-active {
  background: var(--card);
  border-color: color-mix(in srgb, var(--orange) 30%, var(--line));
  color: var(--text);
  box-shadow: 0 1px 4px rgba(10,10,11,0.06);
  z-index: 1;
}
.products-tab-btn.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}
.products-tab-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--orange) 72%, #000);
  outline-offset: 2px;
}
.products-tab-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--orange-soft);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.products-tab-btn.is-active .products-tab-icon {
  background: color-mix(in srgb, var(--orange) 16%, #fff);
  color: color-mix(in srgb, var(--orange) 88%, #111);
}
.products-tab-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.products-tab-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-tab-text small {
  display: block;
  font-size: 11px;
  line-height: 1.3;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-tab-btn.is-active .products-tab-text small {
  color: var(--muted);
}
.products-tabs-panels {
  border: none;
  border-radius: 0;
  background: var(--card);
  padding: 18px 20px;
  min-height: 74px;
  box-shadow: none;
}
.products-tab-panel {
  display: none;
}
.products-tab-panel.is-active {
  display: block;
}
.products-tab-panel h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.products-tab-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.products-tab-panel--general {
  text-align: left;
}
.products-tab-panel--general > h3 {
  margin-bottom: 4px;
}
.products-tab-panel--general > p {
  margin-bottom: 14px;
}
.products-general-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.products-general-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 12px 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.products-general-grid > .is-collapsed-by-rows,
.products-general-flow-grid > .is-collapsed-by-rows,
.products-general-impact-grid > .is-collapsed-by-rows,
.products-cashier-grid > .is-collapsed-by-rows,
.products-cashier-wide-grid > .is-collapsed-by-rows {
  display: none !important;
}
.products-integration-intro.is-collapsed-by-rows {
  display: none !important;
}
.products-grid-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--orange) 34%, var(--line));
  background: color-mix(in srgb, var(--orange) 10%, #fff);
  color: color-mix(in srgb, var(--orange) 86%, #111);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.products-grid-toggle[hidden] {
  display: none !important;
}
.products-grid-toggle:hover {
  background: color-mix(in srgb, var(--orange) 16%, #fff);
  border-color: color-mix(in srgb, var(--orange) 46%, var(--line-strong));
  transform: translateY(-1px);
}
.products-grid-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--orange) 72%, #000);
  outline-offset: 2px;
}
.products-general-card-icon {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  background: color-mix(in srgb, var(--orange) 20%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--orange) 38%, transparent);
}
.products-general-card-icon .products-inline-icon {
  width: 13px;
  height: 13px;
  color: color-mix(in srgb, var(--orange) 78%, #111);
}
.products-general-card:nth-child(3n + 2) .products-general-card-icon {
  background: rgba(16, 185, 129, 0.17);
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.35);
}
.products-general-card:nth-child(3n + 2) .products-general-card-icon .products-inline-icon {
  color: #059669;
}
.products-general-card:nth-child(3n + 3) .products-general-card-icon {
  background: rgba(59, 130, 246, 0.16);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.35);
}
.products-general-card:nth-child(3n + 3) .products-general-card-icon .products-inline-icon {
  color: #2563EB;
}
.products-general-card-body h4 {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}
.products-general-card-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.products-general-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.products-general-flow-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.products-general-flow-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.products-general-flow-icon {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--orange) 18%, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.products-general-flow-icon .products-inline-icon {
  width: 13px;
  height: 13px;
  color: color-mix(in srgb, var(--orange) 78%, #111);
}
.products-general-flow-card h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}
.products-general-flow-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.products-general-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.products-general-impact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.products-general-impact-card h4 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.products-general-impact-icon {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--orange) 18%, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.products-general-impact-icon .products-inline-icon {
  width: 13px;
  height: 13px;
  color: color-mix(in srgb, var(--orange) 78%, #111);
}
.products-general-impact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.products-general-impact-card li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.products-general-impact-card li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 7px;
}
.products-tab-panel--cashier {
  text-align: left;
}
.products-tab-panel--cashier > h3 {
  margin-bottom: 4px;
}
.products-tab-panel--cashier > p {
  margin-bottom: 14px;
}
.products-cashier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.products-cashier-wide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.products-integration-intro {
  margin-bottom: 12px;
}
.products-integration-intro h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.products-integration-intro p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.products-integration-providers {
  margin-bottom: 12px;
}
/* Ana sayfa: Hizmetler + Müşteri Yorumları başlıkları da tam container genişliğinde */
.home-services .section-head,
.testimonials-section .section-head,
.home-references .section-head,
.home-blog-section .section-head { max-width: none; }
.home-services .section-head,
.testimonials-section .section-head,
.home-references .section-head,
.home-blog-section .section-head,
.products-section .section-head.center {
  margin-bottom: 32px;
}
.products-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.product-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.filter:hover { color: var(--text); border-color: var(--line-strong); }
.filter.active { background: var(--dark); color: #fff; border-color: var(--dark); }

.products-grid {
  display: grid;
  /* Otomatik kolon sayısı — kart en az 280px genişlikte, ekran müsaitse 4-5 kolon */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
/* Ana sayfa ürün alanı: masaüstünde 3 sütun */
.products-grid.products-grid-home {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
}
@media (max-width: 1100px) {
  .products-tabs-menu { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .products-tab-btn { min-height: 54px; }
  .products-general-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-cashier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-cashier-wide-grid { grid-template-columns: 1fr; }
  .products-general-flow-grid,
  .products-general-impact-grid { grid-template-columns: 1fr; }
  .products-grid.products-grid-home { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
}
@media (max-width: 680px) {
  .products-tabs-menu {
    display: flex;
    overflow-x: auto;
    padding: 8px 8px 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  }
  .products-tabs-menu::-webkit-scrollbar { display: none; }
  .products-tab-btn {
    flex: 0 0 min(78vw, 240px);
    scroll-snap-align: start;
    min-height: 52px;
  }
  .products-tab-btn::after { bottom: 4px; }
  .products-tabs-panels { padding: 14px 14px 16px; }
  .products-tab-panel h3 { font-size: 15px; }
  .products-tab-panel p { font-size: 13px; }
  .products-general-grid { grid-template-columns: 1fr; }
  .products-cashier-grid { grid-template-columns: 1fr; }
  .products-grid.products-grid-home { grid-template-columns: 1fr; }
}
/* Ana sayfa ürün kartları: bayilik kartı tasarımı */
.products-grid-home .product.rsl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  overflow: visible;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  box-shadow: none;
}
.products-grid-home .product.rsl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,0.20);
  box-shadow: 0 18px 40px rgba(10,10,11,0.06);
}
.products-grid-home .product.rsl-card.is-featured {
  border-color: var(--c);
  border-width: 2px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--c) 6%, #fff) 0%, #fff 60%);
  transform: translateY(-6px);
}
.products-grid-home .product.rsl-card.is-featured:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 60px color-mix(in srgb, var(--c) 22%, transparent);
}
.products-grid-home .product.rsl-card.has-badge:not(.is-featured) {
  border-color: var(--c);
  border-width: 2px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--c) 6%, #fff) 0%, #fff 60%);
  transform: translateY(-6px);
}
.products-grid-home .product.rsl-card.has-badge:not(.is-featured):hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 60px color-mix(in srgb, var(--c) 22%, transparent);
}
.products-grid-home .rsl-card-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--c);
  color: #fff;
  border-radius: 999px;
  font: 800 10px 'Inter',sans-serif;
  letter-spacing: 0.10em;
  white-space: nowrap;
}
.products-grid-home .rsl-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background: var(--c);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--c) 38%, transparent);
  white-space: nowrap;
  z-index: 4;
}
.products-grid-home .rsl-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.products-grid-home .rsl-card-name {
  font: 700 22px 'Sora',sans-serif;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.products-grid-home .rsl-card-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.products-grid-home .rsl-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.products-grid-home .rsl-card-price strong {
  font: 800 36px/1 'Sora',sans-serif;
  letter-spacing: -0.02em;
  color: var(--text);
}
.products-grid-home .rsl-card-cur {
  font: 700 16px 'Sora',sans-serif;
  color: var(--text);
}
.products-grid-home .rsl-card-period {
  color: var(--muted);
  font-size: 13px;
  margin-left: 4px;
}
.products-grid-home .rsl-card-commission {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 6px;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  color: var(--c);
  border-radius: 999px;
  font: 700 12px 'Inter',sans-serif;
  letter-spacing: 0.02em;
}
.products-grid-home .rsl-card-features {
  list-style: none;
  margin: 14px 0 24px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--c) 40%, #cfd4dc) transparent;
}
.products-grid-home .rsl-card-features::-webkit-scrollbar { width: 6px; }
.products-grid-home .rsl-card-features::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--c) 40%, #cfd4dc);
  border-radius: 999px;
}
.products-grid-home .rsl-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
.products-grid-home .rsl-card-features svg {
  color: var(--c);
  margin-top: 3px;
  flex-shrink: 0;
}
.products-grid-home .rsl-card-features .feat-text {
  text-decoration: none;
}
.products-grid-home .rsl-card-features li.is-negative {
  color: var(--muted);
}
.products-grid-home .rsl-card-features li.is-negative .feat-text {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.products-grid-home .rsl-card-features li.is-negative svg {
  color: #EF4444;
}
.products-grid-home .rsl-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.products-grid-home .rsl-card-actions .btn {
  justify-content: center;
}
@media (max-width: 680px) {
  .products-grid-home .product.rsl-card {
    padding: 24px 18px 22px;
  }
  .products-grid-home .rsl-card-actions,
  .product-actions,
  .rsl-card-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 8px;
    margin-top: 2px;
  }
  .products-grid-home .rsl-card-actions .btn,
  .product-actions .btn,
  .rsl-card-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 11px 12px;
    font-size: 13px;
    justify-content: center;
    white-space: nowrap;
  }
}
.products-grid-home .rsl-card.is-featured .btn-primary {
  background: var(--c);
}
.products-grid-home .rsl-card.is-featured .btn-primary:hover {
  filter: brightness(1.08);
}
.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.product.is-clickable { cursor: pointer; }
.product.is-clickable:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.product:hover {
  transform: translateY(-6px);
  border-color: rgba(255,106,26,0.4);
  box-shadow: var(--shadow-lg);
}
.product-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,106,26,0.30), transparent 60%);
  pointer-events: none;
}
.product-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
}
.product-thumb-mark {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: rgba(255,255,255,0.10);
  letter-spacing: -0.03em;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(255,106,26,0.35);
}
.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.product-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.product-features {
  list-style: none;
  margin-bottom: 22px;
  padding: 0;
}
.product-features li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.product-features svg {
  color: var(--orange);
  flex-shrink: 0;
}
.product-price {
  margin-top: auto;
  padding: 18px 0 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.price-block .price-label {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-block .price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 2px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.price-amount em {
  font-style: normal;
  color: var(--orange);
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 0 4px;
}
.product-actions .btn {
  padding: 11px 14px;
  font-size: 13px;
  justify-content: center;
  width: 100%;
}
.product-login-meta {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px dashed rgba(255,107,0,0.28);
  border-radius: 10px;
  background: rgba(255,107,0,0.05);
  display: grid;
  gap: 4px;
}
.product-login-meta span {
  font: 600 12px/1.4 'Inter', sans-serif;
  color: var(--text-2);
  word-break: break-word;
}
.product-login-meta b {
  color: var(--text);
}
/* products-grid artık auto-fill ile çalışıyor — sabit breakpoint gerekmez */
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
}
.service-card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; color: var(--orange); font: 600 13px 'Inter',sans-serif; }
.service-card:hover .service-card-link span { transform: translateX(2px); transition: transform 0.2s; display: inline-block; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--orange-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--orange);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ========== REFERENCES ========== */
.references-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  padding: 36px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.ref-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--dim);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  transition: color 0.2s;
  text-align: center;
}
.ref-logo:hover { color: var(--text); }
@media (max-width: 900px) {
  .references-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .references-logos { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  color: var(--orange);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 28px;
  flex: 1;
}
.author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}
.author-info .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.author-info .role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ========== TECH STACK ========== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.tech {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.tech:hover {
  border-color: var(--orange);
  background: var(--orange-soft-2);
  transform: translateY(-2px);
}
.tech-name { font-size: 13px; font-weight: 600; color: var(--text); }
.tech-cat { font-size: 10px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
@media (max-width: 900px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== ABOUT ========== */
.about-section { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
  text-justify: inter-word;
  text-indent: 2em;
}
.principles {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.principle { display: flex; gap: 14px; align-items: flex-start; }
.principle-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.principle-title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.principle-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

.about-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,106,26,0.30), transparent 55%);
}
.visual-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  color: #fff;
}
.visual-card .label { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.visual-card .value { font-family: var(--font-heading); font-size: 22px; font-weight: 700; }
.visual-card .value span { color: var(--orange); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .principles { grid-template-columns: 1fr; }
}

/* ========== CTA ========== */
.cta-section { padding: 0 0 40px; }
.cta {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,106,26,0.30), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta .eyebrow,
.cta-eyebrow { color: var(--orange); }
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.70); font-size: 18px; max-width: 540px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.20); }
.cta .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

/* ========== PAGE HEADER (for inner pages) ========== */
.page-header {
  padding: 38px 0 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255,106,26,0.10) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(36px);
  z-index: 0;
}
.page-header-inner { position: relative; z-index: 1; max-width: 760px; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0 8px;
  color: var(--text);
}
.page-header h1 em { font-style: normal; color: var(--orange); }
.page-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 640px;
}
@media (max-width: 640px) {
  .page-header { padding: 24px 0 20px; }
}

/* Liste sayfaları (hizmetler vb.) — başlık container genişliğinde
   Not: .page-header ve --wide aynı eleman üzerinde; .page-header .page-header p eşleşmez */
.page-header.page-header--wide .page-header-inner,
.page-header.services-page-header .page-header-inner {
  max-width: none;
  width: 100%;
}
.page-header.page-header--wide p,
.page-header.services-page-header p {
  max-width: none;
  width: 100%;
  font-size: 18px;
  line-height: 1.6;
}
.page-header.services-page-header h1 em,
.page-header.about-page-header h1 em,
.page-header.references-page-header h1 em,
.page-header.blog-page-header h1 em {
  display: inline;
  font-style: normal;
  color: var(--orange);
}
.page-header.page-header--wide.about-page-header .page-header-inner,
.page-header.page-header--wide.about-page-header p,
.page-header.page-header--wide.references-page-header .page-header-inner,
.page-header.page-header--wide.references-page-header p,
.page-header.page-header--wide.blog-page-header .page-header-inner,
.page-header.page-header--wide.blog-page-header p {
  max-width: none;
  width: 100%;
}
.page-header.page-header--wide.about-page-header p,
.page-header.page-header--wide.references-page-header p,
.page-header.page-header--wide.blog-page-header p {
  font-size: 18px;
  line-height: 1.6;
}

/* Hizmet detay — başlık ve kısa açıklama tam container genişliği */
.page-header.srv-page-header .page-header-inner {
  max-width: none;
  width: 100%;
}
.page-header.srv-page-header .srv-hero p {
  max-width: none;
  width: 100%;
  font-size: 18px;
  line-height: 1.6;
}

/* CMS sayfaları (kariyer, referanslar, yasal metinler) — tam container genişliği */
.page-header.cms-page-header .page-header-inner { max-width: none; width: 100%; }
.page-header.cms-page-header p {
  max-width: none;
  width: 100%;
  font-size: 18px;
  line-height: 1.6;
}
.page-header.cms-page-header h1 em {
  display: inline;
  font-style: normal;
  color: var(--orange);
}
.cms-page-body { padding: 48px 0 72px; }
.cms-page-body .page-content {
  width: 100%;
  max-width: none;
  line-height: 1.8;
  color: var(--text);
  font-size: 16px;
}
.cms-page-body .page-content > *:first-child { margin-top: 0; }
.cms-page-body .page-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.cms-page-body .page-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin: 28px 0 12px;
}
.cms-page-body .page-content p { margin-bottom: 16px; }
.cms-page-body .page-content ul,
.cms-page-body .page-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.cms-page-body .page-content li { margin-bottom: 8px; }
.cms-page-body .page-content li::marker { color: var(--orange); }
.cms-page-body .page-content a { color: var(--orange); font-weight: 500; }
.cms-page-body .page-content a:hover { text-decoration: underline; }
.cms-page-body .page-content strong { font-weight: 700; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs svg { color: var(--dim); }

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
}
.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.contact-info-list li:first-child { border-top: none; padding-top: 0; }
.ci-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-label { font-size: 12px; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; }
.ci-value { color: var(--text); font-weight: 600; font-size: 15px; margin-top: 2px; }
.ci-value:hover { color: var(--orange); }

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--bg-2);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(255,106,26,0.08);
}
.form-foot {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.form-foot .note { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.product-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,106,26,0.16) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-hero-content { max-width: 580px; }
.product-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.product-meta-row .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-meta-row .pill.dark {
  background: var(--bg-3);
  color: var(--text);
}
.product-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--text);
}
.product-hero-content h1 em { font-style: normal; color: var(--orange); }
.product-hero-content > p.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.product-pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.pricing-block .pricing-label {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-block .pricing-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 2px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-amount small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-stripe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(16,185,129,0.10);
  color: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.demo-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}
.demo-btn:hover {
  border-color: var(--orange);
  background: var(--orange-soft-2);
  transform: translateY(-2px);
}
.demo-btn-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-btn-text { flex: 1; min-width: 0; }
.demo-btn-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.demo-btn-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}
.demo-btn svg.chev {
  color: var(--dim);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.demo-btn:hover svg.chev {
  color: var(--orange);
  transform: translateX(3px);
}

.product-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* product visual reuses .slide-visual style */
.product-detail-visual {
  position: relative;
  aspect-ratio: 1.05;
  width: 100%;
}

/* Features section */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* Screenshots gallery */
.screenshots {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 540px;
}
.shot {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  position: relative;
  box-shadow: var(--shadow-sm);
}
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,106,26,0.20), transparent 60%);
}
.shot:nth-child(1) { grid-row: span 2; }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shot-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 800px) {
  .screenshots {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .shot { aspect-ratio: 16/10; }
  .shot:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
}

/* Pricing tiers */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier.featured {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255,106,26,0.03) 100%);
  box-shadow: 0 16px 40px rgba(255,106,26,0.15);
}
.tier-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}
.tier .tier-sub { color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.tier-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.tier-price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.tier-note { color: var(--dim); font-size: 12px; margin-bottom: 22px; }
.tier-features {
  list-style: none;
  padding: 22px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}
.tier-features li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.tier-features li svg { color: var(--orange); flex-shrink: 0; }
.tier-features li.muted { color: var(--dim); }
.tier-features li.muted svg { color: var(--dim); }
.tier .btn { width: 100%; justify-content: center; margin-top: 24px; }
@media (max-width: 900px) { .pricing-tiers { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q svg { color: var(--orange); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* Related products row */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-visual { aspect-ratio: 1; max-width: 480px; margin: 0 auto; }
  .demo-buttons { grid-template-columns: 1fr; }
}

/* ========== AUTH PAGES ========== */
.auth-section {
  padding: 60px 0 100px;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  min-height: calc(100vh - 240px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.auth-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,106,26,0.15) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.auth-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,106,26,0.08) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.auth-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.auth-card-head {
  text-align: center;
  margin-bottom: 32px;
}
.auth-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.auth-card h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}
.auth-card .lead {
  color: var(--muted);
  font-size: 15px;
}
.auth-form .field { margin-bottom: 16px; }
.auth-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.auth-checkbox.full { align-items: flex-start; }
.auth-checkbox input { accent-color: var(--orange); margin-top: 2px; }
.auth-checkbox a { color: var(--orange); font-weight: 600; }
.auth-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
}
.auth-link:hover { text-decoration: underline; }
.auth-card .btn { width: 100%; justify-content: center; }
.auth-divider {
  display: flex;
  align-items: center;
  margin: 26px 0 22px;
  color: var(--dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.auth-divider span { padding: 0 14px; }
.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.social-btn:hover { background: var(--bg-3); border-color: var(--text); }
.auth-foot {
  text-align: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.auth-foot a {
  color: var(--orange);
  font-weight: 700;
}
.auth-foot a:hover { text-decoration: underline; }
.password-field {
  position: relative;
}
.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.password-toggle:hover { color: var(--orange); }
.password-strength {
  height: 4px;
  border-radius: 2px;
  background: var(--bg-3);
  margin-top: 8px;
  overflow: hidden;
  position: relative;
}
.password-strength-bar {
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: width 0.3s, background 0.3s;
}
.password-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 540px) {
  .auth-card { padding: 36px 28px; }
  .auth-form .field-row { grid-template-columns: 1fr; }
  .social-buttons { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
footer {
  padding: 0;
  background: var(--bg-2);
  margin-top: 0;
  position: relative;
  border-top: 1px solid var(--line);
}
footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.trust-card-text {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .footer-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .footer-trust { grid-template-columns: 1fr; }
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 28px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 22px; }
.footer-newsletter {
  display: flex;
  gap: 8px;
  max-width: 340px;
}
.footer-newsletter input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
}
.footer-newsletter input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,26,0.08);
}
.footer-newsletter button {
  padding: 11px 16px;
  border: none;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-newsletter button:hover { background: var(--orange); }
.footer-col-title,
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
}
.footer-accordion { display: block; }
.footer-col-head {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}
.footer-col-head::-webkit-details-marker { display: none; }
.footer-col-head::marker { content: ''; }
.footer-col-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s;
}
.footer-accordion[open] > .footer-col-head .footer-col-chevron {
  transform: rotate(90deg);
  color: var(--orange);
}
.footer-accordion > ul {
  margin: 0;
  padding: 0 0 4px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.footer-col li svg { color: var(--orange); flex-shrink: 0; }
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0 28px;
}
.footer-bottom-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-meta,
.legal-links a,
.foot-legal-link {
  color: var(--dim);
  font-family: var(--font-body), 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 18px;
}
.legal-links a,
.foot-legal-link {
  transition: color 0.2s;
}
.legal-links a:hover,
.foot-legal-link:hover { color: var(--orange); }
.foot-legal-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  min-height: 0;
  cursor: pointer;
  text-decoration: none;
  vertical-align: baseline;
}
.foot-legal-modal[hidden] { display: none; }
.foot-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.foot-legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.56);
  backdrop-filter: blur(3px);
}
.foot-legal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(15,23,42,0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.foot-legal-head,
.foot-legal-foot {
  padding: 18px 22px;
  border-bottom: 1px solid #EEF0F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.foot-legal-foot {
  border-top: 1px solid #EEF0F4;
  border-bottom: 0;
  justify-content: flex-end;
}
.foot-legal-head h3 {
  margin: 0;
  font: 800 18px/1.2 'Sora', sans-serif;
}
.foot-legal-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.foot-legal-body {
  padding: 22px;
  overflow: auto;
  color: #374151;
  font-size: 13.5px;
  line-height: 1.65;
}
.foot-legal-body h2,
.foot-legal-body h3,
.foot-legal-body h4 {
  margin: 0 0 12px;
  color: #111827;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}
.foot-legal-body h2 { font-size: 17px; }
.foot-legal-body h3 { font-size: 15px; }
.foot-legal-body p { margin: 0 0 14px; }
.foot-legal-body ul,
.foot-legal-body ol { margin: 0 0 14px; padding-left: 20px; }
.foot-legal-body li { margin-bottom: 8px; }
.foot-legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 14px;
}
.foot-legal-body table th,
.foot-legal-body table td {
  border: 1px solid #E5E7EB;
  padding: 8px;
  text-align: left;
}
.foot-legal-ok {
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  font: 800 13px 'Inter', sans-serif;
  cursor: pointer;
}
@media (max-width: 540px) {
  .foot-legal-links.legal-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

/* ========== COOKIE CONSENT (KVKK / çerez) ========== */
.cookie-consent {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 22px;
  z-index: 8600;
  width: min(340px, calc(100vw - 32px));
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: linear-gradient(155deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 50px rgba(10, 10, 11, 0.28);
  animation: cookie-consent-in 0.32s ease;
}
.cookie-consent[hidden] { display: none !important; }
@keyframes cookie-consent-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-text {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.55;
}
.cookie-consent-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--orange-2);
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  vertical-align: baseline;
}
.cookie-consent-link:hover { color: #fff; }
a.cookie-consent-link { text-decoration: underline; }
.cookie-consent-accept {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 11px 16px;
  background: #fff;
  color: var(--dark);
  font: 700 14px var(--font-body), 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.cookie-consent-accept:hover {
  background: var(--orange);
  color: #fff;
}
.cookie-consent-accept:active { transform: scale(0.98); }
body:has(.vp-wa.vp-wa-bottom-left) .cookie-consent {
  bottom: calc(22px + 56px + 14px);
}
@media (max-width: 900px) {
  .cookie-consent {
    left: 16px;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  body:has(.vp-wa.vp-wa-bottom-left) .cookie-consent {
    bottom: calc(96px + 50px + 20px + env(safe-area-inset-bottom, 0px));
  }
}

.socials { display: flex; gap: 10px; }
.social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all 0.2s;
}
.social:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-2px); }
@media (max-width: 1000px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (min-width: 681px) {
  .footer-col-head {
    pointer-events: none;
    cursor: default;
    margin-bottom: 18px;
  }
  .footer-col-chevron { display: none; }
  .footer-accordion > ul { padding-bottom: 0; }
}
@media (max-width: 680px) {
  footer .container { padding-left: 16px; padding-right: 16px; }

  .footer-trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .trust-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .trust-card-icon { width: 38px; height: 38px; border-radius: 10px; }
  .trust-card-title { font-size: 13px; }
  .trust-card-text { font-size: 11.5px; line-height: 1.45; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 0 20px;
  }
  .footer-brand {
    padding-bottom: 20px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand img { height: 26px; margin-bottom: 14px; }
  .footer-brand p {
    max-width: none;
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .footer-newsletter {
    flex-direction: column;
    max-width: none;
    width: 100%;
    gap: 10px;
  }
  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }
  .footer-newsletter button { justify-content: center; }

  .footer-col { border-bottom: 1px solid var(--line); }
  .footer-col:last-child { border-bottom: 0; }
  .footer-col-head {
    padding: 14px 0;
    min-height: 48px;
  }
  .footer-col-title { font-size: 12px; }
  .footer-accordion > ul {
    padding: 0 0 12px;
  }
  .footer-col li {
    padding: 7px 0;
    font-size: 13.5px;
    align-items: flex-start;
  }
  .footer-col li svg { margin-top: 3px; }
  .footer-col a { font-size: 13.5px; }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 18px 0 8px;
  }
  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .socials {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
}
@media (max-width: 540px) {
  .footer-trust { grid-template-columns: 1fr; }
}

/* ====== CART NAV BUTTON ====== */
.nav-cart {
  position: relative;
  width: 42px; height: 42px;
  border: 1px solid var(--line, #E5E7EB);
  background: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text, #1A1A1A);
  transition: all 0.2s;
}
.nav-cart:hover { border-color: var(--orange, #FF6B00); color: var(--orange, #FF6B00); }
.nav-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  background: var(--orange, #FF6B00); color: #fff;
  border-radius: 999px;
  font: 800 9px/15px var(--font-body);
  text-align: center;
  border: 1px solid #fff;
  box-shadow: 0 1px 4px rgba(255,106,26,0.28);
  transform: translate(40%, -40%);
}
.nav-cart-count.is-empty { display: none; }

/* ====== CART DRAWER ====== */
.cart-drawer { pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.swal2-container.app-swal-on-top { z-index: 12050 !important; }
.cart-drawer-backdrop {
  position: fixed; inset: 0;
  z-index: 9000; /* her şeyin üstünde */
  background: rgba(15,15,15,0.50); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.cart-drawer.open .cart-drawer-backdrop { opacity: 1; pointer-events: auto; }
.cart-drawer-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 9010; /* backdrop'ın da üstünde */
  width: min(440px, 94vw);
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: none;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(.2,.8,.2,1), box-shadow 0.32s;
  overflow: hidden;
  pointer-events: none;
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); box-shadow: -24px 0 56px rgba(0,0,0,0.16); pointer-events: auto; }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line, #E5E7EB);
  background: #fff;
}
.cart-drawer-head h3 { font: 800 18px 'Sora',sans-serif; margin: 0; display: flex; align-items: center; gap: 8px; }
.cart-drawer-count { font: 800 11px 'Inter',sans-serif; padding: 3px 9px; border-radius: 999px; background: var(--orange, #FF6B00); color: #fff; }
.cart-drawer-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.04); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); transition: background 0.15s; }
.cart-drawer-close:hover { background: rgba(0,0,0,0.10); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 14px 22px; }
.cart-drawer-body::-webkit-scrollbar { width: 6px; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.10); border-radius: 3px; }
.cart-empty { padding: 60px 8px; text-align: center; color: var(--muted, #6B7280); }
.cart-empty svg { color: var(--dim, #9CA3AF); margin-bottom: 14px; }
.cart-empty h4 { font: 700 17px 'Sora',sans-serif; color: var(--text); margin: 0 0 6px; }
.cart-empty p { font-size: 13px; margin: 0; }

.cart-line {
  padding: 14px 0; border-bottom: 1px solid var(--line, #E5E7EB);
  align-items: center;
}
.cart-line:last-child { border-bottom: 0; }
.cart-line img, .cart-line-thumb {
  width: 60px; height: 60px; border-radius: 12px; object-fit: cover;
  background: var(--bg-2, #F9FAFB);
  display: flex; align-items: center; justify-content: center;
  font: 800 14px 'Sora',sans-serif; color: var(--muted);
}
.cart-line-body { min-width: 0; }
.cart-line-body h5 {
  font: 700 14px/1.3 'Sora', sans-serif; margin: 0 0 4px; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cart-line-meta { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.cart-line-meta strong { color: var(--text); font-size: 13px; }
.cart-line-note { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.cart-line-qty { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; }
.cart-line-qty button {
  width: 26px; height: 26px; border: 1px solid var(--line); background: #fff;
  border-radius: 7px; cursor: pointer; font: 700 14px 'Inter', sans-serif; color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.cart-line-qty button:hover { background: var(--orange-soft); border-color: rgba(255,107,0,0.30); color: var(--orange); }
.cart-line-qty button:disabled { opacity: 0.45; cursor: not-allowed; background: #F5F6F8; color: #9CA3AF; border-color: var(--line); }
.cart-line-qty button:disabled:hover { background: #F5F6F8; color: #9CA3AF; border-color: var(--line); }
.cart-line-qty span { min-width: 24px; text-align: center; font: 700 13px 'Inter',sans-serif; }
.cart-line-license { margin-top: 8px; display: flex; gap: 6px; }
.cart-line-license-mode {
  min-width: 118px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: 600 12px 'Inter',sans-serif;
}
.cart-line-license input {
  flex: 1; min-width: 0;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: 500 12px 'JetBrains Mono', 'Inter', monospace;
  background: #FAFAFA;
  outline: none;
}
.cart-line-license input:focus { border-color: var(--orange); background: #fff; }
.cart-line-license-suffix {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #F9FAFB;
  color: var(--muted);
  white-space: nowrap;
  font: 600 11px 'JetBrains Mono','Inter',monospace;
}
.cart-line-license-suffix.is-hidden { display: none; }
.cart-line-license button {
  padding: 7px 10px;
  border: 1px solid var(--orange);
  background: rgba(255,107,0,0.08);
  color: var(--orange);
  border-radius: 8px;
  font: 700 11px 'Inter',sans-serif;
  cursor: pointer;
}
.cart-line-license button:disabled { opacity: 0.55; cursor: wait; }
.cart-line-license.is-saved input {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.40);
  color: #047857;
}
.cart-line-license.is-saved input:focus {
  border-color: #10B981;
  background: rgba(16,185,129,0.12);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
.cart-line-license.is-saved .cart-line-license-suffix {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.35);
  color: #047857;
}
.cart-line-license.is-saved button {
  background: rgba(16,185,129,0.10);
  border-color: rgba(16,185,129,0.35);
  color: #047857;
}
.cart-line-license.is-saved button:hover {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
}
.cart-line-rm { color: var(--muted) !important; margin-left: 4px; }
.cart-line-rm:hover { color: #EF4444 !important; border-color: rgba(239,68,68,0.30) !important; background: rgba(239,68,68,0.06) !important; }
.cart-line-total { font: 800 15px 'Sora', sans-serif; color: var(--text); align-self: flex-start; margin-top: 2px; }
.cart-line-split {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-line-split li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 11px;
  color: #4B5563;
}
.cart-line-split-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cart-line-split-label strong {
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}
.cart-line-split-label em {
  font-style: normal;
  color: #6B7280;
  font-size: 11px;
}
.cart-line-split-label small {
  color: #6B7280;
  font-size: 10px;
  line-height: 1.35;
}
.cart-line-split-price {
  font: 700 12px 'Sora', sans-serif;
  color: #111827;
  white-space: nowrap;
}

/* Foot — özet + kupon + butonlar */
.cart-drawer-foot { padding: 16px 22px 18px; border-top: 1px solid var(--line); background: #fff; }
.cart-foot-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.cart-foot-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.cart-foot-row strong { color: var(--text); font-weight: 600; }
.cart-foot-row.is-discount { color: #047857; }
.cart-foot-row.is-discount strong { color: #047857; font-weight: 700; }
.cart-foot-row .cart-coupon-rm-btn {
  background: none; border: 0; cursor: pointer; color: #9CA3AF; padding: 0 4px;
  font-size: 14px; line-height: 1;
}
.cart-foot-row .cart-coupon-rm-btn:hover { color: #EF4444; }

.cart-coupon-box { display: flex; gap: 6px; margin-bottom: 12px; }
.cart-coupon-box input {
  flex: 1; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px;
  font: 600 13px 'Inter',sans-serif; text-transform: uppercase; letter-spacing: 0.04em;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cart-coupon-box input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.10); }
.cart-coupon-box button {
  padding: 9px 14px; background: var(--text); color: #fff; border: 0; border-radius: 8px;
  font: 700 12px 'Inter',sans-serif; cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.15s;
}
.cart-coupon-box button:hover { background: var(--orange); }
.cart-coupon-error { color: #B91C1C; font-size: 11px; margin-bottom: 8px; }

.cart-drawer-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 10px; margin-bottom: 14px;
  border-top: 1px solid var(--line);
  font: 600 13px 'Inter',sans-serif; color: var(--muted);
}
.cart-drawer-total strong { font: 800 22px 'Sora',sans-serif; color: var(--text); }

.cart-drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cart-drawer-actions .btn { width: 100%; justify-content: center; padding: 12px; font-size: 13px; }
.cart-drawer-actions .btn.is-disabled { opacity: 0.55; pointer-events: none; }
.cart-checkout-btn { width: 100%; justify-content: center; }
.cart-drawer-link { display: block; text-align: center; padding: 8px; color: var(--muted); font-size: 12px; text-decoration: none; }
.cart-drawer-link:hover { color: var(--orange); }

.cart-bayi-mini {
  background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(16,185,129,0.04));
  color: #047857;
  padding: 10px 14px;
  border: 1px solid rgba(16,185,129,0.20);
  border-radius: 10px;
  font: 700 12px 'Inter',sans-serif;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.cart-admin-mini {
  background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(124,58,237,0.04));
  color: #6D28D9;
  padding: 10px 14px;
  border: 1px solid rgba(124,58,237,0.20);
  border-radius: 10px;
  font: 700 12px 'Inter',sans-serif;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.cart-line-admin-discount {
  margin-top: 6px;
  font: 600 11px 'Inter',sans-serif;
  color: #6D28D9;
}
.cart-line-total-old {
  display: block;
  font-size: 11px;
  color: var(--dim);
  text-decoration: line-through;
  margin-bottom: 2px;
}

/* ========== NAV DROPDOWN (Kurumsal) ========== */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: transparent; border: 0;
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px;
  font: 500 14px/1 var(--font-body);
  color: var(--text);
  cursor: pointer;
  padding: 0;
}
.nav-dropdown-btn:hover { color: var(--orange); }
.nav-dropdown-btn.active { color: var(--orange); font-weight: 600; }
.nav-dropdown-btn svg { transition: transform 0.2s; color: var(--muted); }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px); left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  display: none;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  line-height: 1.2;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font: 500 14px var(--font-body);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: rgba(255,107,0,0.06); color: var(--orange); }
.nav-dropdown-item:hover svg { color: var(--orange); }
.nav-dropdown-item svg { color: var(--muted); flex-shrink: 0; }

/* ========== SİTE İÇİ ARAMA (header dropdown) ========== */
.nav-search { position: relative; }
.nav-search-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}
.nav-search-btn:hover,
.nav-search-btn.is-open { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,0.06); }

.nav-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(440px, 90vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15,15,15,0.10);
  padding: 12px;
  z-index: 100;
}
.nav-search-form {
  display: flex; align-items: center; gap: 8px;
  background: #FAFAFA;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 4px 4px 14px;
  transition: all 0.15s;
}
.nav-search-form:focus-within { border-color: var(--orange); background: #fff; }
.nav-search-form > svg { color: var(--muted); flex-shrink: 0; }
.nav-search-form input {
  flex: 1; min-width: 0;
  border: 0; outline: none;
  background: transparent;
  padding: 10px 4px;
  font: 500 14px 'Inter',sans-serif;
}
.nav-search-submit {
  width: 34px; height: 34px;
  border: 0;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.15s;
}
.nav-search-submit:hover { opacity: 0.9; }

.nav-search-results {
  margin-top: 10px;
  max-height: 60vh;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-search-empty { padding: 22px; text-align: center; color: var(--muted); font-size: 13.5px; }
.nav-search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.nav-search-item:hover { background: rgba(255,107,0,0.06); }
.nav-search-thumb {
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: #F4F4F5;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-search-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nav-search-thumb-blank { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #F4F4F5, #E5E7EB); }
.nav-search-meta { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.nav-search-type {
  font: 700 10px 'Inter',sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav-search-meta strong {
  font: 600 14px 'Inter',sans-serif;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-search-all {
  display: block;
  margin-top: 6px;
  padding: 12px;
  background: rgba(255,107,0,0.06);
  border: 1px dashed rgba(255,107,0,0.30);
  border-radius: 10px;
  text-align: center;
  color: var(--orange);
  font: 700 13px 'Inter',sans-serif;
  text-decoration: none;
  transition: all 0.15s;
}
.nav-search-all:hover { background: var(--orange); color: #fff; border-style: solid; }

@media (max-width: 720px) {
  .nav-search-panel { right: -50px; width: min(400px, 86vw); }
}

/* ========== MOBILE HAMBURGER + DRAWER ========== */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.nav-burger:hover { border-color: var(--orange); color: var(--orange); }

/* ========== MOBILE DRAWER — modern, polished ========== */
.mob-menu { position: fixed; inset: 0; z-index: 9000; pointer-events: none; }
.mob-menu.open { pointer-events: auto; }
.mob-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,11,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s;
}
.mob-menu.open .mob-menu-backdrop { opacity: 1; }
.mob-menu-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(360px, 92vw);
  background: linear-gradient(180deg, #fff 0%, #FAFAFA 100%);
  display: flex; flex-direction: column;
  box-shadow: none;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1), box-shadow 0.32s;
  overflow: hidden;
}
.mob-menu.open .mob-menu-panel { transform: translateX(0); box-shadow: -24px 0 60px rgba(0,0,0,0.20); }

.mob-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mob-menu-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.mob-menu-brand img { height: 30px; }
.mob-menu-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(10,10,11,0.05);
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: all 0.15s;
}
.mob-menu-close:hover { background: var(--orange); color: #fff; transform: rotate(90deg); }

.mob-menu-search {
  margin: 16px 18px 8px;
  padding: 11px 16px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.18s;
}
.mob-menu-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.10);
  background: #fff;
}
.mob-menu-search > svg { color: var(--muted); flex-shrink: 0; }
.mob-menu-search input {
  flex: 1; min-width: 0;
  border: 0; outline: none;
  background: transparent;
  font: 500 14px var(--font-body);
  color: var(--text);
}
.mob-menu-search input::placeholder { color: var(--dim); }

.mob-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 14px 12px;
  display: flex; flex-direction: column;
  gap: 2px;
  scrollbar-width: thin;
}
.mob-menu-nav::-webkit-scrollbar { width: 5px; }
.mob-menu-nav::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.10); border-radius: 3px; }

/* Düz bağlantılar */
.mob-menu-link,
.mob-menu-toggle {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 13px 14px;
  font: 700 15px var(--font-body);
  letter-spacing: -0.005em;
  color: var(--text);
  text-decoration: none;
  border-radius: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.18s, color 0.18s;
}
.mob-menu-link:hover,
.mob-menu-toggle:hover {
  background: rgba(10,10,11,0.04);
}
.mob-menu-link.active,
.mob-menu-toggle.active {
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,107,0,0.04) 100%);
  color: var(--orange);
  padding-left: 20px;
}
.mob-menu-link.active::before,
.mob-menu-toggle.active::before {
  content: '';
  position: absolute;
  left: 8px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 20px;
  background: var(--orange);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255,107,0,0.40);
}

/* Akordeon grupları */
.mob-menu-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mob-menu-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.22s ease, color 0.18s;
}
.mob-menu-toggle.active .mob-menu-chevron,
.mob-menu-group.open .mob-menu-chevron {
  color: var(--orange);
}
.mob-menu-group.open .mob-menu-chevron {
  transform: rotate(90deg);
}

.mob-menu-sub {
  display: none;
  flex-direction: column;
  gap: 1px;
  margin: 4px 0 8px 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mob-menu-group.open .mob-menu-sub {
  display: flex;
}
.mob-menu-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font: 600 13.5px var(--font-body);
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.18s;
}
.mob-menu-sub a::before {
  content: '';
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.35;
  flex-shrink: 0;
  transition: all 0.18s;
}
.mob-menu-sub a:hover,
.mob-menu-sub a.active {
  color: var(--orange);
  background: rgba(255,107,0,0.06);
}
.mob-menu-sub a:hover::before,
.mob-menu-sub a.active::before {
  opacity: 1;
  background: var(--orange);
}
.mob-menu-sub-all {
  font-weight: 700 !important;
  color: var(--text) !important;
  border-bottom: 1px dashed rgba(10,10,11,0.08);
  border-radius: 8px 8px 0 0 !important;
  margin-bottom: 4px;
  padding-bottom: 12px !important;
}
.mob-menu-sub-all::before {
  display: none !important;
}
.mob-menu-sub-all:hover {
  color: var(--orange) !important;
}

.mob-menu-foot {
  padding: 16px 18px max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex; flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.mob-menu-foot form { margin: 0; }
.mob-menu-foot .mob-menu-btn { width: 100%; }
.mob-menu-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  font: 700 14px var(--font-body);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}
.mob-menu-btn:hover { border-color: var(--orange); color: var(--orange); }
.mob-menu-btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A00 100%);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(255,107,0,0.30);
}
.mob-menu-btn-primary:hover {
  filter: brightness(1.05);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255,107,0,0.40);
}

.mob-menu-langs {
  display: flex; gap: 6px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px dashed var(--line);
}
.mob-menu-langs a {
  flex: 1;
  text-align: center;
  padding: 9px;
  background: #FAFAFA;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: 700 11.5px var(--font-body);
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.15s;
}
.mob-menu-langs a:hover { border-color: var(--orange); color: var(--orange); }
.mob-menu-langs a.active {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 4px 10px rgba(255,107,0,0.30);
}

/* ========== BOTTOM MOBILE NAV — floating modern style ========== */
.bot-nav {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(10,10,11,0.06);
  border-radius: 22px;
  z-index: 800;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(10,10,11,0.10), 0 4px 10px rgba(10,10,11,0.04);
}
.bot-nav-item {
  flex: 1;
  background: transparent; border: 0;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 6px 7px;
  border-radius: 14px;
  font: 700 10.5px var(--font-body);
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  min-width: 0;
}
.bot-nav-item > span:not(.bot-nav-icon-wrap) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.bot-nav-item:hover { color: var(--text); }
.bot-nav-item.active {
  background: linear-gradient(180deg, rgba(255,107,0,0.10) 0%, rgba(255,107,0,0.04) 100%);
  color: var(--orange);
}
.bot-nav-item.active::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%; transform: translateX(-50%);
  width: 26px; height: 3px;
  background: var(--orange);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(255,107,0,0.40);
}
.bot-nav-item svg {
  color: inherit;
  width: 22px; height: 22px;
  transition: transform 0.18s;
}
.bot-nav-item.active svg { transform: scale(1.10); }

.bot-nav-icon-wrap { position: relative; display: inline-flex; flex-shrink: 0; }
.bot-nav-badge {
  position: absolute;
  top: -7px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font: 800 11px/18px var(--font-body);
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(255,107,0,0.35);
  overflow: visible;
  max-width: none;
  z-index: 1;
  pointer-events: none;
}
.bot-nav-badge.is-empty { display: none; }

/* ========== RESPONSIVE NAV TOGGLES ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-desktop-only { display: none !important; }
  .nav-desktop-cart { display: none !important; }
  .nav-burger { display: inline-flex; }
  .bot-nav { display: flex; }
  /* Floating bot-nav (62px) + 12px margin + safe area — içerik altta kapanmasın */
  body { padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
}

/* ========== CUSTOMER PANEL ========== */
.panel-head {
  padding: 56px 0 36px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.panel-head::before {
  content: ''; position: absolute; top: -180px; right: -180px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,106,26,0.10) 0%, transparent 60%);
  filter: blur(36px); pointer-events: none;
}
.panel-head .container { position: relative; z-index: 1; }
.panel-head h1 { font: 800 clamp(26px, 3.6vw, 38px)/1.1 'Sora', sans-serif; letter-spacing: -0.02em; margin: 8px 0; }
.panel-head h1 em { font-style: normal; color: var(--orange); }
.panel-name-trigger {
  font: inherit;
  color: var(--orange);
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}
.panel-name-trigger:hover { text-decoration: underline; }
.panel-head p { color: var(--muted); font-size: 15px; }

.panel-section { padding: 32px 0 64px; }
.panel-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: flex-start; }

.panel-mob-toggle {
  display: none; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
  font: 600 14px 'Inter', sans-serif; color: var(--text);
  cursor: pointer; margin-bottom: 14px; width: 100%;
  justify-content: center;
}

.panel-aside {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 22px;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 80px;
}
.panel-profile { text-align: left; }
.panel-avatar {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font: 800 20px 'Sora', sans-serif; margin-bottom: 12px;
}
.panel-name { font: 700 16px 'Sora', sans-serif; color: var(--text); }
.panel-email { color: var(--muted); font-size: 13px; margin-top: 2px; word-break: break-all; }
.panel-meta {
  margin-top: 8px; display: flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 12px;
}
.panel-divider { height: 1px; background: var(--line); margin: 18px 0; }

.panel-nav { display: flex; flex-direction: column; gap: 2px; }
.panel-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: 10px;
  color: var(--muted); font: 600 14px 'Inter', sans-serif;
  text-decoration: none; transition: background 0.15s, color 0.15s;
  background: transparent; border: 0; width: 100%; text-align: left;
  cursor: pointer; font-family: inherit;
}
.panel-nav-item span:first-of-type { flex: 1; min-width: 0; }
.panel-nav-item:hover { background: rgba(10,10,11,0.04); color: var(--text); }
.panel-nav-item.is-active { background: var(--orange-soft); color: var(--orange); }
.panel-nav-item.is-danger { color: #B91C1C; margin-top: 6px; }
.panel-nav-item.is-danger:hover { background: rgba(185,28,28,0.06); }
.panel-logout-form { margin-top: 6px; }

.panel-pill {
  background: rgba(10,10,11,0.06); color: var(--text);
  font: 700 11px 'Inter', sans-serif; padding: 2px 8px; border-radius: 999px;
  min-width: 20px; text-align: center;
}
.panel-pill.is-orange { background: var(--orange); color: #fff; }

.panel-main { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

.panel-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.panel-stat {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm);
}
.panel-stat-label {
  font: 700 11px 'Inter', sans-serif; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.panel-stat-value { font: 800 28px/1 'Sora', sans-serif; letter-spacing: -0.02em; color: var(--text); }
.panel-stat-cur { font-size: 16px; color: var(--muted); margin-left: 4px; }
.panel-stat-sub { font-size: 12px; color: var(--dim); margin-top: 4px; }
.panel-stat-link { display: inline-block; margin-top: 8px; font: 600 12px 'Inter', sans-serif; color: var(--orange); text-decoration: none; }
.panel-stat-link:hover { text-decoration: underline; }
.panel-stat-cari { background: #FFFBEB; border-color: #FDE68A; }
.panel-stat-cari .panel-stat-label { color: #92400E; }
.panel-stat-cari.has-balance .panel-stat-value { color: #B45309; }
.panel-stat-cari.has-balance .panel-stat-sub { color: #92400E; font-weight: 600; }
.panel-cari-alert {
  margin-bottom: 14px; padding: 14px 16px; border-radius: 16px;
  border: 1px solid #FDE68A; background: #FFFBEB;
}
.panel-cari-alert-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 10px; font-size: 13px; color: #92400E; }
.panel-cari-alert-head strong { font: 700 14px 'Sora', sans-serif; color: #78350F; }
.panel-cari-alert-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.panel-cari-alert-item {
  display: grid; grid-template-columns: minmax(110px, 1fr) auto; gap: 2px 12px; align-items: center;
  padding: 8px 10px; border-radius: 10px; background: #fff; border: 1px solid #FEF3C7; text-decoration: none; color: inherit;
}
.panel-cari-alert-item:hover { border-color: #F59E0B; background: #FFF7ED; }
.panel-cari-alert-code { font: 700 13px 'JetBrains Mono', monospace; color: #111827; }
.panel-cari-alert-product { grid-column: 1; font-size: 12px; font-weight: 600; color: #374151; }
.panel-cari-alert-meta { grid-column: 1; font-size: 12px; color: #6B7280; }
.panel-cari-alert-item strong { grid-row: span 3; align-self: center; font-size: 14px; color: #B45309; }
.panel-cari-alert-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.panel-cari-alert-foot .btn-primary { min-width: 88px; justify-content: center; }
.panel-sidebar-cari {
  margin-top: 12px; padding: 12px; border-radius: 12px; border: 1px solid var(--line); background: #F9FAFB; text-align: left;
}
.panel-sidebar-cari.has-balance { border-color: #FDE68A; background: #FFFBEB; }
.panel-sidebar-cari-label { font: 700 10px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: #6B7280; }
.panel-sidebar-cari.has-balance .panel-sidebar-cari-label { color: #92400E; }
.panel-sidebar-cari-amount { font: 800 18px 'Sora', sans-serif; margin-top: 4px; }
.panel-sidebar-cari.has-balance .panel-sidebar-cari-amount { color: #B45309; }
.panel-sidebar-cari-meta { font-size: 12px; color: var(--muted); margin-top: 4px; }
.panel-cari-badge {
  display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 999px;
  font: 700 10px 'Inter', sans-serif; background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A;
}
.panel-cari-notice-pill {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
  font: 700 11px 'Inter', sans-serif; background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE;
  white-space: nowrap;
}
.panel-cari-product-line { font-size: 13px; font-weight: 600; color: #374151; line-height: 1.4; }
.panel-cari-product-line + .panel-cari-product-line { margin-top: 4px; }
.panel-cari-order-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 14px;
  margin-bottom: 14px; padding: 12px 14px; border-radius: 14px; font-size: 13px;
}
.panel-cari-order-banner.is-open { border: 1px solid #FDE68A; background: #FFFBEB; color: #92400E; }
.panel-cari-order-banner.is-paid { border: 1px solid #6EE7B7; background: #ECFDF5; color: #065F46; }
.panel-cari-order-banner strong { display: block; font: 700 14px 'Sora', sans-serif; margin-bottom: 2px; }
.panel-card-note { border-color: #FDE68A; background: #FFFBEB; }
.panel-cari-pay-summary {
  display: grid; grid-template-columns: 1fr auto; gap: 12px 20px; align-items: end;
  padding: 14px 16px; margin-bottom: 16px; border-radius: 12px; background: #F9FAFB; border: 1px solid var(--line);
}
.panel-cari-pay-label { display: block; font: 700 10px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.panel-cari-pay-total { font: 800 22px 'Sora', sans-serif; color: #B45309; }
.panel-cari-pay-methods { display: flex; flex-direction: column; gap: 8px; }
.panel-cari-pay-method {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
}
.panel-cari-pay-method:has(input:checked) { border-color: var(--orange); background: rgba(255, 107, 0, 0.04); }
.panel-cari-bank-list { display: flex; flex-direction: column; gap: 10px; }
.panel-cari-bank-card { padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: #F9FAFB; }
.panel-cari-bank-name { font: 700 15px 'Sora', sans-serif; margin-bottom: 8px; }
.panel-cari-bank-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; font-size: 13px; margin-top: 6px; }
.panel-cari-bank-row span { color: var(--muted); min-width: 90px; }
.panel-cari-iban { font-family: 'JetBrains Mono', monospace; font-size: 12px; word-break: break-all; }
.panel-cari-copy {
  margin-left: auto; padding: 4px 10px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; font-size: 11px; font-weight: 700; cursor: pointer;
}
.panel-cari-bank-note { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.panel-row-actions { display: inline-flex; align-items: center; justify-content: flex-end; gap: 6px; flex-wrap: wrap; }
.panel-action-icon {
  width: 32px; height: 32px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange); text-decoration: none;
  border: 1px solid rgba(255, 107, 0, 0.18); background: rgba(255, 107, 0, 0.06);
  flex-shrink: 0;
}
.panel-action-icon:hover { background: rgba(255, 107, 0, 0.12); text-decoration: none; }
.panel-action-icon.is-pending {
  background: #EFF6FF; border-color: #BFDBFE; color: #1D4ED8; cursor: help;
}
.panel-action-icon.is-havale {
  background: rgba(10, 10, 11, 0.04); border-color: var(--line); color: #374151;
}
.panel-action-icon.is-havale:hover {
  background: rgba(10, 10, 11, 0.08); color: var(--text); text-decoration: none;
}
@media (max-width: 640px) {
  .panel-cari-pay-summary { grid-template-columns: 1fr; }
}

.panel-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 24px; box-shadow: var(--shadow-sm);
}
.panel-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; gap: 12px; flex-wrap: wrap;
}
.panel-card-head h3 { font: 700 18px/1.2 'Sora', sans-serif; margin: 0; }
.panel-count { color: var(--muted); font-weight: 500; font-size: 14px; }
.panel-link { color: var(--orange); font: 600 13px 'Inter', sans-serif; text-decoration: none; }
.panel-link:hover { text-decoration: underline; }
.panel-btn-sm { padding: 8px 14px !important; font-size: 13px !important; }
.panel-subtitle { font: 700 13px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 22px 0 12px; }

.panel-list { display: flex; flex-direction: column; }
.panel-list-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 12px; margin: 0 -12px; border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: background 0.15s; border-bottom: 1px solid var(--line);
}
.panel-list-row:last-child { border-bottom: 0; }
.panel-list-row:hover { background: rgba(10,10,11,0.02); }
.panel-list-title { font: 700 14px 'Inter', sans-serif; color: var(--text); }
.panel-list-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.panel-list-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.panel-status {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font: 700 11px 'Inter', sans-serif; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(10,10,11,0.06); color: var(--text);
}
.panel-status-pending  { background: rgba(245,158,11,0.12); color: #B45309; }
.panel-status-paid     { background: rgba(16,185,129,0.12); color: #047857; }
.panel-status-preparing{ background: rgba(59,130,246,0.12); color: #1D4ED8; }
.panel-status-delivered{ background: rgba(5,150,105,0.12);  color: #065F46; }
.panel-status-cancelled{ background: rgba(239,68,68,0.12);  color: #B91C1C; }
.panel-status-refunded { background: rgba(107,114,128,0.12);color: #4B5563; }

.panel-empty { padding: 36px 20px; text-align: center; }
.panel-empty-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 16px; background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.panel-empty h4 { font: 700 17px 'Sora', sans-serif; margin: 0 0 6px; }
.panel-empty p { color: var(--muted); font-size: 14px; max-width: 360px; margin: 0 auto 16px; line-height: 1.55; }

.panel-table-wrap { overflow-x: auto; margin: 0 -8px; }
.panel-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.panel-table th {
  text-align: left; padding: 10px 12px;
  font: 700 12px 'Inter', sans-serif; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.panel-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.panel-table tr:last-child td { border-bottom: 0; }

.panel-dl-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: rgba(255,107,0,0.10);
  color: #FF6B00;
  border: 1px solid rgba(255,107,0,0.30);
  border-radius: 8px;
  font: 700 12.5px 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.15s;
}
.panel-dl-btn:hover { background: #FF6B00; color: #fff; border-color: #FF6B00; }
.panel-dl-muted { color: var(--muted); font-size: 13px; }

.panel-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; margin-bottom: 20px; padding: 18px;
  background: var(--bg-2); border-radius: 14px;
}
.panel-info-grid > div { display: flex; flex-direction: column; gap: 4px; }
.panel-info-grid span { font: 700 11px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.panel-info-grid strong { font-size: 14px; color: var(--text); }

.panel-timeline { display: flex; flex-direction: column; gap: 16px; padding-left: 14px; border-left: 2px solid var(--line); }
.panel-timeline-item { position: relative; }
.panel-timeline-dot {
  position: absolute; left: -22px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,26,0.15);
}
.panel-timeline-item strong { display: block; font-size: 14px; }
.panel-timeline-item span { font-size: 12px; color: var(--muted); }
.panel-timeline-item p { margin: 6px 0 0; font-size: 13px; color: var(--muted); }

.panel-form { display: flex; flex-direction: column; gap: 14px; }
.panel-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; align-items: start; }
.panel-form-grid .panel-form-row { min-width: 0; }
.panel-form-grid .panel-form-row--full { grid-column: 1 / -1; }
.panel-application-lead {
  margin: 0 0 18px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.55;
}
.panel-reseller-application-form .panel-form-row label .req { color: #EF4444; font-weight: 700; }
.panel-reseller-doc-form { margin-top: 4px; padding-top: 14px; border-top: 1px solid var(--line); }
.panel-reseller-doc-form .panel-form-actions { justify-content: flex-start; }
.panel-doc-list-title { font: 700 12px 'Inter', sans-serif; color: var(--muted); margin-bottom: 8px; }
.panel-doc-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.panel-doc-items li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
  padding: 8px 10px; background: var(--bg-2); border-radius: 8px; font-size: 13px;
}
.panel-doc-items a { color: var(--orange); font-weight: 600; text-decoration: none; }
.panel-doc-items a:hover { text-decoration: underline; }
.panel-doc-items--gallery { gap: 8px; }
.panel-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.panel-doc-type {
  flex-shrink: 0;
  font: 700 10px/22px 'Inter', sans-serif;
  width: 36px;
  text-align: center;
  border-radius: 6px;
  background: rgba(59,130,246,0.12);
  color: #1D4ED8;
}
.panel-doc-item-body { min-width: 0; flex: 1; }
.panel-doc-gallery-link {
  display: block;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}
.panel-doc-gallery-link:hover .panel-doc-link-label { text-decoration: underline; }
.panel-doc-link-label { display: block; margin-top: 4px; font-size: 13px; }
.panel-doc-thumb {
  display: block;
  max-width: 140px;
  max-height: 100px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.panel-doc-meta { display: block; margin-top: 4px; font-size: 11px; color: var(--dim); }
.panel-doc-download { color: var(--orange); font-weight: 600; text-decoration: none; }
.panel-doc-download:hover { text-decoration: underline; }
.panel-doc-delete-form { display: inline; margin: 0; padding: 0; }
.panel-doc-delete {
  border: 0;
  background: none;
  padding: 0;
  color: #DC2626;
  font: 600 11px 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.panel-doc-delete:hover { text-decoration: underline; }
.panel-doc-meta a { color: var(--orange); font-weight: 600; text-decoration: none; }
.panel-doc-meta a:hover { text-decoration: underline; }
.ticket-gallery-modal { position: fixed; inset: 0; background: rgba(10,10,11,.86); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 28px; }
.ticket-gallery-modal.is-open { display: flex; }
.ticket-gallery-stage { display: flex; align-items: center; justify-content: center; max-width: min(92vw, 1280px); max-height: 82vh; }
.ticket-gallery-modal img { max-width: min(92vw, 1280px); max-height: 82vh; border-radius: 12px; box-shadow: 0 16px 44px rgba(0,0,0,.35); background: #fff; }
.ticket-gallery-modal iframe {
  width: min(92vw, 960px);
  height: 82vh;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0,0,0,.35);
  background: #fff;
  display: none;
}
.ticket-gallery-close { position: absolute; top: 16px; right: 18px; width: 42px; height: 42px; border: 0; border-radius: 999px; cursor: pointer; font-size: 30px; line-height: 1; color: #fff; background: rgba(255,255,255,.18); }
.ticket-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border: 0; border-radius: 999px; cursor: pointer; font-size: 30px; line-height: 1; color: #fff; background: rgba(255,255,255,.18); }
.ticket-gallery-nav.is-prev { left: 18px; }
.ticket-gallery-nav.is-next { right: 18px; }
.ticket-gallery-caption-wrap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.ticket-gallery-caption-wrap a { pointer-events: auto; }
.ticket-gallery-caption { text-align: center; color: #E5E7EB; font: 500 13px/1.4 'Inter',sans-serif; }
.ticket-gallery-download-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font: 600 13px 'Inter',sans-serif;
  text-decoration: none;
}
.ticket-gallery-download-btn:hover { background: rgba(255,255,255,.32); }
.panel-card-application .panel-form-actions { margin-top: 4px; padding-top: 4px; border-top: 1px solid var(--line); }
.panel-form-row { display: flex; flex-direction: column; gap: 6px; }
.panel-form-row label { font: 700 12px 'Inter', sans-serif; letter-spacing: 0.04em; color: var(--muted); }
.panel-form-row input, .panel-form-row textarea, .panel-form-row select {
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: 400 14px 'Inter', sans-serif; color: var(--text);
  background: #fff; transition: border-color 0.15s, box-shadow 0.15s;
}
.panel-form-row input:focus, .panel-form-row textarea:focus, .panel-form-row select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,26,0.10);
}
.panel-form-row input:disabled { background: var(--bg-2); color: var(--muted); }
.panel-form-row textarea { resize: vertical; min-height: 120px; }
.panel-form-hint { font-size: 12px; color: var(--dim); }
.panel-form-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

.panel-alert {
  padding: 12px 16px; border-radius: 12px; font-size: 14px;
  background: rgba(10,10,11,0.04); color: var(--text);
  border: 1px solid var(--line);
}
.panel-alert-success { background: rgba(16,185,129,0.08); color: #047857; border-color: rgba(16,185,129,0.2); }
.panel-alert-error   { background: rgba(239,68,68,0.08);  color: #B91C1C; border-color: rgba(239,68,68,0.2); }

.ticket-thread { display: flex; flex-direction: column; gap: 14px; }
.ticket-msg {
  padding: 16px 18px; border-radius: 14px; max-width: 88%;
  border: 1px solid var(--line);
}
.ticket-msg.is-mine  { background: var(--orange-soft); border-color: rgba(255,106,26,0.18); align-self: flex-end; }
.ticket-msg.is-admin { background: var(--bg-2);        align-self: flex-start; }
.ticket-msg-head { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; margin-bottom: 6px; }
.ticket-msg-head strong { color: var(--text); font-size: 13px; }
.ticket-msg-head span { color: var(--muted); }
.ticket-msg-body { font-size: 14px; line-height: 1.6; color: var(--text); white-space: pre-wrap; word-wrap: break-word; }

@media (max-width: 900px) {
  .panel-grid { grid-template-columns: 1fr; }
  .panel-mob-toggle { display: inline-flex; }
  .panel-aside { position: static; display: none; }
  .panel-aside.is-open { display: block; }
  .panel-stats { grid-template-columns: 1fr; }
  .panel-form-grid { grid-template-columns: 1fr; }
  .panel-card { padding: 18px; border-radius: 16px; }
  .panel-card-head { margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
  .panel-card-head h3 { font-size: 17px; }
  .panel-list-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .panel-list-right { width: 100%; justify-content: space-between; flex-wrap: wrap; }
  .panel-table-wrap:not(.panel-table-wrap--scroll) { overflow-x: auto; margin: 0 -4px; }
  .panel-section { padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px)); }
  .panel-head .breadcrumbs { flex-wrap: wrap; gap: 4px 6px; }
  .panel-cari-order-banner { flex-direction: column; align-items: flex-start !important; }
  .panel-cari-alert-item { grid-template-columns: 1fr; }
  .panel-cari-alert-item strong { grid-row: auto; justify-self: start; margin-top: 4px; }
  .ticket-msg { max-width: 100%; }
}

/* ========== PANEL — mobil tablo → kart ========== */
@media (max-width: 768px) {
  .panel-table-wrap:not(.panel-table-wrap--scroll) {
    overflow: visible;
    margin: 0;
  }

  .panel-table:not(.panel-table--scroll) {
    min-width: 0 !important;
    table-layout: auto !important;
  }

  .panel-table:not(.panel-table--scroll) thead { display: none; }

  .panel-table:not(.panel-table--scroll) tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .panel-table:not(.panel-table--scroll) tbody > tr {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .panel-table:not(.panel-table--scroll) tbody > tr:has(> td[colspan]) {
    background: transparent;
    border: 0;
    padding: 8px 0;
    text-align: center;
  }

  .panel-table:not(.panel-table--scroll) td {
    display: block;
    padding: 0 !important;
    border: 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0;
    text-align: left !important;
  }

  .panel-table:not(.panel-table--scroll) td[data-label]::before {
    display: block;
    content: attr(data-label);
    font: 700 10px var(--font-body, 'Inter'), sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }

  .panel-table:not(.panel-table--scroll) td.col-primary::before,
  .panel-table:not(.panel-table--scroll) td.col-action::before,
  .panel-table:not(.panel-table--scroll) td[data-label=""]::before {
    display: none;
  }

  .panel-table:not(.panel-table--scroll) td.col-action {
    padding-top: 10px !important;
    margin-top: 2px;
    border-top: 1px dashed rgba(10,10,11,0.08) !important;
  }

  .panel-row-actions,
  .panel-order-actions,
  .panel-license-actions {
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  .panel-license-actions { align-items: stretch !important; }
  .panel-products-table .panel-license-action-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
    justify-content: stretch;
  }
  .panel-products-table .panel-license-action-btns .panel-btn-sm {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    white-space: nowrap;
  }
  .panel-products-table .panel-license-renew-hint {
    margin-top: 4px;
    text-align: left !important;
    white-space: normal !important;
  }

  .panel-product-name,
  .panel-order-code,
  .panel-license-domain { white-space: normal !important; word-break: break-word; }
  .panel-order-domain { word-break: break-all; }

  /* Siparişler */
  .panel-orders-table tbody > tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "code status"
      "type type"
      "date date"
      "total total"
      "action action";
    gap: 6px 10px;
  }
  .panel-orders-table .col-code { grid-area: code; }
  .panel-orders-table .col-status { grid-area: status; align-self: start; justify-self: end; text-align: right; }
  .panel-orders-table .col-type { grid-area: type; margin-top: 4px; padding-top: 10px; border-top: 1px dashed rgba(10,10,11,0.08); }
  .panel-orders-table .col-date { grid-area: date; }
  .panel-orders-table .col-total { grid-area: total; }
  .panel-orders-table .col-action { grid-area: action; border-top: 1px dashed rgba(10,10,11,0.08); margin-top: 4px; padding-top: 10px !important; }
  .panel-orders-table .col-code::before,
  .panel-orders-table .col-status::before,
  .panel-orders-table .col-action::before { display: none; }

  /* Ürünlerim / lisanslar */
  .panel-products-table tbody > tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "product status"
      "domain domain"
      "expiry expiry"
      "disk disk"
      "action action";
    gap: 6px 10px;
  }
  .panel-products-table .col-product { grid-area: product; }
  .panel-products-table .col-status { grid-area: status; justify-self: end; align-self: start; }
  .panel-products-table .col-domain { grid-area: domain; padding-top: 8px; border-top: 1px dashed rgba(10,10,11,0.08); }
  .panel-products-table .col-expiry { grid-area: expiry; }
  .panel-products-table .col-disk { grid-area: disk; }
  .panel-products-table .col-action { grid-area: action; border-top: 1px dashed rgba(10,10,11,0.08); margin-top: 4px; padding-top: 10px !important; }
  .panel-products-table .col-product::before,
  .panel-products-table .col-status::before,
  .panel-products-table .col-action::before { display: none; }
  .panel-products-table .col-disk [style*="max-width:160px"] { max-width: 100% !important; }
  .panel-products-table .col-disk .panel-btn-sm,
  .panel-products-table .col-disk .js-disk-upgrade-open {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 8px !important;
  }
  .panel-products-table tbody > tr {
    overflow: hidden;
  }
  .panel-products-table .col-action {
    min-width: 0;
    overflow: hidden;
  }

  /* Faturalar */
  .panel-invoices-table tbody > tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "file action"
      "order order"
      "status status"
      "total total"
      "uploaded uploaded";
    gap: 6px 10px;
  }
  .panel-invoices-table .col-file { grid-area: file; }
  .panel-invoices-table .col-action { grid-area: action; justify-self: end; align-self: start; border-top: 0 !important; padding-top: 0 !important; margin-top: 0; }
  .panel-invoices-table .col-order { grid-area: order; padding-top: 8px; border-top: 1px dashed rgba(10,10,11,0.08); }
  .panel-invoices-table .col-status { grid-area: status; }
  .panel-invoices-table .col-total { grid-area: total; }
  .panel-invoices-table .col-uploaded { grid-area: uploaded; }
  .panel-invoices-table .col-file::before,
  .panel-invoices-table .col-action::before { display: none; }
  .panel-invoice-name { white-space: normal !important; word-break: break-word; }

  /* Sipariş detay kalemleri */
  .panel-order-items-table tbody > tr { gap: 8px; }
  .panel-order-items-table .col-product { font-weight: 600; }

  /* Bayi müşteri lisans tablosu */
  .panel-reseller-licenses-table tbody > tr {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "product"
      "domain"
      "disk"
      "action";
    gap: 8px;
  }
  .panel-reseller-licenses-table .col-product { grid-area: product; }
  .panel-reseller-licenses-table .col-domain { grid-area: domain; }
  .panel-reseller-licenses-table .col-disk { grid-area: disk; }
  .panel-reseller-licenses-table .col-action { grid-area: action; }
  .panel-reseller-licenses-table .col-product::before,
  .panel-reseller-licenses-table .col-action::before { display: none; }

  .panel-table--scroll { min-width: 680px !important; }
  .ticket-msg img { max-width: 100% !important; height: auto !important; }
  .panel-card-head > div:first-child { min-width: 0; flex: 1; }

  .panel-form-actions { justify-content: stretch; }
  .panel-form-actions .btn { justify-content: center; }
  .panel-card-head .panel-form-actions { width: 100%; justify-content: flex-start; }
}

@media (max-width: 600px) {
  .panel-head { padding: 28px 0 22px; }
  .panel-head h1 { font-size: 22px; }
  .panel-head p { font-size: 13px; }
  .panel-section { padding: 20px 0 40px; }
  .panel-stat { padding: 16px; }
  .panel-stat-value { font-size: 24px; }
  .panel-form-actions .btn { flex: 1 1 100%; }
  .panel-cari-pay-methods .panel-cari-pay-method { padding: 12px 14px; }
}

/* ========== HOME SERVICES (re-used on service-show page) ========== */
.home-services { padding: 60px 0; }
.home-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.home-service-card {
  display: block; padding: 26px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; text-decoration: none; color: var(--text);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.home-service-card:hover { transform: translateY(-3px); border-color: rgba(255,107,0,0.25); box-shadow: 0 14px 30px rgba(10,10,11,0.06); }
.home-service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange-soft); color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.home-service-card h3 { font: 700 17px 'Sora', sans-serif; margin: 0 0 8px; letter-spacing: -0.01em; }
.home-service-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Cart drawer — paket + indirim (eski .cart-bayi-mini üst blokta yenilendi) */
.cart-line.is-pkg { background: rgba(255,107,0,0.05); border-radius: 12px; padding: 12px; margin: 4px -12px; border-bottom: 0; }
.cart-line.is-pkg + .cart-line.is-pkg { margin-top: 0; }
.cart-line-pkg { background: linear-gradient(135deg, color-mix(in srgb, var(--c) 16%, transparent), color-mix(in srgb, var(--c) 6%, transparent)) !important; color: var(--c) !important; }
.cart-line-pill { display: inline-block; padding: 2px 7px; background: var(--orange); color: #fff; border-radius: 4px; font: 800 9px 'Inter',sans-serif; letter-spacing: 0.06em; margin-left: 6px; vertical-align: middle; }
.cart-line-old { text-decoration: line-through; color: var(--dim); font-size: 11px; margin-right: 4px; }

/* Bayi indirimli fiyat — global */
.price-amount-old { display: inline-block; text-decoration: line-through; color: var(--dim); font-size: 0.65em; font-weight: 600; margin-right: 6px; vertical-align: middle; }
.price-amount-pill, .price-pill { display: inline-block; margin-left: 6px; padding: 2px 7px; background: rgba(16,185,129,0.12); color: #047857; border-radius: 999px; font: 800 11px 'Inter', sans-serif; letter-spacing: 0.04em; vertical-align: middle; }
.pd-price-old { font-size: 18px; color: var(--dim); text-decoration: line-through; margin-bottom: 2px; }
.pd-price-pill { display: inline-block; margin-left: 8px; padding: 3px 10px; background: rgba(16,185,129,0.12); color: #047857; border-radius: 999px; font: 800 11px 'Inter', sans-serif; letter-spacing: 0.04em; vertical-align: middle; }

/* ============================================================
   PRODUCTS / CATEGORY — Sidebar layout, toolbar, filters
   (products.php ve category.php ortak kullanır)
   ============================================================ */

/* Header row: title left + search/filter toolbar right */
.page-header.products-page-header .page-header-inner { max-width: none; flex: 1; min-width: 0; width: 100%; }
.page-header.products-page-header p {
  max-width: none;
  width: 100%;
  font-size: 18px;
  line-height: 1.6;
}
.page-header.products-page-header h1 em {
  display: inline;
  font-style: normal;
  color: var(--orange);
}
.products-header-row {
  display: flex; align-items: flex-end; gap: 24px;
  flex-wrap: wrap;
}
.products-header-row .products-toolbar {
  flex-shrink: 0;
  margin-bottom: 0;
}

/* Toolbar (search + filter button) */
.products-toolbar {
  display: flex; gap: 10px; align-items: center;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(10,10,11,0.03);
  width: min(420px, 100%);
}
.products-search { position: relative; flex: 1; min-width: 0; }
.products-search > svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}
.products-search input {
  width: 100%; padding: 10px 36px 10px 38px;
  border: 0; border-radius: 10px;
  font: 500 13.5px 'Inter',sans-serif; background: var(--bg-2);
  transition: background 0.15s, box-shadow 0.15s;
}
.products-search input::placeholder { color: var(--dim); }
.products-search input:focus {
  outline: none; background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15), 0 0 0 1px var(--orange);
}
.products-search-clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(10,10,11,0.06); border: 0; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s;
}
.products-search-clear:hover { background: var(--orange); color: #fff; }

.btn-filter {
  display: none; align-items: center; gap: 7px;
  padding: 10px 14px;
  border: 0;
  background: var(--text); color: #fff;
  border-radius: 10px;
  font: 700 13px 'Inter',sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.btn-filter:hover { background: var(--orange); }
.filter-count {
  background: var(--orange); color: #fff;
  border-radius: 999px; min-width: 22px; height: 22px;
  padding: 0 7px; font: 800 11px 'Inter',sans-serif;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-filter:hover .filter-count { background: #fff; color: var(--orange); }

.products-empty { padding: 80px 20px; text-align: center; color: var(--muted); }
.products-empty svg { color: var(--dim); margin-bottom: 12px; }
.products-empty h4 { font: 700 17px 'Sora',sans-serif; color: var(--text); margin: 0 0 6px; }

/* === SIDEBAR LAYOUT (desktop) === */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.products-content { min-width: 0; }
.products-sidebar {
  position: sticky; top: 100px;
  align-self: flex-start;
}
.products-sidebar-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: calc(100vh - 130px);
}
.products-sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #FAFAFA;
  flex-shrink: 0;
}
.products-sidebar-head h3 {
  display: inline-flex; align-items: center; gap: 8px;
  font: 800 14px 'Sora',sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
}
.products-sidebar-head h3 svg { color: var(--orange); }
.products-sidebar-head .filter-drawer-close { display: none; }
.products-sidebar-body {
  flex: 1; min-height: 0;
  padding: 22px 20px 18px;
  overflow-y: auto;
}
.products-sidebar-clear {
  margin-top: 14px; width: 100%; justify-content: center;
  padding: 9px; font-size: 13px;
}
.products-sidebar-apply { display: none; }

/* === FILTER DRAWER (legacy fallback) === */
.filter-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,15,15,0.50); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.25s;
  pointer-events: none;
  display: none;
}
.filter-drawer-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.04); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: background 0.15s;
}
.filter-drawer-close:hover { background: rgba(0,0,0,0.10); }

/* === FILTER GROUPS / CHIPS (sidebar içinde) === */
.filter-group { margin-bottom: 26px; }
.filter-group:last-of-type { margin-bottom: 0; }
.filter-group h4 {
  font: 800 11px 'Inter',sans-serif; letter-spacing: 0.10em;
  color: var(--muted); text-transform: uppercase;
  margin: 0 0 12px;
}
.filter-options { display: flex; flex-wrap: wrap; gap: 8px; max-width: 100%; }
.filter-chip {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border: 1.5px solid var(--line); border-radius: 999px;
  font: 600 13px 'Inter',sans-serif; color: var(--text);
  cursor: pointer; transition: all 0.15s;
  background: #fff;
  white-space: nowrap;
  text-decoration: none;
}
.filter-chip:hover { border-color: rgba(255,107,0,0.40); color: var(--orange); }
.filter-chip:has(input:checked),
.filter-chip.is-active {
  background: var(--orange); color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 10px rgba(255,107,0,0.25);
}
.filter-chip.is-active:hover { color: #fff; }
.filter-chip input { display: none; }

.filter-range { display: flex; align-items: center; gap: 10px; }
.filter-range input {
  flex: 1; min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: 600 14px 'Inter',sans-serif;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.filter-range input:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.filter-range span { color: var(--muted); flex-shrink: 0; }

/* === MOBILE — drawer mode (<900px) === */
@media (max-width: 900px) {
  .btn-filter { display: inline-flex; }
  .products-layout { grid-template-columns: 1fr; gap: 16px; }
  .products-sidebar {
    position: fixed; inset: 0; z-index: 9000;
    pointer-events: none;
    top: 0;
  }
  .products-sidebar.open { pointer-events: auto; }
  .products-sidebar .filter-drawer-backdrop {
    display: block;
  }
  .products-sidebar.open .filter-drawer-backdrop { opacity: 1; }
  .products-sidebar-inner {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: min(380px, 94vw);
    max-height: 100vh;
    border-radius: 0;
    border: 0;
    box-shadow: -24px 0 56px rgba(0,0,0,0.16);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
  }
  .products-sidebar.open .products-sidebar-inner { transform: translateX(0); }
  .products-sidebar-head .filter-drawer-close { display: flex; }
  .products-sidebar-apply { display: inline-flex; margin-top: 10px; width: 100%; justify-content: center; padding: 12px; }

  .products-header-row { flex-direction: column; align-items: stretch; gap: 18px; }
  .products-header-row .products-toolbar { width: 100%; }
}
@media (max-width: 600px) {
  .products-toolbar { padding: 8px; }
}
