/* ===================================================
   Anadolu Ev Yemekleri Rehberi — styles.css
   Atmosfer: "Anadolu Ocağı" (bakır, tekstil, sıcak ışık)
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --bakir:          #B87333;
  --bakir-light:    #D4955A;
  --bakir-dark:     #8B5A2B;
  --amber:          #D4A24C;
  --amber-light:    #E8C478;
  --cream:          #FFF8F0;
  --cream-mid:      #F5E6D3;
  --cream-dark:     #EAD5BC;
  --kilim-red:      #A0382E;
  --kilim-red-light:#C75B52;
  --olive:          #6B7B3A;
  --olive-light:    #8FA34E;
  --text-primary:   #3E2723;
  --text-secondary: #5D4037;
  --text-muted:     #8D6E63;
  --border-color:   #D7CCC8;
  --border-light:   #EFEBE9;
  --white:          #FFFFFF;
  --shadow-sm:      0 1px 3px rgba(62,39,35,.08);
  --shadow-md:      0 4px 12px rgba(62,39,35,.10);
  --shadow-lg:      0 8px 30px rgba(62,39,35,.12);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --font-body:      'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading:   Georgia, 'Times New Roman', Times, serif;
  --transition:     .25s ease;
  --max-width:      1140px;
  --header-h:       64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.72;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bakir);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-size: .9rem;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--amber);
}

/* ---------- Focus States ---------- */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
a { color: var(--bakir); text-decoration: underline; transition: color var(--transition); }
a:hover { color: var(--bakir-dark); }

ul, ol { padding-left: 1.3em; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
main { flex: 1; }

/* ---------- Decorative SVG / Patterns ---------- */
.pattern-divider {
  width: 100%;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24' viewBox='0 0 48 24'%3E%3Cpath d='M0 12 L6 4 L12 12 L18 4 L24 12 L30 4 L36 12 L42 4 L48 12' fill='none' stroke='%23B87333' stroke-width='1.5' opacity='.35'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  margin: 2rem 0;
  opacity: .6;
}

.kilim-border-top {
  border-top: 3px solid var(--bakir);
  position: relative;
}
.kilim-border-top::after {
  content: '';
  display: block;
  height: 6px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='6' viewBox='0 0 20 6'%3E%3Crect x='2' y='1' width='4' height='4' fill='%23A0382E' opacity='.25'/%3E%3Crect x='8' y='1' width='4' height='4' fill='%23B87333' opacity='.2'/%3E%3Crect x='14' y='1' width='4' height='4' fill='%23D4A24C' opacity='.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: linear-gradient(180deg, #3E2723 0%, #4E342E 100%);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* --- Desktop Nav --- */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.nav-list a {
  display: block;
  padding: 6px 12px;
  color: var(--cream-mid);
  text-decoration: none;
  font-size: .88rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(255,255,255,.1);
  color: var(--amber-light);
}
.nav-list a.nav-active {
  background: rgba(184,115,51,.35);
  color: var(--amber-light);
}

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-icon-hamburger { display: block; }
.nav-icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-hamburger { display: none; }
.nav-toggle[aria-expanded="true"] .nav-icon-close { display: block; }

/* --- Mobile Nav --- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #3E2723;
    flex-direction: column;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 2px; width: 100%; }
  .nav-list a { padding: 12px 16px; font-size: 1rem; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(50px, 8vw, 100px);
  background: linear-gradient(rgba(62,39,35,.72), rgba(62,39,35,.82)),
              url("../images/hero-anadolu-sofra.jpg") center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='18' fill='none' stroke='%23B87333' stroke-width='.8' opacity='.12'/%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23D4A24C' stroke-width='.5' opacity='.08'/%3E%3Cline x1='0' y1='40' x2='80' y2='40' stroke='%23B87333' stroke-width='.3' opacity='.06'/%3E%3Cline x1='40' y1='0' x2='40' y2='80' stroke='%23B87333' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: .6rem;
  position: relative;
}
.hero .subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--amber-light);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}
.hero p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--cream-mid);
  font-size: 1rem;
  position: relative;
}
.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--bakir);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.hero-cta:hover {
  background: var(--bakir-light);
  transform: translateY(-2px);
  color: var(--white);
}

/* ---------- SECTIONS (index.php) ---------- */
.section {
  padding: clamp(40px, 6vw, 80px) 0;
}
.section:nth-child(even) {
  background: var(--cream-mid);
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--bakir);
  border-radius: 2px;
}
.section-header p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  color: var(--text-secondary);
}

/* ---------- Recipe Card ---------- */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 1.5rem;
}
.recipe-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.recipe-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.recipe-card-header {
  background: linear-gradient(135deg, var(--bakir) 0%, var(--bakir-dark) 100%);
  padding: 18px 22px;
  color: var(--cream);
}
.recipe-card-header h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.recipe-card-header .recipe-tag {
  font-size: .8rem;
  opacity: .85;
  font-style: italic;
}
.recipe-card-body {
  padding: 22px;
}
.recipe-card-body h4 {
  color: var(--bakir-dark);
  margin-bottom: .5rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.recipe-card-body p {
  font-size: .95rem;
  color: var(--text-secondary);
}
.recipe-card-body ul,
.recipe-card-body ol {
  font-size: .93rem;
  color: var(--text-secondary);
}
.recipe-steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}
.recipe-steps li {
  counter-increment: step;
  padding-left: 2.2em;
  position: relative;
  margin-bottom: .6rem;
}
.recipe-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 1.6em;
  height: 1.6em;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-section-divider {
  border: none;
  border-top: 1px dashed var(--border-color);
  margin: 14px 0;
}

