/* ============================================================
   BARBEKING TARİF SİTESİ — STYLE.CSS
   Tasarım Sistemi & Tüm Stiller
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --bg-primary:    #0d0d0d;
  --bg-secondary:  #141414;
  --bg-card:       #1a1a1a;
  --bg-card-hover: #222222;
  --bg-glass:      rgba(26, 26, 26, 0.85);

  --fire:          #FF4500;
  --ember:         #FF6B00;
  --gold:          #FFC107;
  --smoke:         #888888;
  --ash:           #444444;

  --text-primary:  #FFFFFF;
  --text-secondary:#B8B8B8;
  --text-muted:    #666666;

  --border:        rgba(255, 69, 0, 0.2);
  --border-hover:  rgba(255, 69, 0, 0.6);

  /* Gradients */
  --grad-fire:     linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFC107 100%);
  --grad-dark:     linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  --grad-hero:     linear-gradient(180deg, rgba(13,13,13,0) 0%, rgba(13,13,13,0.7) 60%, rgba(13,13,13,1) 100%);
  --grad-card:     linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.95) 100%);

  /* Typography */
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;

  /* Spacing */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     30px;

  /* Transitions */
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  /* Shadows */
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow:   0 0 30px rgba(255, 69, 0, 0.25);
  --shadow-hover:  0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 69, 0, 0.15);
}

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }

/* ── UTILITY CLASSES ───────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.navbar__logo:hover {
  color: var(--fire);
}

.navbar__logo-flame {
  font-size: 28px;
  animation: flicker 2s ease-in-out infinite alternate;
}

@keyframes flicker {
  0%   { text-shadow: 0 0 8px #FF4500, 0 0 20px #FF6B00; transform: rotate(-3deg) scale(1); }
  100% { text-shadow: 0 0 16px #FF4500, 0 0 40px #FF6B00, 0 0 60px #FFC107; transform: rotate(3deg) scale(1.1); }
}

.navbar__back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--ash);
  padding: 8px 18px;
  border-radius: 40px;
  transition: var(--transition-fast);
}

.navbar__back:hover {
  color: var(--fire);
  border-color: var(--fire);
  background: rgba(255, 69, 0, 0.08);
}

.navbar__site-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 40px;
  transition: var(--transition-fast);
}

.navbar__site-link:hover {
  color: var(--fire);
  border-color: var(--fire);
  background: rgba(255, 69, 0, 0.08);
}

/* ── HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  max-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
  will-change: transform;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero:hover .hero__bg {
  transform: scale(1.0);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 72px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 16px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--grad-fire);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__count {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
}

.hero__count span {
  color: var(--gold);
  font-weight: 700;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-fire {
  background: var(--grad-fire);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.6);
}

.btn-fire:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--fire);
  color: var(--fire);
  background: rgba(255, 69, 0, 0.08);
}

/* ── EMBER DIVIDER ─────────────────────────────────────── */
.ember-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.ember-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ember-divider__icon {
  font-size: 20px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 69, 0, 0.4)); }
  50%       { filter: drop-shadow(0 0 12px rgba(255, 69, 0, 0.8)); }
}

/* ── RECIPES SECTION ───────────────────────────────────── */
.recipes-section {
  padding: 80px 0 120px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-count {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.section-count span {
  color: var(--fire);
}

/* ── FILTER TABS ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--ash);
  background: transparent;
  color: var(--text-secondary);
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.filter-btn:hover {
  border-color: var(--fire);
  color: var(--fire);
  background: rgba(255, 69, 0, 0.08);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--grad-fire);
  border-color: transparent;
  color: #000;
  box-shadow: 0 4px 16px rgba(255, 69, 0, 0.35);
}

.filter-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 69, 0, 0.5);
}

/* ── RECIPE GRID ───────────────────────────────────────── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── RECIPE CARD ───────────────────────────────────────── */
.recipe-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.recipe-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

.recipe-card__image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.recipe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-card:hover .recipe-card__image {
  transform: scale(1.08);
}

.recipe-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: var(--transition);
}

.recipe-card:hover .recipe-card__overlay {
  opacity: 1;
}

.recipe-card__category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.recipe-card__difficulty {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gold);
}

.recipe-card__cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  background: var(--grad-fire);
  color: #000;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.recipe-card:hover .recipe-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.recipe-card__body {
  padding: 22px 22px 24px;
}

.recipe-card__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  transition: var(--transition-fast);
}

.recipe-card:hover .recipe-card__title {
  color: var(--gold);
}

.recipe-card__intro {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.recipe-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.recipe-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
}

