/* ==========================================================================
   BEYTULLAHBABA.COM - ULTRA-PREMIUM TASAVVUFİ WEB DİZAYNI
   ========================================================================== */

:root {
  --bg-black: #06080b;
  --bg-surface: #0c0f15;
  --bg-card: rgba(16, 20, 28, 0.75);
  --bg-card-hover: rgba(24, 30, 42, 0.9);
  --bg-elevated: #141822;

  --gold-primary: #d4af37;
  --gold-light: #f6e6b4;
  --gold-dark: #8f6f26;
  --gold-muted: #bfa15f;
  --gold-gradient: linear-gradient(135deg, #f7e8ba 0%, #d4af37 50%, #8f6f26 100%);
  --fire-gradient: linear-gradient(135deg, #fbbf24 0%, #f97316 60%, #dc2626 100%);

  --text-main: #eceff4;
  --text-muted: #9aa5b6;
  --text-dim: #64748b;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
  --shadow-gold-lg: 0 20px 50px -10px rgba(212, 175, 55, 0.45);
  --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.8);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-calligraphy: 'Amiri', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  --transition-fast: all 0.25s ease;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Temel Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-black);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Arka Plan Mistik Yıldız Tozları */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.star-particle {
  position: absolute;
  background: #f6e6b4;
  border-radius: 50%;
  opacity: 0.45;
  animation: floatStar 10s infinite linear;
}

@keyframes floatStar {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }

  30% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-120px) scale(1.2);
    opacity: 0;
  }
}

/* ==========================================================================
   ÜST BİLGİ & NAVİGASYON (HEADER - KOMPAKT & YATAY)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 100;
  background: rgba(7, 9, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sol: Logo (Büyütüldü) ve Sağında Tek Satırda Devam Eden Metin */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand-lockup:hover .brand-logo {
  transform: rotate(6deg) scale(1.06);
}

.brand-titles {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.brand-sep {
  color: rgba(212, 175, 55, 0.5);
  font-size: 1rem;
}

.brand-motto {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.9;
  font-weight: 600;
}

/* Sekmeler (Tab Menü) */
.nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-tab:hover {
  color: var(--gold-light);
}

.nav-tab.active {
  color: var(--gold-primary);
  font-weight: 600;
}

.nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-tab.fire-tab {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fed7aa;
  border-radius: var(--radius-full);
  padding: 0.4rem 0.95rem;
}

.nav-tab.fire-tab:hover {
  background: rgba(249, 115, 22, 0.25);
  border-color: #f97316;
  color: #fff;
}

.flame-icon {
  animation: pulseFlame 2s infinite ease-in-out;
}

@keyframes pulseFlame {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }
}

.nav-tab.order-tab {
  background: var(--gold-gradient);
  color: #07090c;
  font-weight: 700;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
}

.nav-tab.order-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: #000;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sound-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sound-toggle:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.header-menu-btn,
.mobile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.header-menu-btn:hover,
.mobile-toggle:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   SEKME YÖNETİMİ (SINGLE PAGE ARCHITECTURE - ÇORBA OLMAYAN YAPI)
   ========================================================================== */
.tab-view {
  display: none;
  min-height: 100vh;
  padding-top: 76px;
  position: relative;
  z-index: 10;
}

#view-home.tab-view {
  padding-top: 0;
}

.tab-view.active {
  display: block;
  animation: tabFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-inner {
  padding: 3rem 1.5rem 5rem;
}

/* ==========================================================================
   ALT SAYFA GEZİNTİ ÇUBUĞU (SUBPAGE NAV PILLS - ASİL & KOLAY GEÇİŞ)
   ========================================================================== */
.subpage-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 auto 3rem;
  padding: 0.45rem 0.8rem;
  background: rgba(14, 18, 25, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-full);
  max-width: fit-content;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.snav-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.snav-btn:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
}

.snav-btn.active {
  background: var(--gold-gradient);
  color: #07090c;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

.snav-btn.snav-cta {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-light);
}

.snav-btn.snav-cta:hover {
  background: var(--gold-gradient);
  color: #000;
}

/* Ortak Başlık Sistemi (Editorial Header) */
.editorial-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-pretitle {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 0.8rem;
}

