/* =====================================================================
   Momentique UI v2 — Refined palette + Playfair/Inter typography + glass cards
   Standalone stylesheet — does NOT override style.css (loaded only by index-v2.html)
   ===================================================================== */

/* ── Design tokens ─────────────────────────────────────────────────── */
:root {
  --bg:          #0a0814;
  --bg-elevated: #15102a;
  --bg-card:     rgba(22, 16, 42, 0.6);
  --bg-card-hover: rgba(28, 21, 56, 0.75);

  --brand:       #e1b382;
  --brand-deep:  #c89b6e;
  --brand-soft:  #f0d8b8;

  --text:        #f5efe6;
  --text-muted:  #a99bc4;
  --text-faint:  #8a7ba8;

  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-brand:  rgba(225, 179, 130, 0.4);

  --shadow-card:  0 10px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-brand: 0 8px 40px rgba(225, 179, 130, 0.32);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ── Reset / base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

/* warm vignette overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225, 179, 130, 0.05), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 58, 237, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Layout helpers ────────────────────────────────────────────────── */
.container-v2 {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

/* ── Typography ────────────────────────────────────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}
.h-1 { font-size: clamp(2.75rem, 7vw, 5.25rem); }
.h-2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.h-3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}
.lead { color: var(--text-muted); font-size: clamp(1rem, 1.3vw, 1.125rem); max-width: 56ch; }

.gradient-text {
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--brand) 55%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Navbar ────────────────────────────────────────────────────────── */
.nav-v2 {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 280ms var(--ease), backdrop-filter 280ms var(--ease), border-color 280ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-v2.scrolled {
  background: rgba(10, 8, 20, 0.78);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-logo .accent { color: var(--brand); }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #1a1208;
  font-size: 14px; font-weight: 600;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.nav-cta:hover { transform: translateY(-1px) scale(1.025); box-shadow: var(--shadow-brand); }

/* hide mobile menu trigger on desktop */
.nav-burger { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  /* nav-tools keeps cart + language toggle, but the big CTA pill is hidden
     on mobile (redundant with the hero buttons) so it no longer overlaps
     the header. */
  .nav-tools { gap: 14px !important; }
  .nav-cta { display: none !important; }
  .nav-burger { display: inline-flex; padding: 8px; color: var(--text); }
  .nav-inner { height: 60px; }
}

/* ── Mobile slide-down menu (built by main-v2.js) ──────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  width: 100%; max-width: none; box-sizing: border-box;
  z-index: 49;
  flex-direction: column;
  padding: 12px 20px 18px;
  background: rgba(10, 8, 20, 0.96);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 4px;
  font-size: 16px; font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
@media (min-width: 881px) {
  .mobile-menu { display: none !important; }
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
/* Scrim that sits between the bright galaxy background (#bgGalaxy, z-index:-1)
   and the hero copy (.container-v2, z-index:1) so the particles never
   overpower the text. */
.hero-v2::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(125% 80% at 50% 45%, transparent 32%, rgba(6, 4, 14, 0.45) 100%),
    linear-gradient(to bottom, rgba(6, 4, 14, 0.5) 0%, transparent 38%, rgba(6, 4, 14, 0.55) 100%);
  /* Feather the scrim's bottom edge to transparent so it blends seamlessly
     into the (un-darkened) galaxy of the next section — no hard seam. */
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-v2 { padding: 100px 0 52px; min-height: auto; overflow-x: hidden; }
  /* Stronger scrim on phones — the particle burst is far more dominant
     relative to the smaller screen. */
  .hero-v2::before {
    background:
      radial-gradient(135% 65% at 50% 40%, transparent 14%, rgba(6, 4, 14, 0.66) 92%),
      linear-gradient(to bottom, rgba(6, 4, 14, 0.74) 0%, rgba(6, 4, 14, 0.28) 42%, rgba(6, 4, 14, 0.76) 100%);
  }
  /* Keep copy legible where it sits over the bright particle burst. */
  .hero-copy { gap: 18px; }
  .hero-copy h1,
  .hero-copy .lead,
  .hero-stats { text-shadow: 0 2px 16px rgba(6, 4, 14, 0.55); }
  /* The desktop min font (2.75rem) is too wide for a phone and pushed the
     whole hero off-screen — scale it down so headlines wrap cleanly. */
  .hero-v2 .h-1 { font-size: clamp(2rem, 8.5vw, 3.2rem); letter-spacing: -0.02em; }
  /* Brighter subtitle so it stays legible over the starfield on phones. */
  .hero-copy .lead {
    color: #d3cae6;
    font-size: 1.02rem;
    line-height: 1.5;
  }
  /* Full-width, equal-size action buttons read better on a narrow screen. */
  .hero-actions { gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
  }
  /* Even, centered stats instead of left-clustered cramped ones. */
  .hero-stats { gap: 0; justify-content: space-between; padding-top: 22px; }
  .hero-stat { flex: 1; text-align: center; }
  .hero-stat .value { font-size: 24px; }
  /* Scroll cue collides with the stats on the now-shorter hero.
     Higher specificity so it wins over the later base .scroll-cue rule. */
  .hero-v2 .scroll-cue { display: none; }
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--brand-soft);
  width: max-content;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #1a1208;
  font-size: 15px; font-weight: 600;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.025); box-shadow: var(--shadow-brand); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 15px; font-weight: 500;
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}
.btn-ghost:hover { border-color: var(--border-brand); background: rgba(225, 179, 130, 0.06); }
.hero-stats {
  display: flex; gap: 36px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.hero-stat .value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text); }
