/* ============================================================
   ANADOLU EV YEMEKLERİ — Anadolu Ocağı Theme
   Warm charcoal, copper, amber, textile patterns
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg:           #1e1a17;
  --color-bg-warm:      #2a2320;
  --color-bg-card:      #312a24;
  --color-bg-card-hover:#3b322b;
  --color-surface:      #3d342c;
  --color-copper:       #c87533;
  --color-copper-light: #d4944e;
  --color-copper-glow:  rgba(200,117,51,0.25);
  --color-amber:        #d4a54a;
  --color-amber-light:  #e8c56e;
  --color-cream:        #f0e6d3;
  --color-text:         #e8ddd0;
  --color-text-muted:   #b5a99a;
  --color-text-dark:    #1e1a17;
  --color-border:       #564a3f;
  --color-border-copper:rgba(200,117,51,0.35);
  --color-success:      #6b9e5a;
  --color-error:        #c75450;
  --color-link:         #d4944e;
  --color-link-hover:   #e8c56e;

  --font-main: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --width-max:   1140px;
  --width-text:  720px;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 20px var(--color-copper-glow);
  --transition:  0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(200,117,51,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212,165,74,0.04) 0%, transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- Textile pattern overlay (subtle) ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23c87533' stroke-width='0.5' fill='none'/%3E%3Ccircle cx='20' cy='20' r='2' fill='%23c87533' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-copper);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 8px;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--width-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-cream);
  line-height: 1.3;
}

h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.05rem; color: var(--color-copper-light); margin-top: 1.2em; }

p { max-width: var(--width-text); margin-bottom: 1em; }

a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover, a:focus { color: var(--color-link-hover); }
a:focus-visible {
  outline: 2px solid var(--color-copper-light);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.3em; }

strong { color: var(--color-cream); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(30,26,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: var(--width-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-cream);
  flex-shrink: 0;
}
/* CSS-only diamond logo (replaces emoji) */
.logo-diamond {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-copper), var(--color-amber));
  transform: rotate(45deg);
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--color-copper-glow);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.logo-text strong {
  font-size: 1rem;
  color: var(--color-copper-light);
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--color-cream);
  background: rgba(200,117,51,0.1);
}
.nav-link.active {
  color: var(--color-copper-light);
  background: rgba(200,117,51,0.15);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  position: relative;
  transition: background var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: transform var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 0;
  position: relative;
}
.section:nth-child(even) {
  background-color: var(--color-bg-warm);
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 1em;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-amber));
  margin: 16px auto 0;
  border-radius: 2px;
}

.title-ornament {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--color-copper);
  transform: rotate(45deg);
  margin-right: 12px;
  vertical-align: middle;
  opacity: 0.7;
}

.section-intro {
  text-align: center;
  max-width: var(--width-text);
  margin: 0 auto 2.5em;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.section-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-copper);
  margin-bottom: 2.5em;
}

/* ---------- HERO ---------- */
.hero-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    linear-gradient(170deg, rgba(200,117,51,0.08) 0%, transparent 40%),
    linear-gradient(190deg, transparent 60%, rgba(212,165,74,0.05) 100%);
}
.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 1.2em;
}
.hero-sub {
  display: block;
  font-family: var(--font-main);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--color-copper-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: none;
}
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border-copper);
  box-shadow: var(--shadow-card);
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border: 1px solid var(--color-border-copper);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

/* ---------- BAKIR PANEL (Copper tray card) ---------- */
.bakir-panel {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bakir-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-amber), var(--color-copper));
  opacity: 0.6;
}
/* Subtle engraving pattern */
.bakir-panel::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-copper);
  border-radius: 50%;
  opacity: 0.2;
}
.bakir-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-border-copper);
}

/* ---------- TEKNIK GRID ---------- */
.teknik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.teknik-card h3 {
  color: var(--color-copper-light);
  margin-bottom: 0.8em;
  font-size: 1.15rem;
}
.teknik-card p {
  color: var(--color-text-muted);
  max-width: none;
}

/* ---------- RECIPE FILTER ---------- */
.recipe-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2em;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--color-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn:focus {
  border-color: var(--color-copper);
  color: var(--color-cream);
}
.filter-btn:focus-visible {
  outline: 2px solid var(--color-copper-light);
  outline-offset: 2px;
}
.filter-btn.active {
  background: var(--color-copper);
  color: #fff;
  border-color: var(--color-copper);
}

