/* ======================================
   Tahıl Pasta — Core Stylesheet
   ====================================== */

:root {
  --primary-orange: #E86A1F;
  --primary-orange-hover: #cf5a14;
  --dark-brown: #4A2A18;
  --soft-brown: #8B5E3C;
  --cream: #FFF6EC;
  --cream-2: #FBEFDF;
  --white: #FFFFFF;
  --text-dark: #1E1E1E;
  --muted-text: #6F6F6F;
  --line: #ECE4D8;
  --shadow-sm: 0 4px 14px rgba(74, 42, 24, 0.06);
  --shadow-md: 0 14px 40px rgba(74, 42, 24, 0.10);
  --shadow-lg: 0 30px 80px rgba(74, 42, 24, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  color: var(--dark-brown);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Utility ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-orange);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--primary-orange);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--primary-orange);
  margin-left: 10px;
}
.eyebrow.center { gap: 0; }
.eyebrow.center::before {
  display: inline-block;
  margin-right: 10px;
}

.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }

.section-title {
  font-size: clamp(36px, 4vw, 56px);
  margin: 12px 0 18px;
}
.section-lede {
  max-width: 640px;
  color: var(--muted-text);
  font-size: 17px;
  margin: 0 auto;
}
.section-head { text-align: center; margin-bottom: 64px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 106, 31, 0.35);
}
.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 106, 31, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-outline {
  background: transparent;
  color: var(--dark-brown);
  border: 1.5px solid var(--dark-brown);
}
.btn-outline:hover { background: var(--dark-brown); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--dark-brown);
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }

/* ======================================
   HEADER
   ====================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.transparent { background: transparent; }
.site-header.transparent .nav-list a,
.site-header.transparent .logo-mark,
.site-header.transparent .header-tools button,
.site-header.transparent .header-tools a {
  color: var(--white);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 4px 24px rgba(74,42,24,0.06);
  padding: 12px 0;
}
.site-header.scrolled .nav-list a,
.site-header.solid .nav-list a,
.site-header.scrolled .logo-mark,
.site-header.solid .logo-mark,
.site-header.scrolled .header-tools button,
.site-header.solid .header-tools button,
.site-header.scrolled .header-tools a,
.site-header.solid .header-tools a {
  color: var(--dark-brown);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: filter .3s var(--ease);
}
.site-header.transparent .logo-img {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.site-header.scrolled .logo-img,
.site-header.solid .logo-img {
  height: 42px;
  filter: none;
}
.site-footer .logo-img {
  height: 56px;
  /* keep brand orange — pops on dark brown */
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-list a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .25s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--primary-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  transform: scaleX(1);
}
.nav-list a.active { color: var(--primary-orange) !important; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
}
.site-header.scrolled .lang-switch,
.site-header.solid .lang-switch {
  border-color: rgba(74,42,24,0.2);
}
.lang-switch button {
  padding: 7px 12px;
  color: inherit;
  background: transparent;
  transition: background .2s, color .2s;
}
.lang-switch button.active {
  background: var(--primary-orange);
  color: var(--white) !important;
}
.social-mini {
  display: inline-flex;
  gap: 6px;
}
.social-mini a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.social-mini a:hover {
  background: var(--primary-orange);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.social-mini svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--dark-brown);
  color: var(--white);
  z-index: 49;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; }
.mobile-drawer li a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
}
.mobile-drawer li a:hover { color: var(--primary-orange); }
.mobile-drawer .drawer-foot {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ======================================
   HERO SLIDER
   ====================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #1a0e08;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease-out;
}
.hero-slide.active .bg { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-content .container { width: 100%; }
.hero-text { max-width: 720px; color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--primary-orange);
}
.hero-title {
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title em {
  font-style: italic;
  color: var(--primary-orange);
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); }

.hero-slide.active .hero-eyebrow { animation: slideUp .9s var(--ease) .3s forwards; }
.hero-slide.active .hero-title { animation: slideUp 1s var(--ease) .45s forwards; }
.hero-slide.active .hero-desc { animation: slideUp 1s var(--ease) .65s forwards; }
.hero-slide.active .hero-actions { animation: slideUp 1s var(--ease) .8s forwards; }

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

.hero-arrows {
  position: absolute;
  bottom: 48px; right: 48px;
  display: flex; gap: 10px;
  z-index: 4;
}
.hero-arrows button {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.hero-arrows button:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}
.hero-arrows svg { width: 18px; height: 18px; }

