/*
Theme Name: Hey Döner
Theme URI: https://heydoner.com.tr/
Author: Hey Döner
Author URI: https://heydoner.com.tr/
Description: Hey Döner için özel olarak geliştirilen WordPress teması.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: heydoner
*/

:root {
  --orange: #053525;
  --orange-dark: #032015;
  --yellow: #ffc21a;
  --black: #171717;
  --muted: #666;
  --light: #f7f7f7;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--black);
  background: #fff;
  line-height: 1.45;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
}

/* Mobile side navigation */
body.heydoner-mobile-nav-open {
  overflow: hidden;
}

.heydoner-mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(16, 16, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.heydoner-mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.heydoner-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  width: min(20.5rem, 88vw);
  height: 100%;
  height: 100dvh;
  background: #fff;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  visibility: hidden;
  pointer-events: none;
}

.heydoner-mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.heydoner-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 5.25rem;
  padding: 0 1rem 0 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.heydoner-mobile-nav__logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.heydoner-mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: #101010;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.heydoner-mobile-nav__close:hover,
.heydoner-mobile-nav__close:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  color: #e30613;
  outline: none;
}

.heydoner-mobile-nav__list {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0.75rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.heydoner-mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.85rem;
  color: #101010;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  transition: background 0.2s ease, color 0.2s ease;
}

.heydoner-mobile-nav__link:hover,
.heydoner-mobile-nav__link:focus-visible {
  background: #fff6d6;
  color: #e30613;
  outline: none;
}

.heydoner-mobile-nav__link.is-active {
  background: #fff6d6;
  color: #e30613;
}

.heydoner-mobile-nav__group {
  margin-bottom: 0.25rem;
}

.heydoner-mobile-nav__children {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.15rem 0 0.5rem 0.85rem;
  margin: 0 0 0.35rem 0.9rem;
  border-left: 2px solid rgba(227, 6, 19, 0.18);
}

.heydoner-mobile-nav__child {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.7rem;
  color: #404040;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.heydoner-mobile-nav__child:hover,
.heydoner-mobile-nav__child:focus-visible {
  background: #fff6d6;
  color: #e30613;
  outline: none;
}

.heydoner-mobile-nav__child.is-active {
  background: #fff6d6;
  color: #e30613;
  font-weight: 700;
}

.heydoner-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1rem calc(1.15rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fafafa;
}

.heydoner-mobile-nav__phone,
.heydoner-mobile-nav__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.heydoner-mobile-nav__phone {
  background: #ffd400;
  color: #101010;
}

.heydoner-mobile-nav__phone:hover,
.heydoner-mobile-nav__phone:focus-visible {
  background: #f2c800;
  outline: none;
}

.heydoner-mobile-nav__order {
  background: #e30613;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.heydoner-mobile-nav__order:hover,
.heydoner-mobile-nav__order:focus-visible {
  background: #c10511;
  outline: none;
}

.heydoner-mobile-nav__phone i,
.heydoner-mobile-nav__order i {
  font-size: 1.1rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .heydoner-mobile-nav,
  .heydoner-mobile-nav-overlay,
  .heydoner-mobile-nav-toggle {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .heydoner-mobile-nav,
  .heydoner-mobile-nav-overlay {
    transition: none;
  }
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
}

.menu-list a.active,
.menu-list .current-menu-item > a,
.menu-list .current_page_item > a,
.menu-list .current-menu-ancestor > a,
.menu-list a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  border-radius: 18px;
  overflow: inherit;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

.phone {
  background: var(--yellow);
  padding: 10px 20px;
  border-radius: 15px 0px 0px 15px;
}

.order-top {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0px 15px 15px 0px;
}

.hero {
  padding: 28px 0 0;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: #141414;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.hero-slider-only {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.hero-slider-only img {
  width: 100%;
  height: auto;
  display: block;
}

/* Front page hero banner slider — desktop 1024×279, mobile 1024×768 */
.heydoner-hero-slider__viewport {
  position: relative;
  width: 100%;
  line-height: 0;
}

.heydoner-hero-slider__banner-picture {
  display: block;
  width: 100%;
}

.heydoner-hero-slider__slide--banner .heydoner-hero-slider__banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.heydoner-hero-slider__banner--image {
  background: #f7f4ee;
}

.heydoner-hero-slider__banner-link {
  display: block;
  width: 100%;
  line-height: 0;
}

.heydoner-hero-slider__banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.heydoner-hero-slider__banner--image .heydoner-hero-slider__banner-img {
  object-fit: unset;
  object-position: center center;
}

.heydoner-hero-slider__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 22, 0.35) 0%,
    rgba(7, 27, 22, 0.2) 45%,
    rgba(7, 27, 22, 0.45) 100%
  );
  pointer-events: none;
}

.heydoner-hero-slider__banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  pointer-events: none;
}

.heydoner-hero-slider__banner-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.heydoner-hero-slider__slide {
  animation: heydoner-hero-fade-in 0.45s ease;
}

.heydoner-hero-slider__slide[hidden] {
  display: none !important;
}

@keyframes heydoner-hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.heydoner-hero-slider__controls {
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.heydoner-hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 1rem;
}

.heydoner-hero-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #0b4b3a;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.heydoner-hero-slider__arrow:hover {
  background: #f4f8f6;
  border-color: #0b4b3a;
}

/* Tailwind preflight sets button { background-color: transparent } — scope + border keeps dots visible */
.heydoner-hero-slider button.heydoner-hero-slider__dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  flex-shrink: 0;
  display: inline-block;
  border-radius: 999px;
  border: 2px solid #0b4b3a;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(11, 75, 58, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.heydoner-hero-slider button.heydoner-hero-slider__dot.is-active {
  background-color: #0b4b3a;
  transform: scale(1.15);
}

.heydoner-hero-slider button.heydoner-hero-slider__dot:hover {
  background-color: rgba(11, 75, 58, 0.45);
}

.heydoner-hero-slider button.heydoner-hero-slider__dot.is-active:hover {
  background-color: #08352a;
}

@media (prefers-reduced-motion: reduce) {
  .heydoner-hero-slider__slide {
    animation: none;
  }
}

/* Hey Döner menü oluşturucu (/menuler) — section nav + visible sections */
.heydoner-menu-builder__section-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.heydoner-menu-builder__section-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0b4b3a;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.heydoner-menu-builder__section-nav-link:hover,
.heydoner-menu-builder__section-nav-link:focus-visible {
  border-color: #0b4b3a;
  background: #e8f3ed;
  color: #062f24;
}

.heydoner-menu-builder__section {
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid #e8f3ed;
  background: #fff;
  box-shadow: 0 4px 20px rgba(11, 75, 58, 0.04);
}

@media (min-width: 768px) {
  .heydoner-menu-builder__section {
    padding: 1.5rem 1.75rem;
  }
}

.heydoner-menu-builder__hero {
  padding-top: 1.5rem;
}

#menu-builder {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.heydoner-menu-builder__slider {
  min-width: 0;
}

.heydoner-menu-builder__slider-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.heydoner-menu-builder__slider-viewport::-webkit-scrollbar {
  display: none;
}

.heydoner-menu-builder__slider-viewport:focus-visible {
  outline: 2px solid #0b4b3a;
  outline-offset: 2px;
  border-radius: 0.5rem;
}