.recipe-card__meta-item svg, .recipe-card__meta-item span {
  color: var(--smoke);
  font-size: 13px;
}

/* ── NO RESULTS ────────────────────────────────────────── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.no-results__icon {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.5;
}

.no-results h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

/* ── CATEGORY SHOWCASE ─────────────────────────────────── */
.cat-showcase {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.cat-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card__img {
  transform: scale(1.1);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.cat-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
}

.cat-card__icon {
  font-size: 26px;
  display: block;
  margin-bottom: 6px;
}

.cat-card__label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.cat-card__count {
  font-size: 11px;
  color: var(--text-secondary);
  font-family: var(--font-head);
}

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer__right {
  text-align: right;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__link {
  color: var(--fire);
  transition: var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold);
}

/* ================================================================
   TARİF DETAY SAYFASI STILLERI
   ================================================================ */

/* ── RECIPE HERO ───────────────────────────────────────── */
.recipe-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.recipe-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.recipe-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.2) 0%,
    rgba(13,13,13,0.5) 40%,
    rgba(13,13,13,0.95) 100%
  );
}

.recipe-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 60px;
}

.recipe-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.recipe-hero__breadcrumb a {
  color: var(--fire);
  transition: var(--transition-fast);
}

.recipe-hero__breadcrumb a:hover {
  color: var(--gold);
}

.recipe-hero__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 14px;
}

.recipe-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 24px;
}

.recipe-hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.recipe-hero__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.recipe-hero__stat-icon {
  font-size: 18px;
}

.recipe-hero__stat-value {
  color: var(--text-primary);
  font-weight: 700;
}

/* ── RECIPE BODY ───────────────────────────────────────── */
.recipe-body {
  padding: 72px 0 100px;
}

.recipe-intro-box {
  max-width: 780px;
  margin: 0 auto 64px;
  padding: 36px 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--fire);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fire);
  position: relative;
  overflow: hidden;
}

.recipe-intro-box::before {
  content: '🔥';
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 60px;
  opacity: 0.07;
}

.recipe-intro-box__label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
}

.recipe-intro-box__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── RECIPE CONTENT GRID ───────────────────────────────── */
.recipe-content-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── INGREDIENTS PANEL ─────────────────────────────────── */
.ingredients-panel {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.ingredients-panel::-webkit-scrollbar {
  width: 4px;
}

.panel-header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255, 69, 0, 0.05);
}

.panel-header__label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 6px;
}

.panel-header__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
}

.panel-header__servings {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
}

.ingredients-list {
  padding: 20px 24px 24px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: var(--transition-fast);
}

.ingredient-item:last-child {
  border-bottom: none;
}

.ingredient-item:hover {
  background: rgba(255, 69, 0, 0.04);
  padding-left: 4px;
  border-radius: 6px;
}

.ingredient-item__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ash);
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition-fast);
  position: relative;
}

.ingredient-item.checked .ingredient-item__check {
  background: var(--fire);
  border-color: var(--fire);
}

.ingredient-item.checked .ingredient-item__check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #000;
  font-weight: 900;
}

.ingredient-item.checked .ingredient-item__text {
  text-decoration: line-through;
  color: var(--text-muted);
}

.ingredient-item__text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

/* ── STEPS PANEL ───────────────────────────────────────── */
.steps-panel {
  /* no special positioning */
}

.steps-panel__header {
  margin-bottom: 32px;
}

.steps-panel__label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 8px;
}

.steps-panel__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
}

.steps-list {
  counter-reset: step;
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}

.step-item::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, var(--border), transparent);
}

.step-item:last-child::after {
  display: none;
}

.step-item__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  color: var(--fire);
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
}

.step-item.active .step-item__number,
.step-item:hover .step-item__number {
  background: var(--fire);
  border-color: var(--fire);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.step-item__content {
  padding-top: 12px;
}

.step-item__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.step-item:hover .step-item__text {
  color: var(--text-primary);
}

/* ── TIP BOX ───────────────────────────────────────────── */
.tip-box {
  max-width: 1100px;
  margin: 48px auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255,69,0,0.08), rgba(255,140,0,0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 69, 0, 0.25);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tip-box__icon {
  font-size: 30px;
  flex-shrink: 0;
}

.tip-box__label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 8px;
}

.tip-box__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.tip-box__text strong {
  color: var(--gold);
}

/* ── RELATED RECIPES ───────────────────────────────────── */
.related-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── LOADING ANIMATION ─────────────────────────────────── */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-flame {
  font-size: 60px;
  animation: loadingFlame 0.6s ease-in-out infinite alternate;
}