/* ---------- RECIPE GRID & CARDS ---------- */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.recipe-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity 0.4s ease;
}
.recipe-card.hidden {
  display: none;
}
.recipe-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.8em;
}
.recipe-header h3 {
  color: var(--color-copper-light);
  margin: 0;
}
.recipe-badge {
  display: inline-block;
  background: var(--color-surface);
  color: var(--color-amber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  flex-shrink: 0;
}
.recipe-desc {
  color: var(--color-text-muted);
  margin-bottom: 1em;
  max-width: none;
}
.recipe-details h4 {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-amber-light);
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
.recipe-details ul,
.recipe-details ol {
  color: var(--color-text);
  margin-bottom: 0.8em;
}
.recipe-details li {
  margin-bottom: 0.35em;
}

.alerjen-notu {
  background: rgba(200,117,51,0.08);
  border-left: 3px solid var(--color-copper);
  padding: 10px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 1em;
  max-width: none;
}

/* ---------- LEZZET GRID ---------- */
.lezzet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.lezzet-panel h3 {
  color: var(--color-copper-light);
  margin-bottom: 0.8em;
}
.lezzet-panel p {
  color: var(--color-text-muted);
  max-width: none;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: var(--width-text);
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover,
.faq-item[open] {
  border-color: var(--color-border-copper);
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--color-cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-bg-card);
  transition: background var(--transition);
}
.faq-item summary:hover {
  background: var(--color-bg-card-hover);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--color-copper);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--color-copper-light);
  outline-offset: -2px;
}
.faq-answer {
  padding: 0 20px;
  color: var(--color-text-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
.faq-item[open] .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 20px 16px;
}
.faq-answer p { max-width: none; }

/* ---------- POLICY ---------- */
.policy-section {
  background-color: var(--color-bg) !important;
}
.policy-block {
  max-width: var(--width-text);
  margin: 0 auto 3em;
  padding: 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.policy-block h3 {
  color: var(--color-copper-light);
  margin-bottom: 0.8em;
}
.policy-block h4 {
  margin-top: 1.5em;
}
.policy-block p {
  max-width: none;
}

/* ---------- HAKKIMIZDA ---------- */
.hakkimizda-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.hakkimizda-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-copper);
}
.hakkimizda-text p {
  color: var(--color-text-muted);
  max-width: none;
}

/* ---------- İLETİŞİM ---------- */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.iletisim-bilgi h3,
.iletisim-form-wrap h3 {
  color: var(--color-copper-light);
  margin-bottom: 1.2em;
}
.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1em;
  color: var(--color-text-muted);
}
/* Contact dot (CSS-only, replaces emoji) */
.contact-dot {
  width: 10px;
  height: 10px;
  background: var(--color-copper);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 6px var(--color-copper-glow);
}
.iletisim-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-top: 2em;
}

/* ---------- FORM ---------- */
.contact-form {
  background: var(--color-bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.form-group {
  margin-bottom: 1.2em;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.opsiyonel {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.zorunlu {
  color: var(--color-copper);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px var(--color-copper-glow);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color-copper);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.form-checkbox label {
  display: inline;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-error {
  display: block;
  font-size: 0.85rem;
  color: var(--color-error);
  margin-top: 4px;
  min-height: 1.2em;
}

.form-status {
  margin-top: 1em;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(107,158,90,0.15);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}
.form-status.error {
  display: block;
  background: rgba(199,84,80,0.15);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  text-align: center;
}
.btn:focus-visible {
  outline: 2px solid var(--color-copper-light);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-copper), var(--color-copper-light));
  color: #fff;
  box-shadow: 0 2px 8px rgba(200,117,51,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-copper-light), var(--color-amber));
  box-shadow: 0 4px 16px rgba(200,117,51,0.4);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-copper);
  color: var(--color-cream);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-copper);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(200,117,51,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-copper-light);
  transform: translateY(-3px);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--color-amber);
  outline-offset: 3px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-cream);
  margin-bottom: 1em;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--color-copper-light); text-decoration: underline; }
.footer-copy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-bg-warm);
  border-top: 2px solid var(--color-copper);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  padding: 20px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--width-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Cookie Settings Panel */
.cookie-settings-panel {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
}
.cookie-settings-panel[hidden] { display: none; }
.cookie-settings-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-settings-inner h3 {
  color: var(--color-copper-light);
  margin-bottom: 1.2em;
}
.cookie-option {
  margin-bottom: 1.2em;
  padding-bottom: 1.2em;
  border-bottom: 1px solid var(--color-border);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 6px 0 0;
  max-width: none;
}

/* Toggle switch */
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
}
.cookie-toggle input { display: none; }
.toggle-slider {
  width: 44px;
  height: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  position: relative;
  transition: all var(--transition);
  flex-shrink: 0;
}
.toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--color-text-muted);
  border-radius: 50%;
  transition: all var(--transition);
}
.cookie-toggle input:checked + .toggle-slider {
  background: var(--color-copper);
  border-color: var(--color-copper);
}
.cookie-toggle input:checked + .toggle-slider::after {
  left: 23px;
  background: #fff;
}
.cookie-toggle input:disabled + .toggle-slider {
  opacity: 0.6;
}
.toggle-label strong {
  color: var(--color-cream);
}