.heydoner-menu-builder__slider-track {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.heydoner-menu-builder__slider-item {
  flex: 0 0 calc(100% - 2.5rem);
  min-width: 0;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .heydoner-menu-builder__slider-track {
    gap: 0.875rem;
  }

  .heydoner-menu-builder__slider-item {
    flex-basis: calc(50% - 0.4375rem);
  }
}

@media (min-width: 768px) {
  .heydoner-menu-builder__slider-item {
    flex-basis: calc(33.333% - 0.583rem);
  }
}

@media (min-width: 1024px) {
  .heydoner-menu-builder__slider-track {
    gap: 0.65rem;
  }

  .heydoner-menu-builder__slider-item {
    flex-basis: calc(20% - 0.52rem);
  }
}

.heydoner-menu-builder__slider-nav {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.heydoner-menu-builder__slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #0b4b3a;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.heydoner-menu-builder__slider-btn:hover:not(:disabled),
.heydoner-menu-builder__slider-btn:focus-visible:not(:disabled) {
  border-color: #0b4b3a;
  background: #e8f3ed;
  color: #062f24;
}

.heydoner-menu-builder__slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.heydoner-menu-builder__slider-status {
  min-width: 3.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748b;
}

.heydoner-menu-builder__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.heydoner-menu-builder__card--display {
  cursor: default;
}

.heydoner-menu-builder__card--display:hover {
  border-color: #e5e7eb;
  box-shadow: none;
}

.heydoner-menu-builder__card-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e8f3ed 0%, #d4ebe0 100%);
  overflow: hidden;
}

.heydoner-menu-builder__card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heydoner-menu-builder__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem 1rem;
}

.heydoner-menu-builder__card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #062f24;
  line-height: 1.25;
}

.heydoner-menu-builder__card-text {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
}

@media (min-width: 1024px) {
  .heydoner-menu-builder__card {
    border-width: 1px;
    border-radius: 0.75rem;
  }

  .heydoner-menu-builder__card-media {
    aspect-ratio: 1 / 1;
  }

  .heydoner-menu-builder__card-body {
    padding: 0.55rem 0.65rem 0.7rem;
    gap: 0.2rem;
  }

  .heydoner-menu-builder__card-title {
    font-size: 0.8125rem;
    line-height: 1.2;
  }

  .heydoner-menu-builder__card-text {
    font-size: 0.6875rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.heydoner-menu-builder__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.heydoner-menu-builder__btn.w-full {
  width: 100%;
}

.heydoner-menu-builder__order-cta {
  padding-top: 1.5rem;
  border-top: 1px solid #e8f3ed;
}

.heydoner-menu-builder__btn--order {
  min-width: 12rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.heydoner-menu-builder__btn--primary {
  background: #0b4b3a;
  color: #fff;
}

.heydoner-menu-builder__btn--primary:hover {
  background: #08352a;
  color: #fff;
}

.heydoner-menu-builder__btn--ghost {
  background: #fff;
  color: #0b4b3a;
  border: 1px solid #d1d5db;
}

.heydoner-menu-builder__btn--ghost:hover {
  background: #f4f8f6;
}

.heydoner-menu-builder__summary-row {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.65rem;
}

.heydoner-menu-builder__summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.heydoner-menu-builder__summary-full .heydoner-menu-builder__summary-row {
  padding: 0.75rem 0;
}

/* Kariyer application form */
.kariyer-form-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #062f24;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f3ed;
}

.kariyer-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

.kariyer-form-control {
  display: block;
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  color: #111827;
  background: #fff;
}

.kariyer-form-control:focus {
  outline: 2px solid #0b4b3a;
  outline-offset: 1px;
  border-color: #0b4b3a;
}

.kariyer-form-control--file {
  padding: 0.45rem 0.65rem;
  font-size: 0.875rem;
}

.kariyer-form-yesno {
  border: 0;
  margin: 0;
  padding: 0;
}

.kariyer-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.75rem;
  background: #0b4b3a;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.kariyer-form-submit:hover {
  background: #08352a;
}

.section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title small {
  display: block;
  color: var(--orange);
  font-weight: 950;
  font-size: 16px;
  margin-bottom: 6px;
}

.section-title h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -2px;
}

.menus-heading {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.menus-heading-title {
  margin: 0;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0d2c24;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.menus-heading-title::before,
.menus-heading-title::after {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #d7dee0;
}

.menus-heading-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* Balances the left link so the title stays visually centered (1fr | auto | 1fr). */
.menus-heading-spacer {
  justify-self: stretch;
  min-height: 1px;
}

.menus-heading-link:hover {
  color: #053525;
}

/* Front page — franchise promo bar */
.home-franchise-promo {
  background: #f96106;
  color: #fff;
}

.home-franchise-promo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  padding: 1.35rem 0;
}

.home-franchise-promo__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  flex: 1 1 520px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-franchise-promo__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.35rem 1.25rem;
}

.home-franchise-promo__item--divider {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.home-franchise-promo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  opacity: 0.95;
}

.home-franchise-promo__icon-img {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.home-franchise-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.home-franchise-promo__title {
  font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-franchise-promo__text {
  font-size: clamp(0.75rem, 0.95vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
  opacity: 0.92;
}

.home-franchise-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.65rem;
  background: #0a3525;
  color: #fff;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.home-franchise-promo__btn:hover {
  background: #053525;
  color: #fff;
}

@media (max-width: 1024px) {
  .home-franchise-promo__items {
    flex: 1 1 100%;
  }

  .home-franchise-promo__item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 11rem;
  }
}

@media (max-width: 900px) {
  .home-franchise-promo__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 0 1.25rem;
  }

  .home-franchise-promo__items {
    flex-direction: column;
    align-items: stretch;
    flex: none;
    width: 100%;
    gap: 0;
  }

  .home-franchise-promo__item {
    flex: none;
    width: 100%;
    min-width: 0;
    gap: 0.875rem;
    padding: 0.875rem 0;
  }

  .home-franchise-promo__item:first-child {
    padding-top: 0;
  }

  .home-franchise-promo__item--divider {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 0.875rem;
  }

  .home-franchise-promo__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
  }

  .home-franchise-promo__icon-img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .home-franchise-promo__title {
    font-size: 0.8125rem;
    line-height: 1.35;
  }

  .home-franchise-promo__text {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .home-franchise-promo__btn {
    width: 100%;
    min-height: 3.25rem;
    margin-top: 0.25rem;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 380px) {
  .home-franchise-promo__title {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }

  .home-franchise-promo__text {
    font-size: 0.6875rem;
  }
}

/* Sipariş page — delivery platform logos */
.heydoner-siparis-platform {
  text-decoration: none;
}

.heydoner-siparis-platform__logo {
  display: block;
  width: 10rem;
  max-width: 100%;
  height: 3rem;
  object-fit: contain;
  object-position: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.heydoner-siparis-platform:hover .heydoner-siparis-platform__logo,
.heydoner-siparis-platform:focus-visible .heydoner-siparis-platform__logo {
  transform: scale(1.04);
  opacity: 0.92;
}

.heydoner-siparis-platform:focus-visible {
  outline: 2px solid #063f25;
  outline-offset: 3px;
}

.section--soslar {
  padding-top: 56px;
  padding-bottom: 56px;
}

.soslar-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) ;
  gap: clamp(56px, 5vw, 28px);
  align-items: center;
}

.soslar-products {
  min-width: 0;
}

.soslar-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.soslar-card {
  text-align: center;
}

.soslar-card__media {
  aspect-ratio: 1;
  width: 100%;
  max-width: 148px;
  margin: 0 auto 14px;
  overflow: hidden;
  background: transparent;
}

.soslar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Lean sos product shots — trimmed PNGs, no circular frame or padding */
.heydoner-sos-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.heydoner-sos-item-media--home {
  width: 7rem;
  height: 7rem;
  margin: 0 auto;
}

.heydoner-sos-item-media--catalog {
  height: 7.5rem;
  background: transparent;
}

.heydoner-sos-item-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.soslar-card__title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  color: #111;
}

.soslar-card__text {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
}

.soslar-card__acilik {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 22px;
}

.sos-acilik-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