.section-pretitle.fire-text {
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.rosette-sep {
  color: var(--gold-primary);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}

.editorial-p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SEKME 1: ANA SAYFA (PREMİUM VİTRİN)
   ========================================================================== */
.home-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  text-align: left;
  padding-top: 76px;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.hero-video-box {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Siyahlık tamamen kaldırıldı; alttaki video ve usta çalışması canlı, berrak gözüksün */
  filter: brightness(1.05) contrast(1.05) saturate(1.05);
  transform: scale(1.01);
}

.hero-dark-vignette {
  position: absolute;
  inset: 0;
  /* Ağır siyahlık tamamen kaldırıldı. Sadece sol taraftaki beyaz metnin rahat okunması için çok hafif tül geçiş */
  background: linear-gradient(90deg, rgba(6, 8, 11, 0.48) 0%, rgba(6, 8, 11, 0.18) 42%, rgba(6, 8, 11, 0.02) 70%, transparent 100%);
  pointer-events: none;
}

.hero-front-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.hero-front-content {
  max-width: 680px;
  text-align: left;
}

.hero-tagline-box {
  margin-bottom: 1.2rem;
}

.gold-halo-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(7, 9, 13, 0.75);
  padding: 0.4rem 1.3rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.3rem;
  text-align: left;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.22rem;
  color: #f1f5f9;
  max-width: 640px;
  margin: 0 0 2rem 0;
  line-height: 1.65;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

/* Ana Sayfanın En Altındaki 3 Sekme (Alt Dock) */
.hero-bottom-dock {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 920px;
  padding: 0 1.5rem;
}

.dock-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.dock-tab-btn.gold {
  background: var(--gold-gradient);
  color: #07090c;
  box-shadow: var(--shadow-gold), 0 0 25px rgba(212, 175, 55, 0.4);
}

.dock-tab-btn.gold:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-lg), 0 0 35px rgba(212, 175, 55, 0.7);
  color: #000;
}

.dock-tab-btn.fire {
  background: rgba(249, 115, 22, 0.88);
  color: #fff;
  border: 1px solid rgba(251, 191, 36, 0.6);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.dock-tab-btn.fire:hover {
  background: var(--fire-gradient);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.7);
}

.dock-tab-btn.outline {
  background: rgba(10, 14, 20, 0.88);
  color: var(--gold-light);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.dock-tab-btn.outline:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #fff;
  transform: translateY(-4px);
  border-color: #fff;
}

.dock-icon {
  font-size: 1.3rem;
}

.dock-label {
  letter-spacing: 0.5px;
}

.btn-gold-primary {
  background: var(--gold-gradient);
  color: #07090c;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: #000;
}

.btn-gold-primary.large {
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
}

.btn-fire-accent {
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.55);
  color: #ffedd5;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.btn-fire-accent:hover {
  background: rgba(249, 115, 22, 0.32);
  border-color: #f97316;
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-gold {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Başyapıt Vitrini (dash board.png) */
.home-showcase-section {
  padding: 5rem 0 3.5rem;
}

.master-piece-display {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.master-piece-display:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card), 0 0 50px rgba(212, 175, 55, 0.25);
}

.master-img-wrapper {
  position: relative;
  height: 540px;
  background: #000;
  overflow: hidden;
}

.master-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.master-piece-display:hover .master-img {
  transform: scale(1.05);
}

.master-zoom-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(7, 9, 13, 0.85);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
}

.master-narrative {
  padding: 3.2rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.narrative-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.master-narrative h3 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.master-narrative p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.narrative-specs {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.n-spec {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
}

.n-icon {
  font-size: 1.3rem;
}

.n-spec strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gold-light);
}

.n-spec span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.narrative-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-wa-direct {
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.1);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-wa-direct:hover {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}

.btn-wa-direct.large {
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
}

/* Üç Temel İlke (Pillars) */
.home-pillars-section {
  padding: 3rem 0 5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pillar-link {
  font-size: 0.88rem;
  color: var(--gold-primary);
  font-weight: 700;
}

/* ==========================================================================
   SEKME 2: ASALAR KOLEKSİYONU
   ========================================================================== */
.codex-posters-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.poster-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  background: #000;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.poster-tile:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.3);
}

.poster-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.poster-tile:hover img {
  transform: scale(1.03);
}

.poster-tile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 8, 11, 0.95) 100%);
  padding: 2rem 1.2rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.poster-tile:hover .poster-tile-overlay {
  opacity: 1;
}

.p-zoom {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}

.p-btn {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* Ürün Kartları */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.22);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.2);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  background: #0c0f15;
  cursor: pointer;
  overflow: hidden;
}

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

.product-item:hover .product-img-box img {
  transform: scale(1.06);
}