.hero-stat .label { font-size: 12px; color: var(--text-muted); }

/* Site-wide 3D galaxy background (fixed, behind all content) */
#bgGalaxy {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  display: block;
}

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 26px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: cue-pulse 1.6s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ── Section: header pattern ───────────────────────────────────────── */
.section-v2 {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.section-head {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: clamp(48px, 8vw, 80px);
}
.section-head .lead { text-align: center; }

/* ── Product grid (glass cards) ────────────────────────────────────── */
.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.product-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px) saturate(110%);
  -webkit-backdrop-filter: blur(16px) saturate(110%);
  box-shadow: var(--shadow-card);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card-v2:hover {
  border-color: var(--border-brand);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
/* top hairline that brightens on hover */
.product-card-v2::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 320ms var(--ease);
}
.product-card-v2:hover::before { opacity: 1; }
/* moving shine from 3D tilt */
.product-card-v2 .shine {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 320ms var(--ease);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.product-card-v2:hover .shine { opacity: 1; }

.product-cover {
  position: relative;
  aspect-ratio: 16 / 11;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-cover .glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 55%, var(--glow, rgba(124, 58, 237, 0.35)), transparent 60%);
  opacity: 0.55;
}
.product-cover .icon {
  position: relative;
  font-size: 54px;
  filter: drop-shadow(0 6px 20px var(--glow, rgba(0, 0, 0, 0.4)));
  transition: transform 480ms var(--ease);
}
.product-card-v2:hover .product-cover .icon { transform: scale(1.08) rotate(-3deg); }

/* Gerçek ürün görseli (placeholder) — kartı doldurur */
.product-cover .glow { z-index: 0; }
.product-cover .product-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 520ms var(--ease);
}
.product-card-v2:hover .product-cover .product-photo { transform: scale(1.06); }

.badge-featured {
  position: absolute; top: 14px; right: 14px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(225, 179, 130, 0.12);
  border: 1px solid rgba(225, 179, 130, 0.35);
  color: var(--brand);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.product-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}
.product-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.price-block { display: flex; flex-direction: column; }
.price-block .from { font-size: 10px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.14em; }
.price-block .amount { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--brand); }
.btn-incele {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 13px; font-weight: 500;
  color: var(--text);
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}
.product-card-v2:hover .btn-incele { border-color: var(--border-brand); background: rgba(225, 179, 130, 0.1); }
.btn-incele svg { transition: transform 220ms var(--ease); }
.product-card-v2:hover .btn-incele svg { transform: translate(2px, -2px); }