/* Placeholder “pepper” icons — swap for real assets later */
.sos-acilik-icon {
  width: 13px;
  height: 17px;
  border-radius: 5px 5px 10px 10px;
  background: linear-gradient(165deg, #f87171 0%, #b91c1c 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.soslar-empty {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.soslar-intro {
  padding-left: clamp(0px, 2vw, 12px);
}

.soslar-intro__title {
  margin: 0 0 16px;
  color: #053525;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.soslar-intro__lead {
  margin: 0 0 8px;
  color: #3d3d3d;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.soslar-intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 22px;
  border: 1px solid #f96106;
  border-radius: 14px;
  background: #f96106;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.soslar-intro__btn:hover {
  border-color: #053525;
  color: #053525;
  box-shadow: 0 4px 14px rgba(5, 53, 37, 0.08);
}

.soslar-layout--stacked {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.soslar-layout--stacked .soslar-intro {
  max-width: 42rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

.section--soslar-page {
  background: #f7f8f5;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section--soslar-page .soslar-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .section--soslar-page .soslar-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .section--soslar-page .soslar-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.section--franchise-cta {
  padding-top: 8px;
  padding-bottom: 56px;
}

.franchise-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.11);
  background: #053525;
}

.franchise-cta__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 36px 36px 36px 40px;
  color: #fff;
}

.franchise-cta__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
  color: #f96106;
}

.franchise-cta__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.franchise-cta__text {
  margin: 0 0 22px;
  max-width: 44ch;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  opacity: 0.94;
}

.franchise-cta__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid #f96106;
  border-radius: 12px;
  background: #f96106;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.franchise-cta__btn:hover {
  background: #e05505;
  border-color: #e05505;
  color: #fff;
}

.franchise-cta__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  min-height: 0;
  min-width: 0;
  padding: 0;
}

.franchise-cta__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

.franchise-cta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.franchise-cta__panel {
  position: relative;
  z-index: 2;
  flex: 0 0 230px;
  width: 230px;
  max-width: 230px;
  margin: 0 1.25rem 0 0;
  padding: 24px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.franchise-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.franchise-cta__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.franchise-cta__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 2px;
  color: #f96106;
  font-size: 22px;
  line-height: 1;
}

.franchise-cta__item-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.franchise-cta__item-line {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  color: #1f2937;
}

.franchise-cta__item-line:first-child {
  font-weight: 800;
  color: #111827;
}

.section--why-heydoner {
  padding-top: 0px!important;
  padding-bottom: 72px;
  background: #fff;
}

.why-heydoner__title {
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  color: #f96106;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.why-heydoner__title::before,
.why-heydoner__title::after {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: #d1d5db;
  flex-shrink: 0;
}

.why-heydoner__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.why-heydoner__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  min-height: 100%;
  border-right: 1px solid #e8e8e8;
  justify-content: center;
}

.why-heydoner__item:last-child {
  border-right: 0;
}

.why-heydoner__icon-wrap {
  flex-shrink: 0;
}

/* Franchise-style PNG icons (home “Neden Hey Döner?” strip). */
.why-heydoner__icon-img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.why-heydoner__copy {
  min-width: 0;
}

.why-heydoner__item-title {
  display: block;
  margin: 0 0 6px;
  color: #053525;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.why-heydoner__desc {
  margin: 0;
  color: #5a6b66;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.menus-banner {
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menus-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.split-heading {
  text-align: center;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0 0 22px;
}

.split-heading .accent {
  color: #053525;
}

.split-heading .dark {
  color: #111;
}

.split-heading-secondary {
  margin-top: 58px;
}

.menu-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  transition: 0.2s ease;
}

.menu-filter:hover,
.menu-filter.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.menu-carousel {
  margin-bottom: 18px;
}

.carousel-nav {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-btn {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel-status {
  min-width: 54px;
  text-align: center;
  font-weight: 800;
  color: #111;
}

.menus-cta {
  margin-top: 28px;
  text-align: center;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.menu-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  z-index: 2;
}

.menu-card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 18px 18px 20px;
  gap: 0;
}

.menu-card h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.menu-card-desc {
  margin: 0 0 12px;
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  min-height: unset;
}

.menu-card-acilik {
  margin: 0 0 10px;
  color: #053525;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.menu-card-acilik--icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 22px;
}

.menu-card-acilik--icons:empty {
  display: none;
}

.menu-card-thumb {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
}

.menu-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card .price {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #053525;
}

.menu-card-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 10px;
  background: #053525;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.menu-card-order:hover {
  background: #032015;
  color: #fff !important;
}

.menu-card-order-icon {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.menu-card--kampanya .old-price {
  margin: 0 0 4px;
}

.menu-card--kampanya .discount-rate {
  margin: 0 0 12px;
}

.price {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 950;
  color: var(--orange);
}

.menu-icerik {
  margin-top: 12px;
  min-height: unset;
  color: #222;
  font-size: 14px;
  font-weight: 700;
}

.old-price {
  margin-top: 10px;
  min-height: unset;
  color: #8a8a8a;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 700;
}

.discount-rate {
  margin-top: 8px;
  min-height: unset;
  color: #053525;
  font-size: 15px;
  font-weight: 900;
}

.sube-search {
  margin: 8px 0 24px;
}

.sube-search input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
}

.sube-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.sube-card {
  border: 1px solid #eee;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.sube-card h3 {
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 10px;
}

.sube-card p {
  min-height: unset;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.sube-images {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sube-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.sube-embed {
  margin-top: 12px;
}

.sube-embed iframe {
  width: 100%;
  min-height: 200px;
  border: 0;
}

.sube-links {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sube-pagination {
  margin-top: 24px;
}

.sube-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sube-pagination a,
.sube-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
}

.sube-pagination .current {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.about-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 26px 0 50px;
  min-height: 420px;
}

.about-hero-banner {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-hero-content {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 460px;
}

.about-hero-content h1 {
  color: #f9bb03;
  font-size: 24px;
  font-weight: 950;
  line-height: 0.95;
  margin-bottom: 14px;
}

.about-hero-content h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
}

.about-hero-content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 22px;
}

.about-hero-btn {
  color: #111;
}

.about-hero-btn span {
  color: #111;
}

.about-story {
  margin: 10px 0 52px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}

.about-story-copy {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 26px 28px;
}

.about-story-copy small {
  display: block;
  color: #053525;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.about-story-copy h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.05;
  color: #111;
  margin-bottom: 18px;
}

.about-story-copy p {
  margin: 0 0 12px;
  color: #2d2d2d;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.about-signature {
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  font-size: 54px;
  color: #111;
  line-height: 1;
  margin: 14px 0 16px;
}

.about-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 24px;
  font-weight: 900;
}

.about-story-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.about-story-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-story-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-numbers {
  margin: 8px 0 56px;
}

.about-numbers-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  margin-bottom: 22px;
  color: #111;
}

.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-number-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 20px 16px 18px;
}

.about-number-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border: 2px solid #053525;
  border-radius: 10px;
}

.about-number-value {
  color: #053525;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.about-number-card h3 {
  font-size: 28px;
  line-height: 1;
  color: #111;
  margin-bottom: 8px;
}

.about-number-card p {
  min-height: unset;
  margin: 0;
  color: #2d2d2d;
  font-size: 23px;
  line-height: 1.4;
  font-weight: 600;
}

.about-values {
  margin: 10px 0 62px;
  background: #f7f4f2;
  border: 1px solid #eee9e4;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  overflow: hidden;
}

.about-values-intro {
  padding: 24px 26px 22px;
  border-right: 1px solid #ddd4ce;
}

.about-values-intro h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  color: #111;
  margin-bottom: 12px;
}

.about-values-intro h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  border-radius: 4px;
  background: #053525;
  margin-top: 10px;
}

.about-values-intro p {
  margin: 0;
  min-height: unset;
  color: #2d2d2d;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

.about-value-card {
  padding: 22px 14px 18px;
  text-align: center;
  border-right: 1px solid #ddd4ce;
}

.about-value-card:last-child {
  border-right: 0;
}

.about-value-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  border: 2px solid #053525;
  border-radius: 10px;
}