.hero-dots {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 4;
}
.hero-dots button {
  width: 36px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-dots button.active {
  background: var(--primary-orange);
  width: 56px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 4;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ======================================
   INTRO / VALUE STRIP
   ====================================== */
.value-strip {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.value-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--white);
  display: grid; place-items: center;
  color: var(--primary-orange);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.value-icon svg { width: 22px; height: 22px; }
.value-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-brown);
  margin: 0;
  line-height: 1.2;
}
.value-item p {
  font-size: 12px;
  color: var(--muted-text);
  margin: 2px 0 0;
}

/* ======================================
   ABOUT SHORT
   ====================================== */
.about-short {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-imgs {
  position: relative;
  height: 580px;
}
.about-imgs .img-a, .about-imgs .img-b {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.about-imgs .img-a {
  top: 0; left: 0;
  width: 70%; height: 75%;
}
.about-imgs .img-b {
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  border: 8px solid var(--white);
}
.about-imgs .badge-years {
  position: absolute;
  top: 30px; right: 40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: var(--white);
  display: grid; place-items: center;
  text-align: center;
  font-family: 'DM Serif Display', serif;
  z-index: 3;
  box-shadow: 0 14px 30px rgba(232,106,31,0.4);
}
.about-imgs .badge-years .num { font-size: 44px; line-height: 1; }
.about-imgs .badge-years .lbl { font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; font-weight: 600; }

.about-text h2 { font-size: clamp(36px, 4vw, 54px); margin: 14px 0 22px; }
.about-text p { color: var(--muted-text); margin-bottom: 18px; font-size: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  color: var(--primary-orange);
  line-height: 1;
}
.about-stat .lbl {
  font-size: 12px;
  color: var(--muted-text);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ======================================
   PRODUCT CARDS
   ====================================== */
.products-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}
.products-bar h2 { font-size: clamp(36px, 4vw, 54px); margin-top: 8px; }
.products-bar .lede { max-width: 460px; color: var(--muted-text); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid.col-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--line);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.product-media .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.product-card:hover .product-media .ph { transform: scale(1.08); }

.product-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(74,42,24,0.55));
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.product-card:hover .product-media::after { opacity: 1; }

.product-tags {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--dark-brown);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.product-tag.alt {
  background: var(--primary-orange);
  color: var(--white);
}
.product-card:hover .product-tag {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover .product-tag:nth-child(1) { transition-delay: .05s; }
.product-card:hover .product-tag:nth-child(2) { transition-delay: .15s; }
.product-card:hover .product-tag:nth-child(3) { transition-delay: .25s; }
.product-card:hover .product-tag:nth-child(4) { transition-delay: .35s; }

.product-corner {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--dark-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.product-corner.new { background: var(--primary-orange); color: var(--white); }

.product-body {
  padding: 22px 22px 24px;
}
.product-body h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.product-body p {
  color: var(--muted-text);
  font-size: 14px;
  margin-bottom: 14px;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.product-price {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--primary-orange);
}
.product-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-brown);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s, gap .25s;
}
.product-link:hover { color: var(--primary-orange); gap: 10px; }

/* Mobile inline tags (visible on mobile) */
.product-tags-inline {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.product-tags-inline .product-tag {
  position: static;
  opacity: 1;
  transform: none;
  background: var(--cream);
  color: var(--soft-brown);
  font-size: 11px;
  padding: 5px 10px;
}

/* ======================================
   CAKES CATEGORY GRID
   ====================================== */
.cake-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  grid-auto-rows: 240px;
}
.cake-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: var(--white);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.cake-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85));
  transition: opacity .3s var(--ease);
}
.cake-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cake-card .meta { position: relative; z-index: 2; width: 100%; }
.cake-card h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 6px;
}
.cake-card .count {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cake-card .arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  display: grid; place-items: center;
  z-index: 2;
  transition: background .3s, transform .3s;
}
.cake-card:hover .arrow {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: rotate(-45deg);
}
.cake-card .arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }

.cake-grid > :nth-child(1) { grid-column: span 6; grid-row: span 2; }
.cake-grid > :nth-child(2) { grid-column: span 6; }
.cake-grid > :nth-child(3) { grid-column: span 3; }
.cake-grid > :nth-child(4) { grid-column: span 3; }
.cake-grid > :nth-child(5) { grid-column: span 4; }
.cake-grid > :nth-child(6) { grid-column: span 4; }
.cake-grid > :nth-child(7) { grid-column: span 4; }

/* ======================================
   VIDEO BLOCK
   ====================================== */