.cookie-settings-actions {
  display: flex;
  gap: 8px;
  margin-top: 1.5em;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PREFERS 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;
  }
  .bakir-panel:hover {
    transform: none;
  }
  .back-to-top.visible {
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .iletisim-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hakkimizda-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hakkimizda-img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav,
  .tech-nav {
    position: static;
  }
  .nav-list {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(30,26,23,0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    z-index: 999;
    border-bottom: 2px solid var(--color-border-copper);
    border-bottom-color: transparent;
  }
  .nav-list.open {
    max-height: 500px;
    opacity: 1;
    border-bottom-color: var(--color-border-copper);
  }
  .nav-link {
    font-size: 1rem;
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    text-align: left;
  }
  .nav-list li:last-child .nav-link {
    border-bottom: none;
  }

  .section {
    padding: 56px 0;
  }
  .teknik-grid,
  .recipe-grid,
  .lezzet-grid {
    grid-template-columns: 1fr;
  }
  .bakir-panel {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .hero-section { padding-top: 72px; padding-bottom: 56px; }
  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-actions { justify-content: center; }
  .section-indicator { display: none; }
}

/* ============================================================
   NEW COMPONENTS — Section Indicator, Tech Pages,
   Creative Anadolu Design Elements
   ============================================================ */

/* ---------- SECTION INDICATOR (dynamic header label) ---------- */
.section-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-copper-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.section-indicator.active {
  opacity: 1;
}
.section-indicator::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-copper);
  border-radius: 50%;
  animation: indicator-pulse 2s ease-in-out infinite;
}
@keyframes indicator-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@media (min-width: 769px) {
  .section-indicator { display: flex; }
}

/* ---------- BACK-TO-TOP CSS ARROW (replaces emoji) ---------- */
.arrow-up {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  transform: rotate(-45deg);
  margin-top: 4px;
}

/* ---------- TECH PAGE HEADER ---------- */
.tech-header .tech-nav .nav-list {
  list-style: none;
}

/* ---------- TECH PAGE — POLICY CONTENT ---------- */
.policy-page-section {
  padding-top: 120px;
  min-height: 60vh;
}
.policy-page-content {
  max-width: var(--width-text);
  margin: 0 auto;
  padding: 48px;
}
.policy-page-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--color-copper-light);
  margin-bottom: 0.5em;
  position: relative;
  padding-bottom: 16px;
}
.policy-page-content h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-amber));
  margin-top: 12px;
  border-radius: 2px;
}
.policy-page-content h2 {
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-top: 2em;
  margin-bottom: 0.6em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.policy-page-content p {
  color: var(--color-text-muted);
  max-width: none;
}
.policy-meta {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5em;
}

/* ---------- HAKKIMIZDA PAGE ---------- */
.hakkimizda-page-content {
  max-width: var(--width-max);
  margin: 0 auto;
}
.hakkimizda-page-content .hakkimizda-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-copper);
  float: left;
  margin: 0 32px 20px 0;
}
@media (max-width: 768px) {
  .policy-page-content { padding: 28px; }
  .hakkimizda-page-content .hakkimizda-img {
    float: none;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
}

/* ---------- KILIM SECTION DIVIDER (Anatolian textile pattern) ---------- */
.section::after {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6L6 0l6 6' fill='none' stroke='%23c87533' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M12 6l6-6 6 6' fill='none' stroke='%23d4a54a' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 24px 6px;
}

/* ---------- DECORATIVE CORNER MOTIFS on cards ---------- */
.bakir-panel::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 2l4 7h7l-5.5 4.5 2 7.5-7.5-4-7.5 4 2-7.5L5 9h7z' fill='none' stroke='%23c87533' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- SECTION TITLE ORNAMENTAL BORDERS ---------- */
.section-title {
  position: relative;
}
.section-title::before {
  content: '';
  display: block;
  width: 120px;
  height: 8px;
  margin: 0 auto 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4h20l5-4 5 4h20l5-4 5 4h20l5-4 5 4h20l5-4 5 4' fill='none' stroke='%23c87533' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ---------- HERO DECORATIVE ELEMENTS ---------- */
.hero-section::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--color-border-copper);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--color-copper);
  opacity: 0.03;
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- RECIPE CARD ENHANCED BORDER ---------- */
.recipe-card .recipe-header h3 {
  position: relative;
  padding-left: 16px;
}
.recipe-card .recipe-header h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-copper), var(--color-amber));
  border-radius: 2px;
}

/* ---------- TEKNIK CARD NUMBERING ---------- */
.teknik-grid {
  counter-reset: teknik-counter;
}
.teknik-card {
  counter-increment: teknik-counter;
}
.teknik-card h3::before {
  content: counter(teknik-counter, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-copper);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

/* ---------- FAQ ENHANCED STYLING ---------- */
.faq-item summary {
  position: relative;
  padding-left: 20px;
}
.faq-item summary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--color-copper);
  border-radius: 2px;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.faq-item[open] summary::before {
  opacity: 1;
}

/* ---------- IMAGE FRAME DECORATION ---------- */
.section-hero-img {
  position: relative;
  border: 2px solid var(--color-border-copper);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(200,117,51,0.1);
}

/* ---------- FOOTER KILIM BORDER ---------- */
.site-footer::before {
  content: '';
  display: block;
  height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='0' width='4' height='4' fill='%23c87533' opacity='0.3'/%3E%3Crect x='10' y='0' width='4' height='4' fill='%23d4a54a' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16px 4px;
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
}