.about-value-card h3 {
  color: #111;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.about-value-card p {
  margin: 0;
  min-height: unset;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.franchise-hero {
  margin: 26px 0 52px;
  border-radius: 20px;
  overflow: hidden;
  background: #053525;
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  align-items: center;
  min-height: 420px;
}

.franchise-hero-copy {
  padding: 36px 34px;
  color: #fff;
}

.franchise-hero-copy small {
  display: block;
  color: #ffd470;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.franchise-hero-copy h1 {
  margin: 0 0 14px;
  line-height: 0.93;
}

.franchise-hero-copy h1 span,
.franchise-hero-copy h1 strong {
  display: block;
  font-size: clamp(44px, 5.3vw, 74px);
  font-weight: 950;
  letter-spacing: -1px;
}

.franchise-hero-copy h1 strong {
  color: #111;
}

.franchise-hero-copy p {
  margin: 0 0 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
}

.franchise-hero-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffc21a;
  color: #111;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 900;
}

.franchise-hero-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #111;
  color: #ffc21a;
  font-size: 16px;
  line-height: 1;
}

.franchise-hero-image {
  height: 100%;
}

.franchise-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.franchise-copy {
  margin: 0 0 46px;
  text-align: center;
}

.franchise-copy h2 {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1;
  margin-bottom: 14px;
  color: #111;
}

.franchise-copy p {
  margin: 0 auto 10px;
  max-width: 900px;
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.franchise-benefits {
  margin: 0 0 58px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.franchise-benefit-card {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 12px 14px;
  text-align: center;
}

.franchise-benefit-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  border: 2px solid #053525;
  border-radius: 9px;
}

.franchise-benefit-card h3 {
  color: #111;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.franchise-benefit-card p {
  margin: 0;
  min-height: unset;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: #2d2d2d;
}

.franchise-steps {
  margin: 2px 0 64px;
}

.franchise-steps-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  color: #111;
  margin-bottom: 26px;
}

.franchise-steps-title span {
  color: #053525;
}

.franchise-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.franchise-step-card {
  position: relative;
  text-align: center;
  padding: 8px 8px 8px;
}

.franchise-step-number {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #053525;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.franchise-step-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border: 2px solid #053525;
  border-radius: 10px;
}

.franchise-step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
  color: #111;
}

.franchise-step-card p {
  margin: 0;
  min-height: unset;
  color: #2d2d2d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.franchise-bottom-banner {
  margin: 4px 0 54px;
  border-radius: 20px;
  overflow: hidden;
}

.franchise-bottom-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.iletisim-hero {
  position: relative;
  margin: 26px 0 52px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.iletisim-hero-banner {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.iletisim-hero-copy {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: min(45%, 520px);
  z-index: 2;
}

.iletisim-hero-copy h1 {
  margin: 0 0 14px;
  color: #111111;
  font-size: clamp(34px, 3.6vw, 64px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.iletisim-hero-copy p {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.38;
  font-weight: 400;
  max-width: 540px;
}

.iletisim-brand {
  margin: 18px 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.iletisim-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.iletisim-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
}

.iletisim-contact-card strong {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 4px;
}

.iletisim-contact-card span {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}

.iletisim-details {
  margin: 0 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.iletisim-form-wrap,
.iletisim-info-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.iletisim-form-wrap h2,
.iletisim-info-wrap h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1;
}

.iletisim-form-wrap > p {
  margin: 0 0 6px;
  color: #343434;
  font-size: 15px;
  line-height: 1.4;
}

.iletisim-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.iletisim-form-notice {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.iletisim-form-notice--success {
  background: #e8f7ea;
  color: #146b2e;
  border: 1px solid #9fddb0;
}

.iletisim-form-notice--error {
  background: #fff1f1;
  color: #9f1c1c;
  border: 1px solid #f0b0b0;
}

.iletisim-form input,
.iletisim-form select,
.iletisim-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: #1d1d1d;
  background: #fff;
  font-family: inherit;
}

.iletisim-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #1f1f1f 50%), linear-gradient(135deg, #1f1f1f 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.iletisim-form textarea {
  min-height: 110px;
  resize: vertical;
}

.iletisim-submit {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  background: #053525;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  cursor: pointer;
}

.iletisim-submit span {
  margin-left: 6px;
}

.iletisim-info-wrap {
  display: grid;
  align-content: start;
}

.iletisim-info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
}

.iletisim-info-item:last-child {
  border-bottom: 0;
}

.iletisim-icon-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px dashed #053525;
  background: rgba(5, 53, 37, 0.08);
}

.iletisim-info-item h3 {
  margin: 0 0 4px;
  color: #111;
  font-size: 20px;
  line-height: 1.05;
}

.iletisim-info-item strong {
  display: block;
  color: #111;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.iletisim-info-item p {
  margin: 0 0 2px;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 1.35;
}

.iletisim-location {
  margin: 0 0 58px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.iletisim-location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
}

.iletisim-location-info {
  padding: 26px 28px 22px;
}

.iletisim-location-info h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.05;
}

.iletisim-location-info p {
  margin: 0;
  color: #2f2f2f;
  font-size: 17px;
  line-height: 1.35;
}

.iletisim-location-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #053525;
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 16px;
  font-weight: 800;
}

.iletisim-location-features {
  margin-top: 22px;
  border-top: 1px solid #ededed;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iletisim-location-feature {
  text-align: center;
  padding: 14px 8px 8px;
  border-right: 1px solid #ededed;
}

.iletisim-location-feature:last-child {
  border-right: 0;
}

.iletisim-feature-placeholder {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 10px;
  border: 2px dashed #053525;
  background: rgba(5, 53, 37, 0.08);
}

.iletisim-location-feature h3 {
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.2;
}

.iletisim-location-feature p {
  margin-top: 4px;
  color: #2e2e2e;
  font-size: 15px;
  line-height: 1.3;
}

.brand-band {
  padding: 30px 0;
  background: #fff;
}

.brand-band-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.brand-band-image img {
  width: 100%;
  height: auto;
  display: block;
}

.franchise-preview {
  text-align: center;
  padding-top: 78px;
}

.franchise-icon {
  max-width: 180px;
  margin: 0 auto 24px;
}

.franchise-icon img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.franchise-preview h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.franchise-preview p {
  max-width: 680px;
  margin: 0 auto 42px;
  font-size: 18px;
  font-weight: 700;
}

