/*
Theme Name: Wingsbro Theme
Theme URI: https://example.com/
Author: Alex
Author URI: https://example.com/
Description: A clean custom WordPress theme built from scratch.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: wingsbro
*/

: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);
}

.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 */
.wingsbro-hero-slider__viewport {
  position: relative;
  width: 100%;
  line-height: 0;
}

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

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

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

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

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

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

.wingsbro-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;
}

.wingsbro-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;
}

.wingsbro-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);
}

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

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

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

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

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

.wingsbro-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;
}

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

/* Tailwind preflight sets button { background-color: transparent } — scope + border keeps dots visible */
.wingsbro-hero-slider button.wingsbro-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;
}

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

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

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

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

/* Bro Menü builder (/menuler) — section nav + visible sections */
.wingsbro-menu-builder__section-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wingsbro-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;
}

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

.wingsbro-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) {
  .wingsbro-menu-builder__section {
    padding: 1.5rem 1.75rem;
  }
}

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

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

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

.wingsbro-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;
}

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

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

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

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

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

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

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

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

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

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

.wingsbro-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;
}

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

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

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

.wingsbro-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;
}

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

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

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

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

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

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

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

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

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

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

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

  .wingsbro-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;
  }
}

.wingsbro-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;
}

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

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

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

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

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

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

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

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

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

.wingsbro-menu-builder__summary-full .wingsbro-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 */
.wingsbro-siparis-platform {
  text-decoration: none;
}

.wingsbro-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;
}

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

.wingsbro-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 */
.wingsbro-sos-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

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

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

.wingsbro-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-wingsbro {
  padding-top: 0px!important;
  padding-bottom: 72px;
  background: #fff;
}

.why-wingsbro__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-wingsbro__title::before,
.why-wingsbro__title::after {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: #d1d5db;
  flex-shrink: 0;
}

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

.why-wingsbro__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-wingsbro__item:last-child {
  border-right: 0;
}

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

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

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

.why-wingsbro__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-wingsbro__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-wingsbro__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .why-wingsbro__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) {
  .wingsbro-site-footer .wingsbro-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: baseline;
  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;
}

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

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

.wingsbro-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: wingsbro-form-notice-fade-in 0.2s ease;
}

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

.wingsbro-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: wingsbro-form-notice-pop-in 0.24s ease;
}

.wingsbro-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;
}

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

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

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

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

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

.wingsbro-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;
}

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

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

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

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

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

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

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


/* ============================================================
   WINGSBRO YENİ MENÜLER
============================================================ */

.bro-menu-page,
.bro-menu-page * {
	box-sizing: border-box;
}

.bro-menu-page {
	width: 100%;
	background: #ffffff;
	color: #073f2c;
}

.bro-menu-container {
	width: calc(100% - 48px);
	max-width: 1380px;
	margin: 0 auto;
}


/* ============================================================
   HERO
============================================================ */

.bro-menu-hero {
	padding: 32px 0 0;
}

.bro-menu-hero__inner {
	position: relative;
	min-height: 330px;
	overflow: hidden;

	background: #063f2b;
	border-radius: 24px;

	box-shadow: 0 15px 45px rgba(4, 61, 42, .10);
}

.bro-menu-hero__image {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;
}

.bro-menu-hero__overlay {
	position: absolute;
	inset: 0;

	background: linear-gradient(
		90deg,
		rgba(4, 60, 40, .98) 0%,
		rgba(4, 60, 40, .91) 32%,
		rgba(4, 60, 40, .61) 58%,
		rgba(4, 60, 40, .13) 100%
	);
}

.bro-menu-hero__content {
	position: relative;
	z-index: 2;

	display: flex;
	flex-direction: column;
	justify-content: center;

	min-height: 330px;
	max-width: 750px;

	padding: 50px 65px;

	color: #fff;
}

.bro-menu-hero__eyebrow {
	margin-bottom: 12px;

	color: #a9e62e;

	font-size: 12px;
	font-weight: 900;
	letter-spacing: 4px;
}

.bro-menu-hero h1 {
	margin: 0;

	color: #fff;

	font-size: clamp(42px, 5vw, 65px);
	font-weight: 900;

	line-height: 1;
	letter-spacing: -2.5px;
}

.bro-menu-hero h1 span {
	color: #a9e62e;
}

.bro-menu-hero__line {
	width: 60px;
	height: 5px;

	margin: 22px 0;

	background: #a9e62e;
	border-radius: 100px;
}

.bro-menu-hero p {
	max-width: 620px;
	margin: 0;

	color: rgba(255,255,255,.91);

	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
}


/* ============================================================
   CATALOG
============================================================ */

.bro-menu-catalog {
	padding: 65px 0 100px;
}


/* ============================================================
   MAIN TITLE
============================================================ */

.bro-menu-title {
	margin-bottom: 45px;
}

.bro-menu-title__eyebrow {
	margin-bottom: 7px;

	color: #f5a900;

	font-size: 11px;
	font-weight: 900;
	letter-spacing: 3px;
}

.bro-menu-title h2 {
	margin: 0;

	color: #073f2c;

	font-size: 52px;
	font-weight: 900;

	line-height: 1;
	letter-spacing: -2px;
}

.bro-menu-title__line {
	width: 150px;
	height: 5px;

	margin: 15px 0;

	background: #f5a900;
	border-radius: 100px;
}

.bro-menu-title p {
	max-width: 550px;

	margin: 0;

	color: #737b76;

	font-size: 15px;
	line-height: 1.7;
}


/* ============================================================
   LAYOUT
============================================================ */

.bro-menu-layout {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);

	gap: 48px;

	align-items: start;
}


/* ============================================================
   SIDEBAR
============================================================ */