@keyframes loadingFlame {
  0%   { transform: scale(0.9) rotate(-5deg); filter: brightness(0.8); }
  100% { transform: scale(1.1) rotate(5deg);  filter: brightness(1.2); }
}

/* ── CARD ANIMATION ────────────────────────────────────── */
.recipe-card {
  animation: cardFadeIn 0.5s ease both;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.recipe-card:nth-child(2) { animation-delay: 0.05s; }
.recipe-card:nth-child(3) { animation-delay: 0.10s; }
.recipe-card:nth-child(4) { animation-delay: 0.15s; }
.recipe-card:nth-child(5) { animation-delay: 0.20s; }
.recipe-card:nth-child(6) { animation-delay: 0.25s; }

/* ================================================================
   MANGAL YAKMA REHBERİ STİLLERİ
   ================================================================ */

/* ── GUIDE HERO ────────────────────────────────────────── */
.guide-hero {
  height: 60vh;
  min-height: 400px;
}

.center-header {
  text-align: center;
  justify-content: center;
  flex-direction: column;
}

/* ── STEPS TIMELINE ────────────────────────────────────── */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.step-card.reverse {
  flex-direction: row-reverse;
}

.step-card__image-col {
  flex: 1;
  position: relative;
  width: 100%;
}

.step-card__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}

.step-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.step-card:hover .step-card__image-wrap img {
  transform: scale(1.05);
}

.step-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,13,0.8) 100%);
}

.step-card__content-col {
  flex: 1;
  width: 100%;
}

.step-card__number {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--ash);
  margin-bottom: -15px;
  opacity: 0.5;
  transition: var(--transition);
}

.step-card:hover .step-card__number {
  -webkit-text-stroke: 2px var(--fire);
  opacity: 1;
}

.step-card__title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.step-card__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── NEXT STEPS CTA ────────────────────────────────────── */
.next-steps-cta {
  padding: 60px 0 100px;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-fire);
}

.cta-box__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box__content h2 {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-box__content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

/* ── GUIDE HUB GRID ──────────────────────────────────────── */
.guide-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.guide-hub-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.guide-hub-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

.guide-hub-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.guide-hub-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-hub-card:hover .guide-hub-card__img-wrap img {
  transform: scale(1.08);
}

.guide-hub-card__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-hub-card__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.guide-hub-card:hover .guide-hub-card__title {
  color: var(--gold);
}

/* ── GUIDE ARTICLE ─────────────────────────────────────── */
.guide-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.guide-article__header {
  margin-bottom: 40px;
  text-align: center;
}

.guide-article__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.guide-article__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}

.guide-article__content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.guide-article__content h2 {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--text-primary);
  margin: 40px 0 20px;
}

.guide-article__content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--text-primary);
  margin: 30px 0 15px;
}

.guide-article__content p {
  margin-bottom: 24px;
}

.guide-article__content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.guide-article__content li {
  margin-bottom: 10px;
}

.guide-tip {
  background: rgba(255, 69, 0, 0.05);
  border-left: 4px solid var(--fire);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 30px 0;
}

.guide-tip strong {
  color: var(--fire);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-grid .cat-card:nth-child(4),
  .cat-grid .cat-card:nth-child(5) {
    display: none;
  }

  .recipe-content-grid {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 768px) {
  .guide-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .step-card, .step-card.reverse {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-card__title {
    font-size: 24px;
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  .cta-box__content h2 {
    font-size: 28px;
  }
  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid .cat-card:nth-child(5) {
    display: block;
    grid-column: 1 / -1;
    aspect-ratio: 5/2;
  }

  .recipe-content-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-panel {
    position: static;
    max-height: none;
  }

  .hero__title {
    font-size: 38px;
  }

  .navbar {
    padding: 0 20px;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .tip-box {
    flex-direction: column;
    gap: 12px;
  }

  .recipe-hero__stats {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .guide-hub-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 100svh;
    max-height: 100svh;
  }

  .recipe-grid {
    gap: 18px;
  }

  .recipe-card__image-wrap {
    height: 200px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__right {
    text-align: left;
  }
}

/* ── PRINT ─────────────────────────────────────────────── */
@media print {
  .navbar, .footer, .related-section, .hero__cta-row {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
}

/* TOP BACK BUTTON */
.top-back-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #0d0d0d;
  color: #B8B8B8;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 69, 0, 0.4);
  transition: all 0.18s ease;
  position: relative;
  z-index: 100;
  text-decoration: none;
}

.top-back-bar:hover {
  color: #FF4500;
  background: #1a1a1a;
}

.top-back-bar__icon {
  margin-right: 8px;
  font-size: 16px;
  font-weight: bold;
}