.delivery-bar {
  margin-top: 50px;
  background: #fff;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  border-radius: 30px 30px 0 0;
  /* background-color: #f1f1f1; */
  background-image: url(assets/delivery-bg.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.delivery-phone small {
  display: block;
  color: var(--orange);
  font-weight: 950;
  font-size: 18px;
}

.delivery-phone strong {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 950;
  letter-spacing: -1px;
}

.delivery-phone {
  text-align: right;
}

.footer {
  background: #111;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 48px;
  padding: 58px 0;
  position: relative;
  z-index: 1;
}

.footer-main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(((100% - 96px) * 1.2 / 2.9) + 48px);
  right: calc(50% - 50vw);
  background: #053525;
  z-index: -1;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.footer p,
.footer li {
  color: #ccc;
  font-size: 14px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-weight: 900;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: #aaa;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #111;
}

@media (max-width: 980px) {
  .menu-list {
    display: none;
  }

  .delivery-bar,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main::after {
    display: none;
  }

  .delivery-bar {
    background-position: center;
    text-align: center;
  }

  .delivery-phone {
    text-align: center;
  }

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

  .cards--kampanya {
    grid-template-columns: 1fr;
  }

  .soslar-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .soslar-products {
    order: 1;
  }

  .soslar-intro {
    order: 2;
    padding-left: 0;
    text-align: center;
  }

  .soslar-intro__btn {
    margin-left: auto;
    margin-right: auto;
  }

  .soslar-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .franchise-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .franchise-cta__left {
    padding: 28px 24px 20px;
    border-radius: 22px 22px 0 0;
  }

  .franchise-cta__right {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 1rem 1.25rem;
  }

  .franchise-cta__media {
    position: relative;
    inset: auto;
    flex: none;
    min-height: 220px;
    border-radius: 14px;
    overflow: hidden;
  }

  .franchise-cta__img {
    min-height: 220px;
    height: auto;
    object-position: center;
  }

  .franchise-cta__panel {
    flex: none;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 18px;
    padding: 22px 20px 24px;
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.14),
      0 6px 14px rgba(0, 0, 0, 0.08);
  }

  .why-heydoner__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-heydoner__item {
    border-right: 0;
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 12px;
    justify-content: center;
  }

  .why-heydoner__item:last-child {
    border-bottom: 0;
  }

  .about-hero {
    min-height: 320px;
  }

  .about-hero-banner {
    min-height: 320px;
  }

  .about-hero-content {
    left: 30px;
    max-width: 56%;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    order: 2;
  }

  .about-story-visual {
    order: 1;
  }

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

  .about-values {
    grid-template-columns: 1fr 1fr;
  }

  .about-values-intro {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid #ddd4ce;
  }

  .about-value-card {
    border-right: 1px solid #ddd4ce;
    border-bottom: 1px solid #ddd4ce;
  }

  .about-value-card:nth-child(3n) {
    border-right: 0;
  }

  .about-value-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .franchise-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .franchise-hero-copy {
    padding: 26px 24px;
    order: 2;
  }

  .franchise-hero-image {
    order: 1;
  }

  .franchise-hero-image img {
    min-height: 320px;
  }

  .franchise-copy {
    margin-bottom: 38px;
  }

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

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

  .franchise-step-card::before {
    display: none;
  }

  .sube-list {
    grid-template-columns: 1fr;
  }

  .menus-banner {
    margin-bottom: 22px;
  }

  .iletisim-hero {
    min-height: 0;
  }

  .iletisim-hero-banner {
    min-height: 380px;
  }

  .iletisim-hero-copy {
    left: 24px;
    width: min(54%, 520px);
  }

  .iletisim-hero-copy h1 {
    font-size: clamp(34px, 7vw, 56px);
  }

  .iletisim-hero-copy p {
    font-size: 18px;
    max-width: 100%;
  }

  .iletisim-contact-grid {
    grid-template-columns: 1fr;
  }

  .iletisim-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .iletisim-info-item {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .iletisim-icon-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .iletisim-location {
    grid-template-columns: 1fr;
  }

  .iletisim-location-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-actions {
    display: none;
  }

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

  .split-heading {
    font-size: 32px;
  }

  .menus-heading {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .menus-heading-title {
    font-size: 20px;
    order: 1;
    align-self: center;
  }

  .menus-heading-link {
    order: 2;
    align-self: flex-start;
  }

  .menus-heading-spacer {
    display: none;
  }

  .soslar-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-phone strong {
    font-size: 34px;
  }

  .about-hero {
    min-height: 0;
    margin: 20px 0 34px;
  }

  .about-hero-banner {
    min-height: 260px;
  }

  .about-hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 18px;
    padding: 0 8px 8px;
  }

  .about-hero-content h1 {
    color: #111;
    font-size: 36px;
  }

  .about-hero-content h2 {
    font-size: 24px;
  }

  .about-hero-content p {
    color: #222;
    font-size: 15px;
  }

  .about-story-copy {
    padding: 20px 18px 24px;
  }

  .about-story-copy small {
    font-size: 26px;
  }

  .about-story-copy h2 {
    font-size: 40px;
    margin-bottom: 14px;
  }

  .about-story-copy p {
    font-size: 17px;
  }

  .about-signature {
    font-size: 40px;
  }

  .about-story-btn {
    font-size: 20px;
    padding: 11px 18px;
  }

  .about-numbers-grid {
    grid-template-columns: 1fr;
  }

  .about-number-card {
    padding: 16px 14px;
  }

  .about-number-card h3 {
    font-size: 22px;
  }

  .about-number-card p {
    font-size: 16px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values-intro {
    padding: 20px 16px;
  }

  .about-values-intro h2 {
    font-size: 30px;
  }

  .about-values-intro p {
    font-size: 15px;
  }

  .about-value-card {
    border-right: 0;
    border-bottom: 1px solid #ddd4ce;
    padding: 16px 12px 14px;
  }

  .about-value-card:last-child {
    border-bottom: 0;
  }

  .about-value-card h3 {
    font-size: 22px;
  }

  .about-value-card p {
    font-size: 15px;
  }

  .franchise-hero {
    margin: 20px 0 34px;
  }

  .franchise-hero-copy {
    padding: 20px 16px 24px;
  }

  .franchise-hero-copy small {
    font-size: 14px;
  }

  .franchise-hero-copy h1 span,
  .franchise-hero-copy h1 strong {
    font-size: 42px;
  }

  .franchise-hero-copy p {
    font-size: 16px;
  }

  .franchise-hero-btn {
    font-size: 13px;
    padding: 10px 14px;
  }

  .franchise-hero-image img {
    min-height: 240px;
  }

  .franchise-copy h2 {
    font-size: 34px;
  }

  .franchise-copy p {
    font-size: 16px;
  }

  .franchise-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 34px;
  }

  .franchise-steps {
    margin-bottom: 36px;
  }

  .franchise-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .franchise-bottom-banner {
    margin-bottom: 30px;
  }

  .franchise-step-card {
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 14px 12px;
  }

  .franchise-benefit-card {
    padding: 14px 10px 12px;
  }

  .franchise-benefit-card h3 {
    font-size: 16px;
  }

  .franchise-benefit-card p {
    font-size: 12px;
  }

  .iletisim-hero {
    margin: 20px 0 34px;
  }

  .iletisim-hero-banner {
    min-height: 280px;
  }

  .iletisim-hero-copy {
    position: static;
    transform: none;
    width: 100%;
    padding: 16px 12px 18px;
    background: #fff;
  }

  .iletisim-hero-copy h1 {
    font-size: 40px;
  }

  .iletisim-hero-copy p {
    font-size: 15px;
  }

  .iletisim-brand {
    font-size: 11px;
    margin-top: 14px;
  }

  .iletisim-contact-card strong {
    font-size: 16px;
  }

  .iletisim-contact-card span {
    font-size: 13px;
  }

  .iletisim-form-wrap,
  .iletisim-info-wrap {
    border-radius: 14px;
    padding: 16px;
  }

  .iletisim-form-wrap h2,
  .iletisim-info-wrap h2 {
    font-size: 28px;
  }

  .iletisim-form-wrap > p {
    font-size: 14px;
  }

  .iletisim-form input,
  .iletisim-form select,
  .iletisim-form textarea {
    font-size: 14px;
  }

  .iletisim-submit {
    width: 100%;
    justify-self: stretch;
    font-size: 16px;
  }

  .iletisim-info-item h3 {
    font-size: 17px;
  }

  .iletisim-info-item strong {
    font-size: 20px;
  }

  .iletisim-info-item p {
    font-size: 14px;
  }

  .iletisim-location {
    margin-bottom: 34px;
    border-radius: 14px;
  }

  .iletisim-location-map iframe {
    min-height: 240px;
  }

  .iletisim-location-info {
    padding: 16px;
  }

  .iletisim-location-info h2 {
    font-size: 30px;
  }

  .iletisim-location-info p {
    font-size: 14px;
  }

  .iletisim-location-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .iletisim-location-features {
    grid-template-columns: 1fr;
  }

  .iletisim-location-feature {
    border-right: 0;
    border-bottom: 1px solid #ededed;
    padding: 12px 4px;
  }

  .iletisim-location-feature:last-child {
    border-bottom: 0;
  }
}

/*
 * Footer <details> accordions: when closed, the UA hides all non-summary nodes.
 * Tailwind cannot override that; desktop must show lists — backup if JS is slow.
 */
@media (min-width: 1024px) {
  .heydoner-site-footer .heydoner-footer-accordion > ul {
    display: block !important;
  }
}

/* --------------------------------------------------------------------------
 * Kampanyalar landing (/kampanyalar archive)
 * -------------------------------------------------------------------------- */

.kampanyalar-main {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: clip;
}

.kampanyalar-page {
  --kamp-green: #053525;
  --kamp-green-dark: #023522;
  --kamp-green-soft: #edf6f1;
  --kamp-text: #111827;
  --kamp-muted: #5f6b66;
  --kamp-border: #e6ece9;
  --kamp-white: #ffffff;
  --kamp-mint: #b9f1cf;

  box-sizing: border-box;
  max-width: 1480px;
  margin: 0 auto;
  padding: 48px 28px 48px;
  font-family: inherit;
  color: var(--kamp-text);
  background: var(--kamp-white);
  line-height: 1.45;
}

.kampanyalar-page *,
.kampanyalar-page *::before,
.kampanyalar-page *::after {
  box-sizing: border-box;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.kampanyalar-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 28px;
}

.kampanyalar-eyebrow-line {
  width: 80px;
  height: 7px;
  background: var(--kamp-green);
  border-radius: 999px;
  margin-top: 22px;
}

.kampanyalar-page h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  color: var(--kamp-green);
  letter-spacing: -2.5px;
  margin: 0 0 22px;
}

.kampanyalar-hero-copy > p {
  max-width: 520px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #151515;
  margin: 0 0 40px;
}

.kampanyalar-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 620px;
  border-top: 1px solid var(--kamp-border);
  border-bottom: 1px solid var(--kamp-border);
  padding: 22px 0;
}