.bro-menu-sidebar {
	width: 100%;
}

.bro-menu-sidebar__sticky {
	position: sticky;
	top: 115px;

	overflow: hidden;

	background: #f7f6f2;

	border: 1px solid #e8e4da;
	border-radius: 20px;

	box-shadow: 0 12px 35px rgba(7, 63, 44, .07);
}


/* SIDEBAR HEADER */

.bro-menu-sidebar__header {
	padding: 25px;

	background: #073f2c;
	color: #fff;
}

.bro-menu-sidebar__header span {
	display: block;

	margin-bottom: 5px;

	color: #a9e62e;

	font-size: 10px;
	font-weight: 900;
	letter-spacing: 3px;
}

.bro-menu-sidebar__header h3 {
	margin: 0;

	color: #fff;

	font-size: 25px;
	font-weight: 900;
	line-height: 1.1;
}


/* ============================================================
   CATEGORY BUTTON
============================================================ */

.bro-menu-categories {
	display: block;
	width: 100%;
}

.bro-menu-category {
	position: relative;

	display: grid;
	grid-template-columns: 12px 1fr 20px;
	align-items: center;

	gap: 11px;

	width: 100%;
	min-height: 66px;

	margin: 0;
	padding: 15px 20px;

	appearance: none;

	background: transparent;

	border: 0;
	border-bottom: 1px solid #e5e1d8;
	border-radius: 0;

	color: #515b55;

	font: inherit;
	font-size: 14px;
	font-weight: 800;

	text-align: left;

	cursor: pointer;

	transition: all .2s ease;
}

.bro-menu-category:last-child {
	border-bottom: 0;
}

.bro-menu-category:hover {
	background: #eef3ef;
	color: #073f2c;
}


/* DOT */

.bro-menu-category__dot {
	display: block;

	width: 7px;
	height: 7px;

	background: #c9cec9;

	border-radius: 50%;

	transition: all .2s ease;
}


/* ACTIVE */

.bro-menu-category.is-active {
	background: #fff;
	color: #073f2c;
}

.bro-menu-category.is-active::before {
	content: "";

	position: absolute;

	top: 13px;
	bottom: 13px;
	left: 0;

	width: 4px;

	background: #a9e62e;

	border-radius: 0 6px 6px 0;
}

.bro-menu-category.is-active .bro-menu-category__dot {
	background: #a9e62e;

	box-shadow: 0 0 0 4px rgba(169,230,46,.15);
}


/* ARROW */

.bro-menu-category__arrow {
	width: 18px;
	height: 18px;

	opacity: .4;

	transition: all .2s ease;
}

.bro-menu-category:hover .bro-menu-category__arrow,
.bro-menu-category.is-active .bro-menu-category__arrow {
	opacity: 1;

	transform: translateX(3px);
}


/* ============================================================
   CONTENT
============================================================ */

.bro-menu-content {
	min-width: 0;
	width: 100%;
}


/* ============================================================
   SECTIONS
============================================================ */

.bro-menu-section {
	display: none;
}

.bro-menu-section.is-active {
	display: block;

	animation: broMenuFade .3s ease;
}

@keyframes broMenuFade {

	from {
		opacity: 0;
		transform: translateY(8px);
	}

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

}


/* ============================================================
   SECTION HEADER
============================================================ */

.bro-menu-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	gap: 20px;

	margin-bottom: 28px;
	padding-bottom: 20px;

	border-bottom: 1px solid #ebe8e0;
}

.bro-menu-section__heading > span {
	display: block;

	margin-bottom: 6px;

	color: #f5a900;

	font-size: 10px;
	font-weight: 900;
	letter-spacing: 3px;
}

.bro-menu-section__heading h2 {
	margin: 0;

	color: #073f2c;

	font-size: 42px;
	font-weight: 900;

	line-height: 1;
	letter-spacing: -1.5px;
}

.bro-menu-section__line {
	width: 110px;
	height: 4px;

	margin-top: 13px;

	background: #f5a900;
	border-radius: 100px;
}


/* COUNT */

.bro-menu-section__count {
	display: flex;
	align-items: baseline;

	gap: 5px;

	padding-bottom: 5px;

	color: #8a928d;
}

.bro-menu-section__count strong {
	color: #073f2c;

	font-size: 24px;
	font-weight: 900;
}

.bro-menu-section__count span {
	font-size: 13px;
	font-weight: 700;
}


/* ============================================================
   PRODUCT GRID
============================================================ */

.bro-menu-products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));

	gap: 23px;
}


/* ============================================================
   PRODUCT CARD
============================================================ */

.bro-product-card {
	min-width: 0;
	overflow: hidden;

	margin: 0;

	background: #fff;

	border: 1px solid #e8e5dd;
	border-radius: 20px;

	box-shadow: 0 8px 25px rgba(7,63,44,.05);

	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;
}

.bro-product-card:hover {
	transform: translateY(-6px);

	border-color: #d7ded8;

	box-shadow: 0 20px 45px rgba(7,63,44,.13);
}

.bro-product-card__link {
	display: block;

	height: 100%;

	color: inherit;

	text-decoration: none !important;
}


/* ============================================================
   CARD IMAGE
============================================================ */

.bro-product-card__media {
	position: relative;

	overflow: hidden;

	width: 100%;
	aspect-ratio: 1 / .78;

	background:
		linear-gradient(
			145deg,
			#faf9f6,
			#f0eee8
		);
}

.bro-product-card__media img {
	display: block;

	width: 100%;
	height: 100%;

	padding: 12px;

	object-fit: contain;

	transition: transform .35s ease;
}

.bro-product-card:hover .bro-product-card__media img {
	transform: scale(1.055);
}


/* BADGE */