.item-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(7, 9, 13, 0.88);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.item-hover {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--text-main);
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-item:hover .item-hover {
  opacity: 1;
}

.product-info {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.item-sub {
  font-size: 0.8rem;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.product-info h4 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.product-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  flex: 1;
}

.item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.item-status {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  font-style: italic;
}

.btn-item-order {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-item-order:hover {
  background: var(--gold-gradient);
  color: #07090c;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   SEKME 3: İMALATHANEMİZDEN KARELER (VİDEO GALERİSİ)
   ========================================================================== */
.docu-feature-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(249, 115, 22, 0.45);
  padding: 2rem;
  margin-bottom: 4rem;
  cursor: pointer;
  box-shadow: var(--shadow-card), 0 0 35px rgba(249, 115, 22, 0.15);
  transition: var(--transition-smooth);
}

.docu-feature-card:hover {
  transform: translateY(-4px);
  border-color: #f97316;
  box-shadow: var(--shadow-card), 0 0 50px rgba(249, 115, 22, 0.35);
}

.docu-thumb {
  position: relative;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.docu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.docu-feature-card:hover .docu-thumb img {
  transform: scale(1.05);
}

.docu-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--fire-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding-left: 4px;
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.8);
  transition: transform 0.3s ease;
}

.docu-feature-card:hover .docu-play-center {
  transform: translate(-50%, -50%) scale(1.15);
}

.docu-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.85);
  color: #fed7aa;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.docu-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.docu-step-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: #f97316;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.docu-info h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.docu-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.docu-callout {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
}

/* 6 Aşamalı Atölye Videoları Grid */
.atelier-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.atelier-video-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.atelier-video-card:hover {
  transform: translateY(-6px);
  border-color: #f97316;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(249, 115, 22, 0.25);
}

.card-video-thumb {
  position: relative;
  height: 220px;
  background: #000;
  overflow: hidden;
}

.card-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.atelier-video-card:hover .card-video-thumb img {
  transform: scale(1.06);
}

.thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--fire-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 3px;
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
  transition: transform 0.3s ease;
}

.atelier-video-card:hover .thumb-play {
  transform: translate(-50%, -50%) scale(1.15);
}

.v-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.card-video-desc {
  padding: 1.4rem;
}

.step-tag {
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  color: #f97316;
  font-weight: 800;
  margin-bottom: 0.35rem;
  display: block;
}

.card-video-desc h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.card-video-desc p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Atölye Fotoğrafları */
.atelier-photo-strip {
  padding-top: 1rem;
}

.strip-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.strip-img-box {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  cursor: pointer;
}

.strip-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.strip-img-box:hover img {
  transform: scale(1.08);
}

.strip-img-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 100%);
  padding: 1rem 0.8rem 0.5rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ==========================================================================
   SEKME 4: KIZILCIK VE MEŞE AĞACININ SIRRI
   ========================================================================== */
.wood-lore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.wood-lore-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.wood-lore-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.lore-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.lore-icon {
  font-size: 3rem;
}

.lore-top h3 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--gold-light);
  line-height: 1.2;
}

.lore-sub {
  font-size: 0.92rem;
  color: var(--gold-primary);
  font-style: italic;
}

.wood-lore-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.lore-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lore-list li {
  font-size: 0.92rem;
  color: var(--text-main);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
}

.lore-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.lore-list strong {
  color: var(--gold-light);
}

/* ==========================================================================
   SEKME 5: BIÇAKLAR & BASTUN KILIÇLAR
   ========================================================================== */
.blades-feature-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2.8rem;
  align-items: center;
}

.blades-details h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.blades-details p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.blades-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.b-spec {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
}

.b-spec span {
  font-size: 1.3rem;
}

.b-spec strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gold-light);
}

.b-spec small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blades-photo-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
}

.blades-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blades-photo-wrapper:hover img {
  transform: scale(1.06);
}

.photo-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-main);
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   SEKME 6: KİŞİYE ÖZEL SİPARİŞ & DANIŞMA
   ========================================================================== */
.order-studio-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(7, 9, 13, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.form-field.full-width {
  margin-bottom: 1.8rem;
}

.form-feedback {
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   ALT BİLGİ (FOOTER)
   ========================================================================== */
.site-footer {
  background: #040507;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.f-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.f-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
}

.f-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.f-slogan {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--gold-muted);
}

.f-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.f-nav h5,
.f-rules h5,
.f-action h5 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 0.4rem;
}