.kampanyalar-benefit {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid var(--kamp-border);
}

.kampanyalar-benefit:first-child {
  padding-left: 0;
}

.kampanyalar-benefit:last-child {
  border-right: 0;
}

.kampanyalar-benefit-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--kamp-green);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--kamp-green);
  font-size: 21px;
  flex: 0 0 auto;
}

.kampanyalar-benefit strong {
  display: block;
  color: var(--kamp-green);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 3px;
}

.kampanyalar-benefit span {
  display: block;
  font-size: 14px;
  color: #1f2c27;
}

.kampanyalar-feature-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--kamp-green-dark), var(--kamp-green));
  color: var(--kamp-white);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(6, 69, 47, 0.18);
}

.kampanyalar-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}

.kampanyalar-feature-content {
  width: 52%;
  position: relative;
  z-index: 2;
}

.kampanyalar-feature-card h2 {
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
  color: var(--kamp-white);
}

.kampanyalar-feature-desc {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 18px;
}

.kampanyalar-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.kampanyalar-old-price {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-weight: 700;
}

.kampanyalar-new-price {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 900;
  color: var(--kamp-mint);
}

.kampanyalar-discount-pill {
  background: var(--kamp-white);
  color: var(--kamp-green);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.kampanyalar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--kamp-green);
  color: var(--kamp-white);
  padding: 15px 24px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.kampanyalar-btn:hover {
  opacity: 0.92;
}

.kampanyalar-btn--light {
  background: var(--kamp-white);
  color: var(--kamp-green);
}

.kampanyalar-placeholder-img {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.06) 10px 20px
    );
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.kampanyalar-feature-image {
  position: absolute;
  right: 32px;
  top: 48px;
  bottom: 48px;
  width: 42%;
  z-index: 1;
}

.kampanyalar-limited {
  position: absolute;
  right: 34px;
  top: 36px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--kamp-white);
  color: var(--kamp-green);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  z-index: 3;
}

.kampanyalar-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.kampanyalar-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.kampanyalar-dot--active {
  background: var(--kamp-white);
}

button.kampanyalar-dot {
  cursor: pointer;
  padding: 0;
  margin: 0;
  background: transparent;
  appearance: none;
}

button.kampanyalar-dot.kampanyalar-dot--active {
  background: var(--kamp-white);
}

.kampanyalar-feature-carousel-outer {
  position: relative;
  padding-bottom: 52px;
  min-width: 0;
}

.kampanyalar-feature-carousel-track {
  position: relative;
  width: 100%;
}

.kampanyalar-feature-card--empty {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 280px;
}

.kampanyalar-feature-card--empty .kampanyalar-feature-content {
  width: 100%;
}

.kampanyalar-feature-image--photo {
  padding: 0;
  overflow: hidden;
}

.kampanyalar-feature-image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kampanyalar-card-image--has-thumb {
  padding: 0 !important;
  overflow: hidden;
}

.kampanyalar-card-image--has-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kampanyalar-panel-filters {
  margin-bottom: 28px;
}

.kampanyalar-panel-filters .menu-filters {
  flex-wrap: wrap;
}

.kampanyalar-grid-empty-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--kamp-muted);
  margin: 8px 0 16px;
  font-size: 15px;
}

.kampanyalar-panel {
  background: var(--kamp-white);
  border-radius: 24px;
  border: 1px solid var(--kamp-border);
  padding: 32px;
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.05);
}

.kampanyalar-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.kampanyalar-panel-head h2 {
  color: var(--kamp-green);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.5px;
  margin: 0;
}

.kampanyalar-panel-link {
  color: var(--kamp-green);
  text-decoration: none;
  font-weight: 800;
}

.kampanyalar-panel-link:hover {
  text-decoration: underline;
}

.kampanyalar-campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.kampanyalar-campaign-card {
  overflow: hidden;
  min-height: 370px;
  border-radius: 20px;
  border: 1px solid var(--kamp-border);
  background: var(--kamp-white);
  position: relative;
}

.kampanyalar-campaign-card--dark {
  background: linear-gradient(135deg, var(--kamp-green-dark), var(--kamp-green));
  color: var(--kamp-white);
}

.kampanyalar-card-image {
  height: 170px;
  margin: 20px 20px 0;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(6, 69, 47, 0.08), rgba(6, 69, 47, 0.18)),
    repeating-linear-gradient(45deg, #f5faf7 0 10px, #e9f3ee 10px 20px);
  border: 2px dashed #d2ded8;
  display: grid;
  place-items: center;
  color: var(--kamp-green);
  font-weight: 800;
}

.kampanyalar-campaign-card--dark .kampanyalar-card-image {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.1) 0 10px,
      rgba(255, 255, 255, 0.04) 10px 20px
    );
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--kamp-white);
}

.kampanyalar-card-body {
  padding: 22px;
}

.kampanyalar-tag {
  display: inline-flex;
  background: var(--kamp-green-soft);
  color: var(--kamp-green);
  border: 1px solid #c8ded4;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.kampanyalar-campaign-card--dark .kampanyalar-tag {
  background: var(--kamp-white);
  border-color: var(--kamp-white);
  color: var(--kamp-green);
}

.kampanyalar-campaign-card h3 {
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--kamp-green);
}

.kampanyalar-campaign-card--dark h3 {
  color: var(--kamp-white);
}

.kampanyalar-campaign-card p {
  color: var(--kamp-muted);
  margin: 0 0 18px;
}

.kampanyalar-campaign-card--dark p {
  color: rgba(255, 255, 255, 0.88);
}

.kampanyalar-card-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 18px;
}

.kampanyalar-card-price strong {
  font-size: 34px;
  color: var(--kamp-green);
}

.kampanyalar-campaign-card--dark .kampanyalar-card-price strong {
  color: var(--kamp-mint);
}