.bro-product-card__badge {
	position: absolute;

	top: 14px;
	left: 14px;

	display: flex;
	align-items: center;
	justify-content: center;

	min-width: 42px;
	height: 27px;

	padding: 0 10px;

	background: #073f2c;

	border-radius: 100px;

	color: #a9e62e;

	font-size: 9px;
	font-weight: 900;
	letter-spacing: 1px;
}


/* HOVER BUTTON */

.bro-product-card__hover {
	position: absolute;

	right: 14px;
	bottom: 14px;

	display: flex;
	align-items: center;

	gap: 7px;

	padding: 10px 14px;

	background: #073f2c;

	border-radius: 100px;

	color: #fff;

	font-size: 11px;
	font-weight: 800;

	opacity: 0;

	transform: translateY(8px);

	transition: all .25s ease;
}

.bro-product-card__hover svg {
	width: 15px;
	height: 15px;
}

.bro-product-card:hover .bro-product-card__hover {
	opacity: 1;

	transform: translateY(0);
}


/* ============================================================
   CARD BODY
============================================================ */

.bro-product-card__body {
	padding: 20px 20px 21px;
}

.bro-product-card__body h3 {
	margin: 0 0 9px;

	color: #073f2c;

	font-size: 20px;
	font-weight: 900;

	line-height: 1.2;
	letter-spacing: -.5px;
}

.bro-product-card__body p {
	display: -webkit-box;

	overflow: hidden;

	min-height: 42px;

	margin: 0 0 18px;

	color: #737b76;

	font-size: 13px;
	font-weight: 500;

	line-height: 1.6;

	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


/* BOTTOM */

.bro-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 15px;

	padding-top: 15px;

	border-top: 1px solid #efede7;

	color: #e99c00;

	font-size: 11px;
	font-weight: 900;

	letter-spacing: .5px;
	text-transform: uppercase;
}

.bro-product-card__button {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 31px;
	height: 31px;

	background: #f6f4ef;

	border-radius: 50%;

	color: #073f2c;

	transition: all .2s ease;
}

.bro-product-card__button svg {
	width: 15px;
	height: 15px;
}

.bro-product-card:hover .bro-product-card__button {
	background: #073f2c;
	color: #a9e62e;

	transform: translateX(3px);
}


/* ============================================================
   EMPTY
============================================================ */

.bro-menu-empty {
	padding: 40px;

	background: #f7f6f2;

	border: 1px solid #e7e3db;
	border-radius: 18px;

	color: #6c756f;

	font-size: 15px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

	.bro-menu-layout {
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 30px;
	}

	.bro-menu-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

	.bro-menu-container {
		width: calc(100% - 30px);
	}

	.bro-menu-hero {
		padding-top: 15px;
	}

	.bro-menu-hero__inner {
		min-height: 310px;

		border-radius: 17px;
	}

	.bro-menu-hero__content {
		min-height: 310px;

		padding: 35px 25px;
	}

	.bro-menu-hero h1 {
		font-size: 42px;
	}

	.bro-menu-hero p {
		font-size: 14px;
	}

	.bro-menu-catalog {
		padding: 45px 0 70px;
	}

	.bro-menu-title {
		margin-bottom: 28px;
	}

	.bro-menu-title h2 {
		font-size: 40px;
	}


	/* layout */

	.bro-menu-layout {
		display: block;
	}


	/* sidebar mobile */

	.bro-menu-sidebar {
		margin-bottom: 28px;
	}

	.bro-menu-sidebar__sticky {
		position: static;

		overflow: visible;

		background: transparent;

		border: 0;
		border-radius: 0;

		box-shadow: none;
	}

	.bro-menu-sidebar__header {
		display: none;
	}


	/* horizontal categories */

	.bro-menu-categories {
		display: flex;

		gap: 9px;

		overflow-x: auto;

		padding-bottom: 8px;

		scrollbar-width: none;
	}

	.bro-menu-categories::-webkit-scrollbar {
		display: none;
	}

	.bro-menu-category {
		display: flex;

		flex: 0 0 auto;

		width: auto;
		min-height: 48px;

		gap: 8px;

		padding: 11px 16px;

		background: #fff;

		border: 1px solid #e5e1d8;
		border-radius: 13px;

		white-space: nowrap;
	}

	.bro-menu-category.is-active {
		background: #073f2c;

		border-color: #073f2c;

		color: #fff;
	}

	.bro-menu-category.is-active::before {
		display: none;
	}

	.bro-menu-category__dot,
	.bro-menu-category__arrow {
		display: none;
	}


	/* section */

	.bro-menu-section__heading h2 {
		font-size: 33px;
	}

	.bro-menu-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));

		gap: 14px;
	}

	.bro-product-card {
		border-radius: 15px;
	}

	.bro-product-card__body {
		padding: 16px;
	}

	.bro-product-card__body h3 {
		font-size: 17px;
	}

	.bro-product-card__body p {
		font-size: 12px;
	}

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 520px) {

	.bro-menu-products {
		grid-template-columns: 1fr;
	}

	.bro-menu-section__count {
		display: none;
	}

	.bro-product-card__body h3 {
		font-size: 20px;
	}

}

/* ============================================================
   WINGSBRO PRODUCT DETAIL
============================================================ */

.bro-single-product,
.bro-single-product * {
	box-sizing: border-box;
}

.bro-single-product {
	background: #fff;
	color: #06442f;

	padding: 40px 0 100px;
}

.bro-single-container {
	width: calc(100% - 48px);
	max-width: 1380px;

	margin: 0 auto;
}


/* BACK */

.bro-single-back {
	margin-bottom: 25px;
}