/* ---------- Info Blocks: İpucu, Dikkat, Alternatif ---------- */
.info-block {
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 1.2rem 0;
  position: relative;
  padding-left: 54px;
  font-size: .95rem;
}
.info-block::before {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-heading);
  color: var(--white);
}
.info-block strong {
  display: block;
  margin-bottom: 4px;
}

.info-ipucu {
  background: #F1F8E9;
  border-left: 4px solid var(--olive);
  color: #33691E;
}
.info-ipucu::before { content: 'i'; background: var(--olive); }

.info-dikkat {
  background: #FFF3E0;
  border-left: 4px solid #E65100;
  color: #BF360C;
}
.info-dikkat::before { content: '!'; background: #E65100; }

.info-alternatif {
  background: #E8EAF6;
  border-left: 4px solid #3949AB;
  color: #1A237E;
}
.info-alternatif::before { content: 'A'; background: #3949AB; }

.info-servis {
  background: #FCE4EC;
  border-left: 4px solid var(--kilim-red);
  color: #880E4F;
}
.info-servis::before { content: 'S'; background: var(--kilim-red); }

.info-alerjen {
  background: #FFF8E1;
  border-left: 4px solid var(--amber);
  color: #F57F17;
}
.info-alerjen::before { content: 'a'; background: var(--amber); }

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 48px 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream-mid); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--bakir);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: .95rem;
}

/* ---------- Lezzet Dengesi Section ---------- */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}
.flavor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.flavor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.flavor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bakir);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.flavor-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--bakir-dark);
}
.flavor-card p {
  font-size: .92rem;
  color: var(--text-secondary);
}

/* ---------- Mistakes Grid ---------- */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.mistake-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  border-left: 4px solid var(--kilim-red);
  box-shadow: var(--shadow-sm);
}
.mistake-card h4 {
  color: var(--kilim-red);
  margin-bottom: .5rem;
}
.mistake-card p {
  font-size: .93rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.contact-info-block h3 {
  margin-bottom: 1rem;
  color: var(--bakir-dark);
}
.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--bakir);
  margin-top: 3px;
}
.contact-detail strong {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-detail span {
  font-size: .95rem;
}

/* ---------- Form ---------- */
.form-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.form-block h3 {
  margin-bottom: 1.2rem;
  color: var(--bakir-dark);
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-group .required-mark {
  color: var(--kilim-red);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--bakir);
  box-shadow: 0 0 0 3px rgba(184,115,51,.15);
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--bakir);
}
.form-checkbox label {
  font-size: .88rem;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--text-secondary);
}

.btn-submit {
  display: inline-block;
  padding: 12px 32px;
  background: var(--bakir);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover {
  background: var(--bakir-dark);
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  display: none;
}
.form-message.success {
  display: block;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #2E7D32;
}
.form-message.error {
  display: block;
  background: #FFEBEE;
  border: 1px solid #EF9A9A;
  color: #C62828;
}

/* Honeypot */
.hn-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- Legal / Tech Pages ---------- */
.page-content {
  padding: clamp(40px, 6vw, 70px) 0;
}
.page-content .container {
  max-width: 800px;
}
.page-content h1 {
  margin-bottom: .5rem;
}
.page-content .page-subtitle {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 2rem;
}
.page-content h2 {
  margin-top: 2rem;
  margin-bottom: .75rem;
  font-size: 1.3rem;
}
.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.page-content ul {
  margin-bottom: 1rem;
}
.page-content p {
  color: var(--text-secondary);
}

.cookie-prefs-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--bakir);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  transition: background var(--transition);
  margin-top: .5rem;
}
.cookie-prefs-btn:hover {
  background: var(--bakir-dark);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #3E2723;
  color: var(--cream-mid);
  padding: 40px 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.footer-col h4 {
  color: var(--amber-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: .8rem;
}
.footer-col p {
  font-size: .88rem;
  color: var(--cream-dark);
  margin-bottom: .5rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--amber-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 28px;
  padding: 16px 0;
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  display: none;
}
.cookie-overlay.active { display: block; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--bakir);
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  padding: 24px;
  display: none;
  animation: slideUp .35s ease;
}
.cookie-banner.active { display: block; }

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
}
.cookie-banner h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--text-primary);
}
.cookie-banner p {
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 24px;
  border: 2px solid var(--bakir);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  background: var(--white);
  color: var(--bakir);
}
.cookie-btn:hover {
  background: var(--cream-mid);
}
.cookie-btn-accept {
  background: var(--bakir);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: var(--bakir-dark);
  border-color: var(--bakir-dark);
}
.cookie-btn-reject {
  background: var(--white);
  color: var(--bakir);
}
.cookie-btn-reject:hover {
  background: var(--cream-mid);
}
.cookie-btn-settings {
  background: var(--white);
  color: var(--bakir);
}
.cookie-btn-settings:hover {
  background: var(--cream-mid);
}

/* --- Cookie Settings Modal --- */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.cookie-modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-content h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.cookie-category {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-category-header strong {
  font-size: .95rem;
}
.cookie-category p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 0;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--bakir);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: .5;
  cursor: not-allowed;
}

.cookie-modal-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ---------- About Page ---------- */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}
.about-value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.about-value-card h3 {
  color: var(--bakir-dark);
  margin-bottom: .5rem;
  font-size: 1.05rem;
}
.about-value-card p {
  font-size: .92rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ---------- Section Images ---------- */
.section-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.section-image-wide {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.recipe-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 1.5rem 0;
}
@media (max-width: 600px) {
  .image-row { grid-template-columns: 1fr; }
}
.image-row img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.hero-image {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.image-caption {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .4rem;
  font-style: italic;
}

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

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .cookie-modal, .cookie-overlay { display: none !important; }
  body { background: white; color: black; }
  .hero { background: #eee !important; color: black !important; padding: 20px 0; }
  a { color: black; text-decoration: underline; }
}