.kampanyalar-card-price span {
  text-decoration: line-through;
  color: #8a9691;
  font-weight: 700;
}

.kampanyalar-newsletter {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, var(--kamp-green-dark), var(--kamp-green));
  color: var(--kamp-white);
  border-radius: 20px;
  padding: 28px 34px;
}

.kampanyalar-newsletter-copy h3 {
  font-size: clamp(20px, 2.2vw, 25px);
  margin: 0 0 6px;
}

.kampanyalar-newsletter-copy p {
  margin: 0;
  opacity: 0.95;
}

.kampanyalar-newsletter-form {
  display: flex;
  background: var(--kamp-white);
  border-radius: 12px;
  overflow: hidden;
  min-height: 58px;
}

.kampanyalar-newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 22px;
  font-size: 16px;
  outline: none;
  color: var(--kamp-text);
}

.kampanyalar-newsletter-form button {
  border: 0;
  background: #2a8b54;
  color: var(--kamp-white);
  padding: 0 28px;
  font-weight: 900;
  cursor: pointer;
  flex-shrink: 0;
}

.kampanyalar-newsletter-form button:hover {
  filter: brightness(1.05);
}

.kampanyalar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.kampanyalar-socials strong {
  margin-right: 8px;
}

.kampanyalar-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--kamp-white);
  color: var(--kamp-green);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.kampanyalar-archive-wrap {
  margin-top: 48px;
  padding: 40px 0 56px;
  background: #f8faf9;
  border-radius: 24px;
}

.kampanyalar-archive-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--kamp-green);
  margin: 0 16px 28px;
  letter-spacing: -0.5px;
}

.kampanyalar-archive-inner {
  padding-bottom: 8px;
}

.kampanyalar-empty-msg {
  text-align: center;
  color: var(--kamp-muted);
  margin: 24px 0;
}

@media (max-width: 1100px) {
  .kampanyalar-hero,
  .kampanyalar-newsletter {
    grid-template-columns: 1fr;
  }

  .kampanyalar-feature-content {
    width: 100%;
  }

  .kampanyalar-feature-image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 280px;
    margin-top: 26px;
  }

  .kampanyalar-limited {
    position: absolute;
    right: 20px;
    top: 24px;
    width: 96px;
    height: 96px;
    font-size: 13px;
  }

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

  .kampanyalar-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .kampanyalar-page {
    padding: 30px 16px 40px;
  }

  .kampanyalar-benefits {
    grid-template-columns: 1fr;
  }

  .kampanyalar-benefit {
    border-right: 0;
    border-bottom: 1px solid var(--kamp-border);
    padding: 16px 0;
  }

  .kampanyalar-benefit:last-child {
    border-bottom: 0;
  }

  .kampanyalar-campaign-grid {
    grid-template-columns: 1fr;
  }

  .kampanyalar-feature-card {
    padding: 28px;
  }

  .kampanyalar-panel {
    padding: 22px;
  }

  .kampanyalar-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .kampanyalar-newsletter-form {
    flex-direction: column;
    min-height: auto;
  }

  .kampanyalar-newsletter-form input,
  .kampanyalar-newsletter-form button {
    min-height: 54px;
    width: 100%;
  }

  .kampanyalar-newsletter-form button {
    padding: 14px 28px;
  }

  .kampanyalar-archive-wrap {
    margin-top: 32px;
    padding: 28px 0 40px;
    border-radius: 16px;
  }
}

/* Kampanya channel badge */
.kampanyalar-channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--kampanya-channel-color, #053525);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.kampanyalar-channel-badge i {
  font-size: 15px;
  line-height: 1;
}

.kampanyalar-channel-badge--onlight {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Kampanyalar archive — horizontal card track (carousel + static rows) */
.kampanyalar-carousel__viewport {
  margin-inline: -0.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.kampanyalar-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.kampanyalar-carousel__viewport--static {
  overflow: visible;
}

.kampanyalar-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  padding-inline: 0.25rem;
  min-width: min-content;
}

.kampanyalar-carousel__viewport--static .kampanyalar-carousel__track {
  flex-wrap: wrap;
}

.kampanyalar-carousel__track [data-kampanya-card] {
  flex: 0 0 auto;
  width: clamp(260px, 85%, 320px);
  min-width: 260px;
  max-width: 320px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .kampanyalar-carousel__track [data-kampanya-card] {
    width: clamp(260px, 48%, 320px);
  }
}

@media (min-width: 1024px) {
  #kampanyalar-listesi > [data-kampanya-section] .kampanyalar-carousel__track [data-kampanya-card] {
    width: clamp(240px, 46%, 300px);
    min-width: 240px;
    max-width: 300px;
  }

  #kampanyalar-listesi > [data-kampanya-section]:only-child .kampanyalar-carousel__track [data-kampanya-card],
  #kampanyalar-listesi > [data-kampanya-section][style*="grid-column"] .kampanyalar-carousel__track [data-kampanya-card] {
    width: clamp(260px, 32%, 340px);
    min-width: 260px;
    max-width: 340px;
  }
}

.kampanyalar-card-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.kampanyalar-card-tags .kampanyalar-tag {
  margin-bottom: 0;
}

/* Kampanya detail (single) page */
.kampanya-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kamp-green);
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 24px;
}

.kampanya-detail-back:hover {
  opacity: 0.8;
}

.kampanya-detail-back i {
  font-size: 20px;
}

.kampanya-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--kamp-green-dark), var(--kamp-green));
  color: var(--kamp-white);
  border-radius: 24px;
  padding: 44px;
  overflow: hidden;
}

.kampanya-detail-content {
  position: relative;
  z-index: 2;
}

.kampanya-detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.kampanya-detail-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--kamp-white);
}

.kampanya-detail-lead {
  font-size: 17px;
  opacity: 0.92;
  margin: 0 0 22px;
  max-width: 46ch;
}

.kampanya-detail-price {
  margin-bottom: 26px;
}

.kampanya-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.kampanya-detail-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}

.kampanya-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kampanya-detail-body {
  margin-top: 34px;
  background: #f8faf9;
  border: 1px solid var(--kamp-border);
  border-radius: 20px;
  padding: 32px 34px;
}

.kampanya-detail-body h2 {
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--kamp-green);
  margin: 0 0 16px;
}

.kampanya-detail-richtext {
  color: var(--kamp-text);
  line-height: 1.7;
}

.kampanya-detail-richtext p {
  margin: 0 0 16px;
}

.kampanya-detail-richtext a {
  color: var(--kamp-green);
  font-weight: 700;
}

.kampanya-detail-richtext ul,
.kampanya-detail-richtext ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.kampanya-detail-richtext li {
  margin-bottom: 8px;
}

.kampanya-detail-richtext img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .kampanya-detail-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .kampanya-detail-image {
    order: -1;
  }
}

/* Basında Biz — press/blog cards */
.basinda-biz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .basinda-biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .basinda-biz-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.basinda-biz-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.basinda-biz-card:hover,
.basinda-biz-card:focus-visible {
  transform: translateY(-3px);
  border-color: #b8d4c8;
  box-shadow: 0 16px 40px rgba(6, 69, 47, 0.12);
}

.basinda-biz-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f3ed, #d4e8de);
}

.basinda-biz-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.basinda-biz-card:hover .basinda-biz-card__img,
.basinda-biz-card:focus-visible .basinda-biz-card__img {
  transform: scale(1.04);
}

.basinda-biz-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(6, 69, 47, 0.08), rgba(6, 69, 47, 0.18)),
    repeating-linear-gradient(45deg, #f5faf7 0 10px, #e9f3ee 10px 20px);
  color: #06452f;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}

.basinda-biz-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.5rem;
}

.basinda-biz-card__date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.basinda-biz-card__title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: #062f1f;
}

.basinda-biz-card__excerpt {
  margin-top: 0.65rem;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
}

.basinda-biz-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #06452f;
}