.bro-single-back a {
	display: inline-flex;
	align-items: center;

	gap: 9px;

	color: #68736d;

	font-size: 13px;
	font-weight: 800;

	text-decoration: none;

	transition: .2s ease;
}

.bro-single-back svg {
	width: 18px;
	height: 18px;
}

.bro-single-back a:hover {
	color: #06442f;

	transform: translateX(-3px);
}


/* ============================================================
   HERO
============================================================ */

.bro-single-hero {
	display: grid;

	grid-template-columns:
		minmax(0, 1.05fr)
		minmax(400px, .95fr);

	min-height: 580px;

	overflow: hidden;

	background: #f7f6f2;

	border: 1px solid #e6e2d9;
	border-radius: 28px;

	box-shadow:
		0 20px 60px rgba(6, 68, 47, .08);
}


/* ============================================================
   IMAGE
============================================================ */

.bro-single-image {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	min-height: 580px;

	padding: 50px;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 50% 50%,
			#ffffff 0%,
			#f8f7f3 50%,
			#efede6 100%
		);
}

.bro-single-image::after {
	content: "";

	position: absolute;

	width: 400px;
	height: 80px;

	left: 50%;
	bottom: 70px;

	transform: translateX(-50%);

	background: rgba(6, 68, 47, .08);

	filter: blur(30px);

	border-radius: 50%;
}

.bro-single-image img {
	position: relative;
	z-index: 2;

	display: block;

	max-width: 90%;
	max-height: 470px;

	object-fit: contain;

	filter:
		drop-shadow(
			0 25px 20px rgba(0,0,0,.12)
		);
}


/* BRO BADGE */

.bro-single-image__badge {
	position: absolute;

	z-index: 5;

	top: 28px;
	left: 28px;

	padding: 10px 17px;

	background: #06442f;

	border-radius: 100px;

	color: #a8e72e;

	font-size: 11px;
	font-weight: 900;

	letter-spacing: 2px;
}


/* EMPTY IMAGE */

.bro-single-image__empty {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 70%;
	aspect-ratio: 1;

	border: 2px dashed #d5d8d2;
	border-radius: 50%;

	color: #06442f;

	font-size: 35px;
	font-weight: 900;

	opacity: .25;
}


/* ============================================================
   PRODUCT INFORMATION
============================================================ */

.bro-single-info {
	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: 65px;

	background: #fff;
}

.bro-single-eyebrow {
	margin-bottom: 13px;

	color: #f3a300;

	font-size: 11px;
	font-weight: 900;

	letter-spacing: 3px;
}

.bro-single-info h1 {
	max-width: 600px;

	margin: 0;

	color: #06442f;

	font-size: clamp(45px, 5vw, 68px);
	font-weight: 900;

	line-height: .98;
	letter-spacing: -3px;
}

.bro-single-title-line {
	width: 85px;
	height: 5px;

	margin: 25px 0;

	background: #f3a300;

	border-radius: 100px;
}


/* DESCRIPTION */

.bro-single-description {
	max-width: 580px;

	margin: 0 0 30px;

	color: #68736d;

	font-size: 17px;
	font-weight: 500;

	line-height: 1.75;
}


/* ============================================================
   FEATURE
============================================================ */

.bro-single-feature {
	display: flex;
	align-items: center;

	gap: 15px;

	margin-bottom: 30px;
	padding: 18px;

	background: #f7f7f3;

	border: 1px solid #ebe8e0;
	border-radius: 15px;
}

.bro-single-feature__icon {
	display: flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 45px;

	width: 45px;
	height: 45px;

	background: #06442f;

	border-radius: 13px;

	color: #a8e72e;
}

.bro-single-feature__icon svg {
	width: 19px;
	height: 19px;
}

.bro-single-feature strong,
.bro-single-feature span {
	display: block;
}

.bro-single-feature strong {
	margin-bottom: 3px;

	color: #06442f;

	font-size: 14px;
	font-weight: 900;
}

.bro-single-feature span {
	color: #77807b;

	font-size: 12px;
}


/* ============================================================
   ORDER BUTTON
============================================================ */

.bro-single-order {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;

	width: 220px;

	padding: 17px 20px 17px 23px;

	background: #06442f;

	border-radius: 100px;

	color: #fff !important;

	font-size: 13px;
	font-weight: 900;

	text-decoration: none !important;

	transition: .25s ease;
}

.bro-single-order svg {
	width: 19px;
	height: 19px;

	color: #a8e72e;

	transition: .25s ease;
}

.bro-single-order:hover {
	transform: translateY(-3px);

	box-shadow:
		0 15px 30px rgba(6,68,47,.20);
}

.bro-single-order:hover svg {
	transform: translateX(4px);
}


/* ============================================================
   CONTENT
============================================================ */

.bro-single-content {
	display: grid;

	grid-template-columns: 300px 1fr;

	gap: 70px;

	margin-top: 70px;
	padding-top: 60px;

	border-top: 1px solid #e8e5dd;
}

.bro-single-content__heading span {
	display: block;

	margin-bottom: 8px;

	color: #f3a300;

	font-size: 10px;
	font-weight: 900;

	letter-spacing: 3px;
}

.bro-single-content__heading h2 {
	margin: 0;

	color: #06442f;

	font-size: 35px;
	font-weight: 900;

	line-height: 1.1;
}

.bro-single-content__heading > div {
	width: 70px;
	height: 4px;

	margin-top: 17px;

	background: #f3a300;

	border-radius: 100px;
}

.bro-single-content__text {
	max-width: 800px;

	color: #65706a;

	font-size: 16px;
	line-height: 1.8;
}

