: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 {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font: 600 14px/1.2 var(--font-body);
  transition: background 0.15s;
}
.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-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: 60px 0 60px;
  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: 580px;
  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);
}
.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); }
  .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; }
  .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: 60px 0 40px;
  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: 110px 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; }

/* ========== PRODUCTS ========== */
.products-section { background: var(--bg-2); }
.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;
}
.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: cover;
  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%;
}
/* 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: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.principles {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 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: 1fr; }
}

/* ========== CTA ========== */
.cta-section { padding: 32px 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 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); }
@media (max-width: 640px) { .cta { padding: 56px 28px; } }

/* ========== 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; }
  .page-header h1 { font-size: 24px; }
  .page-header p { font-size: 14px; }
}
.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 h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text);
}
.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: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-meta { color: var(--dim); font-size: 13px; }
.legal-links {
  display: flex;
  gap: 18px;
}
.legal-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s;
}
.legal-links a:hover { color: var(--orange); }
.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 (max-width: 540px) {
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ====== 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; }
.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 {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 12px;
  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-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 span { min-width: 24px; text-align: center; font: 700 13px 'Inter',sans-serif; }
.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: center; }

/* 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-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;
}

/* ========== 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); }
}

.mob-menu-search {
  display: flex; align-items: center; gap: 8px;
  margin: 14px 18px 6px;
  padding: 10px 14px;
  background: #FAFAFA;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.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 'Inter',sans-serif;
  padding: 4px 0;
}

/* ========== 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: 14px 14px 10px;
  display: flex; flex-direction: column;
  gap: 4px;
  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; }

.mob-menu-nav > a {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  font: 700 15px var(--font-body);
  letter-spacing: -0.005em;
  color: var(--text);
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.18s;
}
.mob-menu-nav > a::after {
  content: '';
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.25;
  transition: all 0.18s;
  flex-shrink: 0;
}
.mob-menu-nav > a:hover {
  background: rgba(10,10,11,0.04);
  transform: translateX(2px);
}
.mob-menu-nav > a:hover::after { opacity: 1; transform: rotate(45deg) translate(2px, -2px); }
.mob-menu-nav > a.active {
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,107,0,0.04) 100%);
  color: var(--orange);
  padding-left: 22px;
}
.mob-menu-nav > a.active::before {
  content: '';
  position: absolute;
  left: 8px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 22px;
  background: var(--orange);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255,107,0,0.40);
}
.mob-menu-nav > a.active::after { opacity: 1; color: var(--orange); }

/* Section (alt-grup, ör. Kategoriler veya Kurumsal) */
.mob-menu-section {
  margin: 18px 14px 4px;
  padding: 16px 16px 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; flex-direction: column;
  gap: 1px;
}
.mob-menu-section + .mob-menu-section { margin-top: 10px; }

.mob-menu-label {
  display: flex; align-items: center; gap: 8px;
  font: 800 10.5px var(--font-body);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 4px 12px;
  border-bottom: 1px dashed rgba(10,10,11,0.08);
  margin-bottom: 8px;
}
.mob-menu-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.mob-menu-section a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  font: 600 13.5px var(--font-body);
  color: var(--muted);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.18s;
}
.mob-menu-section a::before {
  content: '';
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
  transition: all 0.18s;
}
.mob-menu-section a:hover {
  color: var(--orange);
  background: rgba(255,107,0,0.06);
  padding-left: 16px;
}
.mob-menu-section a:hover::before { opacity: 1; transform: scale(1.4); background: var(--orange); }

.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-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 {
  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; }
.bot-nav-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--orange); color: #fff;
  border-radius: 999px;
  font: 800 9px/16px var(--font-body);
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(255,107,0,0.30);
}
.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-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(3, 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-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; }
.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; }
  .panel-list-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .panel-list-right { width: 100%; justify-content: space-between; }
  .ticket-msg { max-width: 100%; }
}
@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; }
}

/* ========== 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 */
.products-page-header .page-header-inner { max-width: none; flex: 1; min-width: 0; }
.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; }
}