.basinda-biz-card:hover .basinda-biz-card__cta,
.basinda-biz-card:focus-visible .basinda-biz-card__cta {
  color: #f56108;
}

.basinda-biz-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  background: #f8fafc;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #475569;
  font-weight: 600;
}

.basinda-biz-pagination {
  margin-top: 2.5rem;
}

.basinda-biz-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  margin: 0 0.15rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #06452f;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.basinda-biz-pagination .page-numbers.current {
  border-color: #06452f;
  background: #06452f;
  color: #fff;
}

.basinda-biz-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.basinda-biz-entry__content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #334155;
}

.basinda-biz-entry__content > :first-child {
  margin-top: 0;
}

.basinda-biz-entry__content h2,
.basinda-biz-entry__content h3,
.basinda-biz-entry__content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #062f1f;
  font-weight: 800;
}

.basinda-biz-entry__content p,
.basinda-biz-entry__content ul,
.basinda-biz-entry__content ol {
  margin-bottom: 1rem;
}

.basinda-biz-entry__content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.basinda-biz-entry__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.basinda-biz-entry__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #06452f;
  text-decoration: none;
}

.basinda-biz-entry__back:hover,
.basinda-biz-entry__back:focus-visible {
  color: #f56108;
}

/* Yakında Açılacak Şubelerimiz */
.yakinda-subeler__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
  padding: 2rem 1.5rem 2.25rem;
  background: #fff;
  border: 2px dashed #ffc107;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .yakinda-subeler__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 2.25rem 2rem 2.5rem;
  }
}

.yakinda-subeler__copy {
  text-align: center;
}

@media (min-width: 768px) {
  .yakinda-subeler__copy {
    text-align: left;
  }
}

.yakinda-subeler__line {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #062f1f;
}

.yakinda-subeler__line--accent {
  color: #f56108;
}

.yakinda-subeler__line + .yakinda-subeler__line {
  margin-top: 0.15rem;
}

.yakinda-subeler__slider {
  min-width: 0;
}

.yakinda-subeler__viewport {
  position: relative;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .yakinda-subeler__viewport {
    justify-content: flex-start;
  }
}

.yakinda-subeler__slide {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .yakinda-subeler__slide {
    text-align: left;
  }
}

.yakinda-subeler__slide[hidden] {
  display: none;
}

.yakinda-subeler__branch-title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #06452f;
}

.yakinda-subeler__branch-location {
  margin: 0.35rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

/* Menüler catalog (/menuler) */
.menuler-catalog__tabs-wrap {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.menuler-catalog__tabs-scroller {
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 0.25rem;
}

.menuler-catalog__tabs-scroller::-webkit-scrollbar {
  display: none;
}

.menuler-catalog__tabs-scroller:focus-visible {
  outline: 2px solid #053f2c;
  outline-offset: 2px;
  border-radius: 0.75rem;
}

.menuler-catalog__tabs {
  display: inline-flex;
  width: max-content;
  max-width: none;
  margin-inline: auto;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(5, 63, 44, 0.08);
}

.menuler-catalog__tab {
  flex: 0 0 auto;
  min-width: 10rem;
  border: 0;
  background: #fff;
  color: #053f2c;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.25;
  padding: 1.1rem 1rem;
  white-space: nowrap;
  scroll-snap-align: start;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.menuler-catalog__tab:hover,
.menuler-catalog__tab:focus-visible {
  background: #eef6f1;
}

.menuler-catalog__tab.tab-active {
  background: #053f2c;
  color: #fff;
  border-radius: 10px;
}

.menuler-catalog__section + .menuler-catalog__section {
  margin-top: 2.5rem;
}

.menuler-catalog__section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 900;
  color: #053f2c;
}

.menuler-catalog__products--slider[hidden],
.menuler-catalog__products--grid[hidden] {
  display: none !important;
}

.menuler-catalog__slider .menuler-catalog__card {
  height: 100%;
}

.menuler-catalog__grid {
  display: grid;
  gap: 1.25rem;
}

.menuler-catalog__grid--menus {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .menuler-catalog__grid--menus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }
}

@media (min-width: 768px) {
  .menuler-catalog__grid--menus {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .menuler-catalog__grid--menus {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.menuler-catalog__grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .menuler-catalog__grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .menuler-catalog__grid--compact {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.menuler-catalog__card {
  overflow: hidden;
  border-radius: 0.75rem;
}

.menuler-catalog__card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menuler-catalog__card--menu .menuler-catalog__card-media {
  height: 11rem;
}

.menuler-catalog__card-media--compact {
  height: 8rem;
}

.menuler-catalog__card--sos .menuler-catalog__card-media {
  height: 7.5rem;
  background: transparent;
}

.menuler-catalog__card--sos .menuler-catalog__card-media img {
  padding: 0;
}

.menuler-catalog__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.menuler-catalog__card-body {
  padding: 1.25rem;
}

.menuler-catalog__card-body--compact {
  padding: 1rem;
}

.menuler-catalog__card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: #053f2c;
}

.menuler-catalog__card-title--compact {
  font-size: 0.875rem;
}

.menuler-catalog__card-desc {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #475569;
}

.menuler-catalog__card-acilik {
  margin-top: 0.35rem;
}

.menuler-catalog__card-price {
  font-size: 1rem;
  font-weight: 900;
  color: #053f2c;
}

.menuler-catalog__card-price--compact {
  font-size: 0.875rem;
}

.menuler-catalog__card-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  border-radius: 0.5rem;
  background: #053f2c;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.menuler-catalog__card-add:hover,
.menuler-catalog__card-add:focus-visible {
  background: #0b3525;
  color: #fff;
}

.menuler-catalog__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 1rem;
  background: #053f2c;
  color: #fff;
  padding: 2rem;
}

@media (min-width: 768px) {
  .menuler-catalog__cta-inner {
    flex-direction: row;
    align-items: center;
  }
}

.menuler-catalog__cta-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 900;
}

.menuler-catalog__cta-text {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.menuler-catalog__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #fff;
  color: #053f2c;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.menuler-catalog__cta-btn:hover,
.menuler-catalog__cta-btn:focus-visible {
  background: #f1f5f9;
  color: #053f2c;
}

.heydoner-menu-tabpanel[hidden] {
  display: none !important;
}

/* Form submission popup notifications */
html.heydoner-form-notice-open {
  overflow: hidden;
}

.heydoner-form-notice {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 47, 32, 0.55);
  backdrop-filter: blur(2px);
  animation: heydoner-form-notice-fade-in 0.2s ease;
}

.heydoner-form-notice--closing {
  animation: heydoner-form-notice-fade-out 0.18s ease forwards;
}

.heydoner-form-notice__dialog {
  width: min(100%, 420px);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(6, 47, 32, 0.22);
  animation: heydoner-form-notice-pop-in 0.24s ease;
}

.heydoner-form-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.heydoner-form-notice__icon--success {
  background: #dcfce7;
  color: #166534;
}

.heydoner-form-notice__icon--warning {
  background: #fef3c7;
  color: #92400e;
}

.heydoner-form-notice__icon--error {
  background: #fee2e2;
  color: #991b1b;
}

.heydoner-form-notice__title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #062f24;
}

.heydoner-form-notice__message {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #475569;
  white-space: pre-line;
}

.heydoner-form-notice__btn {
  display: inline-flex;
  min-width: 8rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.heydoner-form-notice__btn--success {
  background: #0c402a;
}

.heydoner-form-notice__btn--warning {
  background: #d97706;
}

.heydoner-form-notice__btn--error {
  background: #dc2626;
}

.heydoner-form-notice__btn:hover,
.heydoner-form-notice__btn:focus-visible {
  filter: brightness(1.05);
}

@keyframes heydoner-form-notice-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heydoner-form-notice-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes heydoner-form-notice-pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