.bro-single-content__text > *:first-child {
	margin-top: 0;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 950px) {

	.bro-single-hero {
		grid-template-columns: 1fr;
	}

	.bro-single-image {
		min-height: 450px;
	}

	.bro-single-info {
		padding: 45px;
	}

	.bro-single-content {
		grid-template-columns: 1fr;

		gap: 30px;
	}

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

	.bro-single-product {
		padding-top: 20px;
	}

	.bro-single-container {
		width: calc(100% - 30px);
	}

	.bro-single-hero {
		border-radius: 20px;
	}

	.bro-single-image {
		min-height: 330px;

		padding: 35px 20px;
	}

	.bro-single-image img {
		max-height: 280px;
	}

	.bro-single-image__badge {
		top: 18px;
		left: 18px;
	}

	.bro-single-info {
		padding: 32px 25px 38px;
	}

	.bro-single-info h1 {
		font-size: 42px;

		letter-spacing: -2px;
	}

	.bro-single-description {
		font-size: 15px;
	}

	.bro-single-order {
		width: 100%;
	}

	.bro-single-content {
		margin-top: 45px;
		padding-top: 40px;
	}

}

/*
 * emre
 * 
 * */
/* =========================================================
   WINGSBRO PRODUCT DETAIL
========================================================= */

.bro-detail-page {
	background:
		radial-gradient(circle at 85% 15%, rgba(241, 80, 14, .06), transparent 28%),
		#f7f5ef;
	color: #073c2d;
	padding-bottom: 80px;
}

.bro-detail-container {
	width: min(1420px, calc(100% - 60px));
	margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.bro-detail-breadcrumb {
	padding: 32px 0 15px;
}

.bro-detail-breadcrumb .bro-detail-container {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.bro-detail-breadcrumb a {
	color: #5f675f;
	text-decoration: none;
	transition: .2s ease;
}

.bro-detail-breadcrumb a:hover {
	color: #f1500e;
}

.bro-detail-breadcrumb span {
	color: #a7aaa5;
}

.bro-detail-breadcrumb strong {
	color: #f1500e;
}


/* =========================================================
   HERO
========================================================= */

.bro-detail-hero {
	padding: 20px 0 45px;
}

.bro-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
	gap: 65px;
	align-items: center;
}


/* IMAGE */

.bro-detail-media__main {
	position: relative;
	min-height: 560px;
	border-radius: 22px;
	overflow: hidden;
	background: #e8e5dc;
	box-shadow: 0 25px 70px rgba(0, 42, 30, .12);
}

.bro-detail-media__main img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	display: block;
	object-fit: cover;
}

.bro-detail-media__empty {
	min-height: 560px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(145deg, #073c2d, #002c20);
	color: #fff;
}

.bro-detail-media__empty strong {
	font-size: clamp(42px, 6vw, 80px);
	line-height: 1;
}

.bro-detail-media__empty span {
	margin-top: 12px;
	opacity: .7;
}


/* SUMMARY */

.bro-detail-summary {
	padding: 20px 10px;
}

.bro-detail-eyebrow {
	display: inline-block;
	color: #f1500e;
	font-weight: 900;
	font-size: 14px;
	letter-spacing: .5px;
	margin-bottom: 15px;
}

.bro-detail-summary h1 {
	margin: 0;
	max-width: 680px;
	color: #073c2d;
	font-size: clamp(52px, 5vw, 84px);
	line-height: .95;
	font-weight: 950;
	letter-spacing: -2px;
	text-transform: uppercase;
}

.bro-detail-title-line {
	width: 150px;
	height: 5px;
	margin: 25px 0 28px;
	background: #f1500e;
	border-radius: 20px;
}

.bro-detail-description {
	max-width: 650px;
	margin: 0;
	color: #353b36;
	font-size: 19px;
	line-height: 1.7;
}


/* ACTIONS */

.bro-detail-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 38px;
}

.bro-detail-order,
.bro-detail-back {
	min-height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 12px;
	padding: 0 28px;
	text-decoration: none;
	font-weight: 900;
	transition:
		transform .2s ease,
		box-shadow .2s ease,
		background .2s ease;
}

.bro-detail-order {
	background: #f1500e;
	color: #fff;
	box-shadow: 0 15px 35px rgba(241, 80, 14, .22);
}

.bro-detail-order:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(241, 80, 14, .3);
}

.bro-detail-back {
	border: 1px solid rgba(7, 60, 45, .25);
	color: #073c2d;
	background: transparent;
}

.bro-detail-back:hover {
	color: #073c2d;
	background: #fff;
	transform: translateY(-2px);
}


/* TRUST */

.bro-detail-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 45px;
	padding-top: 25px;
	border-top: 1px solid rgba(7, 60, 45, .12);
}

.bro-detail-trust > div {
	padding: 0 20px;
	border-right: 1px solid rgba(7, 60, 45, .12);
}

.bro-detail-trust > div:first-child {
	padding-left: 0;
}

.bro-detail-trust > div:last-child {
	border-right: 0;
}

.bro-detail-trust strong,
.bro-detail-trust span {
	display: block;
}

.bro-detail-trust strong {
	font-size: 14px;
	margin-bottom: 5px;
}

.bro-detail-trust span {
	color: #737973;
	font-size: 12px;
	line-height: 1.4;
}


/* =========================================================
   FACTS
========================================================= */

.bro-detail-facts {
	padding: 15px 0 35px;
}

.bro-detail-facts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #063c2e;
	color: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 42, 30, .13);
}

.bro-detail-fact {
	min-height: 150px;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 35px 30px;
	position: relative;
}

.bro-detail-fact:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 30px;
	bottom: 30px;
	width: 1px;
	background: rgba(255,255,255,.16);
}

.bro-detail-fact__icon {
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	font-size: 25px;
}

.bro-detail-fact__icon--orange {
	background: #f1500e;
}