.f-nav ul,
.f-rules ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.f-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.f-nav a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.f-rules li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.f-action p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  text-decoration: none;
}

a.footer-contact-item {
  transition: color var(--transition-fast), transform var(--transition-fast);
}

a.footer-contact-item:hover,
a.footer-contact-item:focus-visible {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.blessing-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-muted);
}

.astrivon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(212, 175, 55, 0.06);
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.astrivon-badge:hover,
.astrivon-badge:focus-visible {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.astrivon-spark,
.astrivon-domain {
  color: var(--gold-primary);
}

.astrivon-domain {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   MODALLER (VİDEO TİYATROSU & LIGHTBOX)
   ========================================================================== */
.video-modal,
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 9, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal.active,
.lightbox-modal.active {
  display: flex;
}

.video-modal-card,
.lightbox-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-x {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-x:hover {
  color: #f97316;
}

.modal-video-viewport {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.3);
}

.modal-video-viewport video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-video-title,
.lightbox-caption {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-top: 1.2rem;
  text-align: center;
}

.lightbox-card img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

/* Mobil Menü */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0b0e14;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 220;
  transition: right 0.4s ease;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.m-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.m-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
}

.m-brand span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  font-weight: 700;
}

.m-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.m-link {
  background: none;
  border: none;
  color: var(--text-main);
  text-align: left;
  font-size: 1rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.m-link:hover,
.m-link.active {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.m-link.fire-link {
  color: #fed7aa;
}

.m-link.cta-link {
  background: var(--gold-gradient);
  color: #000;
  text-align: center;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  padding: 0.8rem 0;
}

/* ==========================================================================
   RESPONSİVE UYUMLULUK
   ========================================================================== */
@media (max-width: 1100px) {

  .brand-motto,
  .brand-sep {
    display: none;
  }

  .master-piece-display {
    grid-template-columns: 1fr;
  }

  .master-img-wrapper {
    height: 420px;
  }

  .docu-feature-card {
    grid-template-columns: 1fr;
  }

  .docu-thumb {
    height: 280px;
  }

  .codex-posters-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .atelier-videos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .hero-headline {
    font-size: 2.6rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .wood-lore-grid {
    grid-template-columns: 1fr;
  }

  .blades-feature-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .brand-lockup {
    gap: 0.6rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .header-controls {
    gap: 0.4rem;
  }

  .sound-toggle {
    padding: 0.32rem 0.55rem;
    font-size: 0.76rem;
  }

  .sound-txt {
    display: none;
  }

  .header-menu-btn {
    padding: 0.32rem 0.65rem;
    font-size: 0.8rem;
  }

  /* Ana Sayfa Hero Mobilde Tam ve Rahat Görünüm */
  .home-hero {
    height: 100vh;
    min-height: 580px;
    padding-top: 64px;
    padding-bottom: 20px;
    justify-content: center;
  }

  .hero-front-container {
    padding: 1.2rem 1.1rem 140px;
  }

  .hero-front-content {
    max-width: 100%;
  }

  .hero-headline {
    font-size: 1.95rem;
    line-height: 1.18;
    margin-bottom: 0.75rem;
  }

  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.48;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .gold-halo-tag {
    font-size: 0.66rem;
    padding: 0.28rem 0.8rem;
    letter-spacing: 1px;
  }

  /* Alt Rıhtım Butonları (Mobilde Başparmakla Rahat Tıklanır Dikey Yerleşim) */
  .hero-bottom-dock {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    flex-direction: column;
    gap: 0.45rem;
  }

  .dock-tab-btn {
    width: 100%;
    padding: 0.62rem 1rem;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
  }

  /* Alt Sayfalarda Kategori Geçiş Çubuğu (Yatay Kaydırılabilir Şık Kapsül Bar) */
  .subpage-nav-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-full);
    padding: 0.35rem 0.5rem;
    margin: 0 auto 2rem;
    scrollbar-width: none;
  }

  .subpage-nav-bar::-webkit-scrollbar {
    display: none;
  }

  .snav-btn {
    flex-shrink: 0;
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
  }

  .editorial-title {
    font-size: 2.1rem;
  }

  .editorial-p {
    font-size: 0.95rem;
  }

  .codex-posters-showcase {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .atelier-videos-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .order-studio-wrapper {
    padding: 1.8rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bottom-row {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .astrivon-badge {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 18px;
  }

  .astrivon-domain {
    width: 100%;
  }
}