/* ── How it works ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.step-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(10, 8, 20, 0.5);
  backdrop-filter: blur(14px);
  transition: border-color 320ms var(--ease), background 320ms var(--ease);
}
.step-card:hover { border-color: var(--border-brand); background: rgba(15, 11, 30, 0.7); }
.step-num {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(225, 179, 130, 0.35);
  line-height: 1;
  margin-bottom: 12px;
  transition: -webkit-text-stroke-color 320ms var(--ease), color 320ms var(--ease);
}
.step-card:hover .step-num {
  -webkit-text-stroke-color: var(--brand);
  color: rgba(225, 179, 130, 0.1);
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
}
.step-desc { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Story section ─────────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
}
.story-text p { color: var(--text-muted); margin: 0 0 16px; }
.story-text p strong { color: var(--text); font-weight: 600; }
.story-text p em { color: var(--brand-soft); font-style: italic; }
.values-stack { display: flex; flex-direction: column; gap: 14px; }
.value-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(22, 16, 42, 0.5);
}
.value-icon {
  flex: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(225, 179, 130, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.value-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 0 0 4px; }
.value-desc { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ── CTA banner ────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  margin-top: clamp(60px, 10vw, 100px);
  padding: clamp(48px, 7vw, 80px) 32px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(29, 21, 56, 0.9), rgba(22, 16, 42, 0.9));
  border: 1px solid var(--border);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(225, 179, 130, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-banner h3 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 14px; position: relative; }
.cta-banner p  { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; position: relative; }
.cta-banner .btn-primary { position: relative; }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer-v2 {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 56px 0 28px;
  background: rgba(10, 8, 20, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr 0.6fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 { font-size: 13px; font-weight: 600; margin: 0 0 16px; color: var(--text); letter-spacing: 0.02em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--text-muted); transition: color 180ms ease; }
.footer-col a:hover { color: var(--text); }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 16px 0 20px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color 220ms var(--ease), color 220ms var(--ease);
}
.socials a:hover { border-color: var(--border-brand); color: var(--brand); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ── Reveal animations (IntersectionObserver) ──────────────────────── */
.reveal-v2 {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-v2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* parallax hero copy */
.hero-copy { will-change: transform; }

/* ── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-v2 { opacity: 1; transform: none; }
}

/* ── Scrollbar ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-deep); }

/* ============================================================
   AI Sihirbazı / kişiselleştirme — v2 teması (mor → lacivert + altın)
   Yalnızca index-v2.html'i etkiler (style-v2.css sadece orada yüklü).
   ============================================================ */
.wizard-overlay { background: rgba(7, 5, 14, 0.9) !important; }
.wizard-container {
  background: linear-gradient(180deg, #17122c 0%, #0a0814 100%) !important;
  border: 1px solid rgba(225, 179, 130, 0.18) !important;
}
.wizard-container::before {
  background: radial-gradient(ellipse at center, rgba(225, 179, 130, 0.12) 0%, transparent 70%) !important;
}

/* Altın butonlar (mor/indigo gradyanların yerine) */
.sqf-btn,
.result-main-cta,
.hero-customize-btn,
.ai-submit-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep)) !important;
  color: #1a1208 !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(225, 179, 130, 0.30) !important;
}
.result-main-cta:hover,
.hero-customize-btn:hover,
.ai-submit-btn:hover {
  box-shadow: 0 14px 40px rgba(225, 179, 130, 0.45) !important;
}
.sqf-input:focus { border-color: var(--brand) !important; }
.sqf-input option { background: #15102a !important; }

/* Mor tonlu kapsayıcılar → altın/lacivert */
.starmap-quick-form {
  background: rgba(225, 179, 130, 0.07) !important;
  border: 1px solid rgba(225, 179, 130, 0.22) !important;
}
.combo-hero-card {
  background: linear-gradient(160deg, rgba(225, 179, 130, 0.10), rgba(225, 179, 130, 0.03)) !important;
  border: 1px solid rgba(225, 179, 130, 0.25) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 40px rgba(225, 179, 130, 0.08) !important;
}

/* İlişki seçenekleri — altın hover vurgusu */
.wizard-option:hover {
  border-color: rgba(225, 179, 130, 0.45) !important;
  background: rgba(225, 179, 130, 0.06) !important;
}