.bro-detail-fact > div:last-child {
	min-width: 0;
}

.bro-detail-fact span,
.bro-detail-fact strong {
	display: block;
}

.bro-detail-fact span {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .4px;
	margin-bottom: 8px;
	color: rgba(255,255,255,.78);
}

.bro-detail-fact strong {
	font-size: 15px;
	line-height: 1.55;
	color: #fff;
}

.bro-detail-peppers {
	margin-top: 8px;
	font-size: 17px;
	letter-spacing: 2px;
}


/* =========================================================
   ABOUT
========================================================= */

.bro-detail-about {
	padding: 0 0 30px;
}

.bro-detail-about__box {
	display: grid;
	grid-template-columns: 1.25fr .55fr .8fr;
	gap: 55px;
	align-items: center;
	padding: 55px;
	background: #fff;
	border: 1px solid rgba(7, 60, 45, .08);
	border-radius: 18px;
	box-shadow: 0 15px 45px rgba(0, 42, 30, .06);
}

.bro-detail-section-label {
	display: block;
	color: #f1500e;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.bro-detail-about h2 {
	margin: 0;
	color: #073c2d;
	font-size: 32px;
	font-weight: 950;
	text-transform: uppercase;
}

.bro-detail-about__line {
	width: 70px;
	height: 4px;
	margin: 16px 0 22px;
	background: #f1500e;
	border-radius: 10px;
}

.bro-detail-about__content > p {
	max-width: 650px;
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: #414741;
}

.bro-detail-slogan {
	display: block;
	margin-top: 28px;
	font-size: 16px;
}

.bro-detail-slogan span {
	color: #f1500e;
}


/* STAMP */

.bro-detail-stamp {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bro-detail-stamp > div {
	width: 190px;
	height: 190px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 4px double #073c2d;
	border-radius: 50%;
	transform: rotate(-7deg);
	text-align: center;
	color: #073c2d;
}

.bro-detail-stamp small {
	font-size: 24px;
	font-weight: 900;
}

.bro-detail-stamp strong {
	font-size: 32px;
	line-height: 1;
}

.bro-detail-stamp span {
	font-size: 18px;
	font-weight: 900;
}


/* FEATURES */

.bro-detail-features {
	display: grid;
	gap: 22px;
}

.bro-detail-features > div {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bro-detail-features > div > span {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #073c2d;
	font-size: 18px;
}

.bro-detail-features p {
	margin: 0;
}

.bro-detail-features strong,
.bro-detail-features small {
	display: block;
}

.bro-detail-features strong {
	font-size: 14px;
	color: #073c2d;
	margin-bottom: 3px;
}

.bro-detail-features small {
	font-size: 12px;
	color: #707670;
}


/* =========================================================
   NOT FOUND
========================================================= */

.bro-detail-not-found {
	padding: 120px 30px;
	text-align: center;
}

.bro-detail-not-found a {
	display: inline-flex;
	margin-top: 20px;
	padding: 14px 25px;
	background: #f1500e;
	color: #fff;
	border-radius: 10px;
	text-decoration: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

	.bro-detail-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
	}

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

	.bro-detail-about__box {
		grid-template-columns: 1fr .6fr;
	}

	.bro-detail-features {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, 1fr);
	}

}


@media (max-width: 800px) {

	.bro-detail-container {
		width: min(100% - 30px, 1420px);
	}

	.bro-detail-breadcrumb {
		padding-top: 22px;
	}

	.bro-detail-hero__grid {
		grid-template-columns: 1fr;
	}

	.bro-detail-media__main,
	.bro-detail-media__main img,
	.bro-detail-media__empty {
		min-height: 420px;
	}

	.bro-detail-summary {
		padding: 10px 0;
	}

	.bro-detail-summary h1 {
		font-size: clamp(44px, 13vw, 68px);
	}

	.bro-detail-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.bro-detail-trust {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.bro-detail-trust > div {
		padding: 0;
		border: 0;
	}

	.bro-detail-facts__grid {
		grid-template-columns: 1fr;
	}

	.bro-detail-fact:not(:last-child)::after {
		left: 30px;
		right: 30px;
		top: auto;
		bottom: 0;
		width: auto;
		height: 1px;
	}

	.bro-detail-about__box {
		grid-template-columns: 1fr;
		padding: 35px 25px;
	}

	.bro-detail-stamp {
		justify-content: flex-start;
	}

	.bro-detail-features {
		grid-column: auto;
		grid-template-columns: 1fr;
	}

}


@media (max-width: 520px) {

	.bro-detail-page {
		padding-bottom: 40px;
	}

	.bro-detail-media__main,
	.bro-detail-media__main img,
	.bro-detail-media__empty {
		min-height: 330px;
	}

	.bro-detail-fact {
		padding: 28px 22px;
	}

	.bro-detail-about h2 {
		font-size: 27px;
	}

}















/* =========================================================
   WINGSBRO HEADER
========================================================= */

.bro-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	background: #063b29;
	color: #fff;
}

.bro-header *,
.bro-header *::before,
.bro-header *::after {
	box-sizing: border-box;
}

.bro-header-container {
	width: min(100% - 48px, 1500px);
	margin-inline: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.bro-header-top {
	position: relative;
	z-index: 10;
	height: 58px;
	background: #052f22;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bro-header-top__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bro-header-top__left,
.bro-header-top__right {
	display: flex;
	align-items: center;
	gap: 18px;
}

.bro-top-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: 0.25s ease;
}

.bro-top-link:hover {
	color: #f8b62d;
}

.bro-top-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #f5ad20;
}

.bro-top-divider {
	width: 1px;
	height: 22px;
	background: rgba(255, 255, 255, 0.2);
}