.video-block {
  position: relative;
  height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin: 0 32px;
}
.video-block::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
}
.video-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 40px;
}
.video-inner h2 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  max-width: 700px;
  margin: 24px 0 32px;
}
.play-btn {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--primary-orange);
  display: grid; place-items: center;
  position: relative;
  cursor: pointer;
  transition: transform .3s var(--ease);
}
.play-btn::before, .play-btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232,106,31,0.5);
  animation: pulse 2s infinite;
}
.play-btn::after { animation-delay: 1s; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.play-btn:hover { transform: scale(1.07); }
.play-btn svg { width: 28px; height: 28px; color: var(--white); margin-left: 4px; }

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.open { display: flex; }
.video-modal .frame {
  width: min(960px, 100%);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.video-modal .frame iframe { width: 100%; height: 100%; border: 0; }
.video-modal .close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: grid; place-items: center;
}

/* ======================================
   BRANCH CARDS
   ====================================== */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branch-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.branch-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.branch-body { padding: 24px; }
.branch-name {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--dark-brown);
  margin-bottom: 14px;
}
.branch-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted-text);
  font-size: 14px;
}
.branch-meta .row { display: flex; gap: 10px; align-items: flex-start; }
.branch-meta svg { width: 16px; height: 16px; color: var(--primary-orange); flex-shrink: 0; margin-top: 3px; }
.branch-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.branch-actions .btn { padding: 11px 18px; font-size: 13px; }
/* Şube QR Menü butonu */
.btn-qr-menu {
  background: var(--primary-orange);
  color: var(--white);
  border: 1.5px solid var(--primary-orange);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-qr-menu svg { flex-shrink: 0; }
.btn-qr-menu:hover {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  color: var(--white);
}

/* ======================================
   FRANCHISING CTA
   ====================================== */
.franchise-cta {
  position: relative;
  background: var(--dark-brown);
  color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.franchise-cta .text {
  padding: 80px 64px;
  position: relative;
  z-index: 2;
}
.franchise-cta h2 {
  color: var(--white);
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 18px 0 24px;
}
.franchise-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 480px;
}
.franchise-cta .eyebrow { color: var(--primary-orange); }
.franchise-cta .eyebrow::before { background: var(--primary-orange); }
.franchise-cta .img {
  background-size: cover;
  background-position: center;
}
.franchise-cta .ornament {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(232,106,31,0.18);
  filter: blur(20px);
}

/* ======================================
   BLOG CARDS
   ====================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img {
  height: 240px;
  background-size: cover; background-position: center;
  position: relative;
}
.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--dark-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.blog-body { padding: 26px; }
.blog-meta {
  font-size: 12px;
  color: var(--muted-text);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.blog-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-body p {
  color: var(--muted-text);
  font-size: 14px;
  margin-bottom: 18px;
}
.blog-card .product-link { font-size: 13px; }

/* ======================================
   SOCIAL ROW
   ====================================== */
.social-row {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.social-row h2 { font-size: clamp(32px, 3.5vw, 48px); margin: 12px 0 12px; }
.social-row .lede { color: var(--muted-text); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.social-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.social-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.social-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--primary-orange);
  opacity: 0;
  transition: opacity .3s;
  mix-blend-mode: multiply;
}
.social-tile:hover::after { opacity: 0.5; }

/* ======================================
   FOOTER
   ====================================== */
.site-footer {
  background: var(--dark-brown);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-grid h5 {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.footer-grid ul { list-style: none; display: grid; gap: 12px; }
.footer-grid a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s, padding-left .2s; }
.footer-grid a:hover { color: var(--primary-orange); padding-left: 6px; }
.footer-contact .row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact svg { width: 16px; color: var(--primary-orange); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--white);
  transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--primary-orange); transform: translateY(-2px); padding-left: 0; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a:hover { padding-left: 0; }

/* ======================================
   INTERIOR HERO (smaller, for sub-pages)
   ====================================== */
.page-hero {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.65) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .crumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.page-hero .crumbs a:hover { color: var(--primary-orange); }
.page-hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  color: var(--white);
  margin: 0;
  max-width: 800px;
}
.page-hero .lede {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 560px;
  margin-top: 16px;
}

/* ======================================
   FORMS
   ====================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-brown);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(232,106,31,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.field.error input, .field.error textarea, .field.error select { border-color: #d9534f; }
.field .err {
  color: #d9534f;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}
.field.error .err { display: block; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  z-index: 40;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; }

/* Filter chips */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-chip {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--soft-brown);
  font-size: 14px;
  font-weight: 500;
  transition: all .25s var(--ease);
}
.filter-chip:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.filter-chip.active {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  color: var(--white);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.pagination a, .pagination span {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--dark-brown);
  font-size: 14px;
}
.pagination a:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.pagination .active { background: var(--primary-orange); color: var(--white); border-color: var(--primary-orange); }