.bro-social-link {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 19px;
	border-radius: 50%;
	transition: 0.25s ease;
}

.bro-social-link:hover {
	color: #f8b62d;
	transform: translateY(-2px);
}

.bro-language {
	border: 0;
	background: transparent;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	font-weight: 700;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.bro-header-main {
	position: relative;
	min-height: 155px;
	background:
		radial-gradient(
			circle at 50% 0%,
			rgba(20, 102, 70, 0.38),
			transparent 55%
		),
		linear-gradient(
			135deg,
			#063b29 0%,
			#043222 100%
		);

	overflow: visible;
}

.bro-header-main__inner {
	min-height: 155px;
	display: flex;
	align-items: center;
	gap: 35px;
	position: relative;
	z-index: 5;
}


/* =========================================================
   LOGO
========================================================= */

.bro-header-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
}

.bro-header-logo img {
	width: 245px;
	height: auto;
	max-height: 105px;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}

.bro-header-logo:hover img {
	transform: scale(1.025);
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.bro-desktop-nav {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 2px;
	height: 112px;
}

.bro-nav-item {
	position: relative;
	display: flex;
	align-items: stretch;
}

.bro-nav-link {
	position: relative;
	min-width: 92px;
	padding: 16px 12px 17px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 9px;

	border-radius: 28px;

	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;

	transition:
		background 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.bro-nav-icon {
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;

	color: rgba(255, 255, 255, 0.85);

	font-size: 26px;

	transition:
		color 0.25s ease,
		transform 0.25s ease;
}

.bro-nav-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;

	white-space: nowrap;

	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}

.bro-nav-arrow {
	font-size: 17px;
	transition: transform 0.25s ease;
}

.bro-nav-item:hover .bro-nav-link {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	transform: translateY(-2px);
}

.bro-nav-item:hover .bro-nav-icon {
	color: #f8b62d;
	transform: translateY(-2px);
}


/* =========================================================
   ACTIVE NAVIGATION
========================================================= */

.bro-nav-item.is-active .bro-nav-link {
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.1),
			rgba(255, 255, 255, 0.045)
		);

	color: #fff;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bro-nav-item.is-active .bro-nav-icon {
	color: #f8b62d;
}

.bro-nav-active-dot {
	position: absolute;
	left: 50%;
	bottom: -4px;

	width: 9px;
	height: 9px;

	background: #f8b62d;
	border-radius: 50%;

	transform:
		translateX(-50%)
		scale(0);

	opacity: 0;

	box-shadow:
		0 0 0 4px rgba(248, 182, 45, 0.08);

	transition: 0.25s ease;
}

.bro-nav-item.is-active .bro-nav-active-dot {
	transform:
		translateX(-50%)
		scale(1);

	opacity: 1;
}


/* =========================================================
   DROPDOWN
========================================================= */

.bro-nav-dropdown {
	position: absolute;
	left: 50%;
	top: calc(100% - 4px);

	width: 225px;

	padding-top: 14px;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transform:
		translateX(-50%)
		translateY(10px);

	transition:
		opacity 0.22s ease,
		transform 0.22s ease,
		visibility 0.22s ease;

	z-index: 100;
}

.bro-nav-dropdown__inner {
	padding: 9px;

	background: #fff;

	border-radius: 16px;

	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.22);

	border: 1px solid rgba(0, 0, 0, 0.05);
}

.bro-nav-dropdown__link {
	display: block;

	padding: 12px 14px;

	border-radius: 10px;

	color: #26352e;

	text-decoration: none;

	font-size: 13px;
	font-weight: 600;

	transition: 0.2s ease;
}

.bro-nav-dropdown__link:hover,
.bro-nav-dropdown__link.is-active {
	background: #edf7f1;
	color: #063b29;
}

.bro-nav-item.has-dropdown:hover .bro-nav-dropdown,
.bro-nav-item.has-dropdown:focus-within .bro-nav-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;

	transform:
		translateX(-50%)
		translateY(0);
}

.bro-nav-item.has-dropdown:hover .bro-nav-arrow {
	transform: rotate(180deg);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.bro-header-actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 18px;
}


/* CART */

.bro-header-cart {
	position: relative;

	width: 48px;
	height: 55px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;

	text-decoration: none;

	font-size: 31px;

	transition: 0.25s ease;
}

.bro-header-cart:hover {
	color: #f8b62d;
	transform: translateY(-2px);
}

.bro-header-cart__count {
	position: absolute;
	top: 0;
	right: 0;

	width: 22px;
	height: 22px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #f8b62d;
	color: #073424;

	border-radius: 50%;

	font-size: 11px;
	font-weight: 900;

	box-shadow:
		0 3px 10px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   ORDER BUTTON
========================================================= */

.bro-order-button {
	position: relative;

	height: 62px;

	padding: 0 25px;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;

	border-radius: 13px;

	background:
		linear-gradient(
			135deg,
			#fffdf6,
			#f5efe3
		);

	color: #063b29;

	text-decoration: none;

	font-size: 15px;
	font-weight: 900;

	white-space: nowrap;

	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.23),
		0 0 25px rgba(248, 182, 45, 0.13);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.bro-order-button i {
	font-size: 22px;

	transition: transform 0.25s ease;
}

.bro-order-button:hover {
	transform: translateY(-3px);

	background: #f8b62d;

	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.25),
		0 0 30px rgba(248, 182, 45, 0.22);
}

.bro-order-button:hover i {
	transform: translateX(4px);
}


/* =========================================================
   DECORATIONS
========================================================= */

.bro-header-decoration {
	position: absolute;
	pointer-events: none;
	opacity: 0.08;
}

.bro-header-decoration--left {
	left: -60px;
	bottom: -80px;

	width: 320px;
	height: 220px;

	border: 2px solid #f8b62d;

	border-radius:
		70% 30% 60% 40%;
}

.bro-header-decoration--right {
	right: -40px;
	bottom: -100px;

	width: 280px;
	height: 220px;

	border: 2px solid rgba(255, 255, 255, 0.5);

	border-radius:
		40% 70% 30% 60%;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.bro-mobile-toggle {
	display: none;

	width: 48px;
	height: 48px;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	border: 1px solid rgba(255, 255, 255, 0.2);

	background: rgba(255, 255, 255, 0.06);

	color: #fff;

	font-size: 24px;

	cursor: pointer;
}

.bro-mobile-toggle .hidden {
	display: none;
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

.bro-mobile-overlay {
	position: fixed;
	inset: 0;

	z-index: 9998;

	background: rgba(0, 0, 0, 0.58);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition: 0.3s ease;
}


/*
Mevcut JS'in overlay üzerindeki Tailwind sınıflarını
değiştiriyorsa bunları da destekliyoruz.
*/

.bro-mobile-overlay:not(.pointer-events-none) {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.bro-mobile-nav {
	position: fixed;

	top: 0;
	right: 0;
	bottom: 0;

	z-index: 9999;

	width: min(90vw, 390px);

	background: #fff;

	color: #1d2923;

	display: flex;
	flex-direction: column;

	transform: translateX(100%);

	box-shadow:
		-20px 0 60px rgba(0, 0, 0, 0.2);

	transition: transform 0.3s ease;
}

.bro-mobile-nav:not(.translate-x-full) {
	transform: translateX(0);
}

.bro-mobile-nav__header {
	min-height: 90px;

	padding: 18px 20px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	background: #063b29;

	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bro-mobile-nav__header img {
	width: 165px;
	height: auto;
}

.bro-mobile-nav__close {
	width: 43px;
	height: 43px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	border: 1px solid rgba(255, 255, 255, 0.18);

	background: rgba(255, 255, 255, 0.06);

	color: #fff;

	font-size: 24px;

	cursor: pointer;
}

.bro-mobile-nav__menu {
	flex: 1;

	overflow-y: auto;

	padding: 20px;
}

.bro-mobile-menu-link {
	display: flex;
	align-items: center;
	gap: 13px;

	padding: 14px;

	margin-bottom: 5px;

	border-radius: 10px;

	color: #26352e;

	text-decoration: none;

	font-size: 14px;
	font-weight: 700;

	transition: 0.2s ease;
}

.bro-mobile-menu-link > i {
	width: 23px;

	color: #0b6847;

	font-size: 20px;
}

.bro-mobile-menu-link:hover,
.bro-mobile-menu-link.is-active {
	background: #edf7f1;
	color: #063b29;
}


/* MOBILE DROPDOWN */

.bro-mobile-dropdown {
	margin-bottom: 5px;

	border-radius: 10px;

	overflow: hidden;
}

.bro-mobile-dropdown summary {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 14px;

	cursor: pointer;

	font-size: 14px;
	font-weight: 700;

	list-style: none;
}

.bro-mobile-dropdown summary::-webkit-details-marker {
	display: none;
}

.bro-mobile-dropdown summary span {
	display: flex;
	align-items: center;
	gap: 13px;
}

.bro-mobile-dropdown summary span i {
	width: 23px;

	color: #0b6847;

	font-size: 20px;
}

.bro-mobile-dropdown[open] {
	background: #edf7f1;
}

.bro-mobile-dropdown__content {
	padding:
		0 13px 12px 50px;
}

.bro-mobile-dropdown__content a {
	display: block;

	padding: 9px 0;

	color: #4a5a52;

	text-decoration: none;

	font-size: 13px;
	font-weight: 600;
}


/* MOBILE FOOTER */

.bro-mobile-nav__footer {
	padding: 18px 20px;

	border-top: 1px solid #e8ece9;
}

.bro-mobile-order {
	min-height: 52px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	border-radius: 10px;

	background: #063b29;

	color: #fff;

	text-decoration: none;

	font-size: 14px;
	font-weight: 900;
}


/* =========================================================
   RESPONSIVE - MEDIUM DESKTOP
========================================================= */

@media (max-width: 1350px) {

	.bro-header-container {
		width: min(100% - 32px, 1400px);
	}

	.bro-header-logo img {
		width: 205px;
	}

	.bro-header-main__inner {
		gap: 20px;
	}

	.bro-desktop-nav {
		gap: 0;
	}

	.bro-nav-link {
		min-width: 78px;
		padding-inline: 8px;
	}

	.bro-nav-label {
		font-size: 11px;
	}

	.bro-nav-icon {
		font-size: 23px;
	}

	.bro-order-button {
		padding-inline: 18px;
	}

}


/* =========================================================
   RESPONSIVE - TABLET / MOBILE
========================================================= */

@media (max-width: 1100px) {

	.bro-header-top {
		display: none;
	}

	.bro-header-main,
	.bro-header-main__inner {
		min-height: 88px;
	}

	.bro-desktop-nav {
		display: none;
	}

	.bro-header-main__inner {
		justify-content: space-between;
	}

	.bro-header-logo img {
		width: 180px;
		max-height: 65px;
	}

	.bro-header-cart {
		display: none;
	}

	.bro-order-button {
		height: 48px;

		padding-inline: 17px;

		font-size: 12px;
	}

	.bro-mobile-toggle {
		display: flex;
	}

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

	.bro-header-container {
		width: calc(100% - 28px);
	}

	.bro-header-logo img {
		width: 145px;
	}

	.bro-order-button {
		display: none;
	}

	.bro-header-actions {
		gap: 8px;
	}

}