/* =========================================================
   Fast Kitchen — layout & brand (fixes broken CDN append)
   ========================================================= */

:root {
  --fk-red: #e30613;
  --fk-red-dark: #b80510;
  --fk-green: #00823c;
  --fk-green-soft: #66b966;
  --fk-yellow: #fed600;
  --fk-yellow-deep: #ebc01c;
  --fk-dark: #1a1a1a;
  --fk-cream: #fef9ea;
  --fk-text: #222;
}

/* ---------- Header ---------- */
.kitchen-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--fk-red);
  padding: 8px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.kitchen-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.kitchen-header .header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  min-height: 64px;
}

.kitchen-header .header-nav {
  justify-self: start;
  min-width: 0;
}

.kitchen-header .nn_navbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kitchen-header .nn_navbar > li {
  display: block;
  float: none;
  flex: 0 0 auto;
}

.kitchen-header .nn_navbar > li > a {
  display: block;
  padding: 8px 9px;
  color: #fff;
  font-family: Teko, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.kitchen-header .nn_navbar > li > a:hover,
.kitchen-header .nn_navbar > li.active > a {
  color: var(--fk-yellow);
  background: transparent;
  text-decoration: none;
}

.kitchen-header .logo_head {
  justify-self: center;
  grid-column: 2;
  text-align: center;
  float: none;
  padding: 0;
}

.kitchen-header .logo_head a {
  display: inline-block;
  line-height: 0;
}

.kitchen-header .pizza_logo,
.kitchen-header .logo_head img {
  display: block;
  max-height: 56px;
  width: auto;
  margin: 0 auto;
}

.kitchen-header .online {
  justify-self: end;
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.kitchen-header .online > a {
  display: inline-block;
  background: #fff;
  color: var(--fk-red) !important;
  padding: 10px 16px;
  border-radius: 30px;
  font-family: Teko, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.kitchen-header .online > a:hover {
  background: var(--fk-yellow);
  color: var(--fk-dark) !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.kitchen-header .nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  margin: 0;
}

.kitchen-header .nav-toggle .icon-bar {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.home-banner-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(227, 6, 19, 0.92) 0%, rgba(184, 5, 16, 0.88) 45%, rgba(0, 0, 0, 0.55) 100%),
    url('/images/bg/bg1.webp') center / cover no-repeat;
  color: #fff;
}

.home-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 520px;
  padding: 50px 0;
  position: relative;
}

.home-banner .content {
  position: relative;
  z-index: 2;
  flex: 1 1 48%;
  color: #fff;
  text-align: left;
  padding: 20px 0;
  width: auto;
}

.home-banner .content .head {
  font-family: Teko, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  color: var(--fk-yellow);
}

.home-banner .content .title {
  font-family: Teko, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 24px;
  text-transform: uppercase;
  color: #fff;
}

.home-banner .banner-offer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.home-banner .banner-offer .list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}

.home-banner .banner-offer .list li {
  font-family: Teko, sans-serif;
  font-size: 22px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.home-banner .banner-offer .total {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
}

.home-banner .banner-offer .total span {
  display: block;
  font-size: 14px;
  opacity: 0.9;
}

.home-banner .banner-offer .total b {
  display: block;
  font-family: Teko, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.home-banner .add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--fk-yellow);
  color: var(--fk-dark) !important;
  text-decoration: none;
  font-size: 22px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-banner .add-button:hover {
  transform: scale(1.06);
  background: #fff;
  color: var(--fk-red) !important;
  text-decoration: none;
}

.home-banner .image {
  position: relative;
  inset: auto;
  z-index: 2;
  flex: 1 1 48%;
  text-align: center;
}

.home-banner .image img {
  width: min(100%, 520px);
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
  animation: fk-float 4.5s ease-in-out infinite;
}

@keyframes fk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Shared section bits ---------- */
.title-border {
  display: inline-block;
  margin: 8px 0 16px;
}

.title-border img {
  max-height: 18px;
  width: auto;
}

.more-button {
  display: inline-block;
  background: var(--fk-red);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: Teko, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.more-button:hover {
  background: var(--fk-red-dark);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-2px);
}

.section-two .content .head,
.section-three .head,
.section-four .head,
.gallery-page .head,
.branches-page .head,
.contact-page .head,
.legal-page .head {
  font-family: Teko, sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fk-green);
}

.section-two .content .title,
.section-three .title,
.section-four .title,
.gallery-page .title,
.branches-page .title,
.contact-page .title,
.legal-page .title {
  font-family: Teko, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-two .image img,
.section-four .image img {
  max-width: 100%;
  height: auto;
}

/* Featured burgers */
.section-three .section-block {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 18px 10px;
  margin-bottom: 24px;
  min-height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section-three .section-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.section-three .block-title {
  font-family: Teko, sans-serif;
  font-size: 28px;
  margin: 0 0 10px;
}

.section-three .block-text {
  min-height: 88px;
  opacity: 0.92;
}

.section-three .section-block .image {
  display: block;
  margin-top: 10px;
}

.section-three .section-block .image img {
  max-width: 100%;
  height: auto;
}

.section-three .more-button {
  margin-top: 10px;
  background: var(--fk-yellow);
  color: var(--fk-dark) !important;
}

.section-four .sub-head {
  font-family: Teko, sans-serif;
  font-size: 26px;
  margin: 18px 0 8px;
}

.section-four .text {
  margin-bottom: 10px;
}

/* Order CTA */
.section-five .head {
  font-family: Teko, sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--fk-yellow);
}

.section-five .title {
  font-family: Teko, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.95;
  margin: 12px 0 18px;
}

.section-five .image {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}

.section-five .image img {
  max-width: 100%;
  height: auto;
}

.section-five .image.one img {
  max-width: 120px;
}

.section-five .image.two img {
  max-width: 280px;
}

/* Steps */
.section-ten {
  padding: 80px 0;
  background: var(--fk-cream);
  text-align: center;
}

.section-ten .head-icon img {
  max-height: 56px;
}

.section-ten .title {
  font-family: Teko, sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  margin: 12px 0 36px;
  text-transform: uppercase;
}

.section-ten .step {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.section-ten .step > li {
  flex: 1 1 240px;
  max-width: 320px;
}

.section-ten .step .block {
  border-radius: 16px;
  padding: 28px 22px;
  min-height: 220px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 130, 60, 0.18);
}

.section-ten .step .icon img {
  max-height: 48px;
  margin-bottom: 12px;
}

.section-ten .block-head {
  font-family: Teko, sans-serif;
  font-size: 28px;
  margin: 0 0 10px;
}

/* Team / welcome / stores */
.section-team {
  padding: 80px 0;
  background: #fff;
}

.section-team .team-block {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.section-team .team-block > .image {
  flex: 1 1 320px;
  display: block;
  margin: 0;
}

.section-team .team-block > .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.section-team .team-block .content {
  flex: 1 1 360px;
  padding: 40px 36px;
}

.section-team .head {
  font-family: Teko, sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}

.section-team .title {
  font-family: Teko, sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 8px 0 16px;
}

.section-team .name {
  font-family: 'Leckerli One', cursive;
  font-size: 28px;
  margin-top: 10px;
}

.section-store {
  padding: 80px 0;
  background: url('/images/bg/pattern-3.webp') repeat center;
}

.section-store .head {
  font-family: Teko, sans-serif;
  font-size: 22px;
  color: var(--fk-green);
  letter-spacing: 0.05em;
}

.section-store .title {
  font-family: Teko, sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  margin: 10px 0 18px;
}

.section-store .images-block {
  position: relative;
  min-height: 280px;
}

.section-store .images-block .image {
  display: inline-block;
}

.section-store .images-block .image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.section-store .images-block .image.one {
  width: 58%;
}

.section-store .images-block .image.two {
  width: 48%;
  margin-left: -12%;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.section-seven {
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.section-seven::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 90, 40, 0.72);
}

.section-seven .container {
  position: relative;
  z-index: 1;
}

.section-seven .title {
  font-family: Teko, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.section-seven .text {
  font-size: 18px;
  opacity: 0.95;
}

.section-map {
  padding: 60px 0 80px;
  background: #fff;
}

.location-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.location-list .location {
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  min-height: 100%;
}

.location-list .address {
  padding: 20px 20px 12px;
}

.location-list .tab-head {
  font-family: Teko, sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.location-list .tab-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.location-list .tab-row .icon {
  color: var(--fk-green);
  margin-top: 3px;
}

.location-list .map {
  margin-top: auto;
}

.location-list .map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.kitchen-footer {
  position: relative;
  background:
    linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  color: #fff;
  margin-top: 0;
}

.kitchen-footer .footer-top {
  padding: 56px 0 40px;
  border-top: 4px solid var(--fk-red);
}

.kitchen-footer .footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kitchen-footer .footer-logo {
  display: inline-block;
  line-height: 0;
}

.kitchen-footer .footer-logo img {
  display: block;
  max-height: 64px;
  width: auto;
}

.kitchen-footer .footer-tagline {
  margin: 0;
  flex: 1 1 180px;
  font-family: Teko, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fk-yellow);
}

.kitchen-footer .footer-order {
  display: inline-block;
  margin-left: auto;
  background: var(--fk-red);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 30px;
  font-family: Teko, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.kitchen-footer .footer-order:hover {
  background: var(--fk-yellow);
  color: var(--fk-dark) !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.kitchen-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 28px 40px;
}

.kitchen-footer .footer-title {
  margin: 0 0 16px;
  font-family: Teko, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.kitchen-footer .footer-list,
.kitchen-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kitchen-footer .footer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.kitchen-footer .footer-list .fa {
  width: 18px;
  margin-top: 3px;
  color: var(--fk-yellow);
  text-align: center;
}

.kitchen-footer .footer-list a,
.kitchen-footer .footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.kitchen-footer .footer-list a:hover,
.kitchen-footer .footer-links a:hover {
  color: var(--fk-yellow);
}

.kitchen-footer .footer-list strong {
  color: #fff;
  font-family: Teko, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.kitchen-footer .footer-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.5;
}

.kitchen-footer .footer-links li {
  margin-bottom: 10px;
}

.kitchen-footer .footer-links a {
  font-family: Teko, sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.kitchen-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.kitchen-footer .footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.kitchen-footer .footer-social a:hover {
  background: var(--fk-red);
  border-color: var(--fk-red);
  color: #fff;
}

.kitchen-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  padding: 16px 0;
}

.kitchen-footer .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

.kitchen-footer .copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.kitchen-footer .footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.kitchen-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
}

.kitchen-footer .footer-legal a:hover {
  color: var(--fk-yellow);
}

@media (max-width: 991px) {
  .kitchen-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kitchen-footer .footer-order {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .kitchen-footer .footer-top {
    padding: 40px 0 28px;
  }

  .kitchen-footer .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .kitchen-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kitchen-footer .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Menu page ---------- */
.menu-page {
  padding: 56px 0 48px;
  background: var(--fk-cream);
}

.menu-page,
.menu-burgers,
.menu-extras {
  font-size: 16px;
  color: var(--fk-text);
}

.menu-page-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.menu-eyebrow {
  margin: 0;
  font-family: Teko, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fk-green);
}

.menu-page-title {
  margin: 0 0 12px;
  font-family: Teko, sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--fk-dark);
}

.menu-page-lead {
  margin: 0;
  color: #555;
  line-height: 1.55;
}

.menu-combo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-combo-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  min-height: 100%;
}

.menu-combo-copy {
  padding: 20px 18px 12px;
}

.menu-combo-copy h2 {
  margin: 0 0 8px;
  font-family: Teko, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--fk-dark);
}

.menu-combo-copy p {
  margin: 0;
  color: #555;
  line-height: 1.45;
  min-height: 3.2em;
}

.menu-combo-media {
  margin-top: auto;
}

.menu-combo-media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-burgers {
  padding: 56px 0;
  background: url('/images/bg/pattern-3.webp') repeat center;
}

.menu-burger-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-burger-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.menu-burger-card img {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
}

.menu-burger-card h3 {
  margin: 0 0 4px;
  font-family: Teko, sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fk-dark);
}

.menu-burger-card p {
  margin: 0;
  color: #555;
  line-height: 1.4;
}

.menu-extras {
  padding: 48px 0 70px;
  background: #fff;
}

.menu-extras-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}

.menu-list-panel,
.menu-feature-panel {
  border-radius: 16px;
  min-height: 320px;
  padding: 28px;
  background-size: cover;
  background-position: center;
  background-color: #f4f4f4;
}

.menu-list-panel {
  background-color: rgba(255, 255, 255, 0.94);
  background-blend-mode: lighten;
}

.menu-list-panel.is-drinks {
  background-color: #fff;
  background-blend-mode: soft-light;
}

.menu-list-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  height: 100%;
}

.menu-list-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list-cols li {
  display: block;
  float: none;
  margin: 0 0 14px;
  padding: 0 0 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.menu-list-cols strong {
  display: block;
  font-family: Teko, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fk-dark);
}

.menu-list-cols span {
  display: block;
  margin-top: 2px;
  color: #555;
  line-height: 1.4;
}

.menu-feature-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.menu-feature-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.6));
}

.menu-feature-panel h2,
.menu-feature-panel p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.menu-feature-panel h2 {
  margin: 0 0 8px;
  font-family: Teko, sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-feature-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .menu-combo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .menu-combo-grid,
  .menu-burger-grid,
  .menu-list-cols {
    grid-template-columns: 1fr;
  }

  .menu-burger-card {
    align-items: flex-start;
  }
}

/* ---------- Inner pages ---------- */
.gallery-page,
.branches-page,
.contact-page,
.legal-page {
  padding: 60px 0 80px;
  background: #fff;
}

.gallery-grid {
  margin-top: 30px;
}

.gallery-item {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.contact-page {
  background: #faf7f2;
}

.contact-page .nn_col,
.contact-page {
  font-size: 16px;
  text-align: left;
  color: var(--fk-text);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 36px 48px;
  align-items: start;
}

.contact-aside {
  color: var(--fk-text);
}

.contact-eyebrow {
  margin: 0;
  font-family: Teko, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fk-green);
}

.contact-heading {
  margin: 0 0 12px;
  font-family: Teko, sans-serif;
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--fk-dark);
}

.contact-lead {
  margin: 0 0 28px;
  max-width: 34ch;
  color: #555;
  line-height: 1.55;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--fk-red);
  border-radius: 12px;
  text-decoration: none;
  color: var(--fk-text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-left-color: var(--fk-green);
  text-decoration: none;
  color: var(--fk-text);
}

.contact-card-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 130, 60, 0.1);
  color: var(--fk-green);
  font-size: 18px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
  font-size: 16px;
  color: var(--fk-text);
}

.contact-card-label {
  font-family: Teko, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #777;
}

.contact-card-value {
  font-size: 17px;
  line-height: 1.4;
  color: var(--fk-dark);
  word-break: break-word;
}

.contact-card-value strong {
  font-family: Teko, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fk-green);
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  margin: 0 0 8px;
  font-family: Teko, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fk-green);
}

.contact-form-text {
  margin: 0 0 22px;
  color: #666;
}

.contact-form .form-control {
  border-radius: 8px;
  border-color: #ddd;
  box-shadow: none;
  margin-bottom: 14px;
  min-height: 48px;
  color: var(--fk-dark);
  background: #fff;
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-branches-head {
  text-align: center;
  margin-bottom: 28px;
}

.contact-branches-head h2 {
  margin: 0 0 8px;
  font-family: Teko, sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fk-dark);
}

.contact-branches-head p {
  margin: 0;
  color: #666;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.legal-content {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: left;
  line-height: 1.75;
  color: #333;
}

.legal-content h3 {
  margin-top: 28px;
  color: var(--fk-green);
  font-family: Teko, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-meta {
  margin-top: 32px;
  color: #777;
  font-size: 14px;
}

.alert-success {
  background: #e8f7ee;
  border: 1px solid #b7e0c5;
  color: #0b6b36;
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Cookie */
.cookie-box {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  max-width: 640px;
  margin: 0 auto;
  background: #111;
  color: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-box.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-box .title {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.cookie-box .text a {
  color: var(--fk-green-soft);
  text-decoration: underline;
}

.cookie-accept {
  margin-top: 12px;
  background: var(--fk-green);
  color: #fff;
  border: 0;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-accept:hover {
  background: #00662f;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .kitchen-header .nn_navbar > li > a {
    padding: 8px 7px;
    font-size: 15px;
  }

  .kitchen-header .online > a {
    padding: 9px 12px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .kitchen-header .header-bar {
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
    column-gap: 10px;
  }

  .kitchen-header .header-nav {
    grid-column: 1;
    justify-self: start;
    position: relative;
  }

  .kitchen-header .logo_head {
    grid-column: 2;
  }

  .kitchen-header .online {
    grid-column: 3;
  }

  .kitchen-header .nav-toggle {
    display: inline-block;
  }

  .kitchen-header .nn_navbar {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    flex-direction: column;
    flex-wrap: nowrap;
    background: var(--fk-red-dark);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    z-index: 20;
  }

  .kitchen-header .nn_navbar.is-open {
    display: flex;
  }

  .kitchen-header .nn_navbar > li > a {
    display: block;
    padding: 12px 14px;
    font-size: 18px;
  }

  .home-banner {
    flex-direction: column;
    min-height: 0;
    padding: 40px 0;
    text-align: center;
  }

  .home-banner .content {
    text-align: center;
  }

  .home-banner .banner-offer {
    justify-content: center;
  }

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

  .section-store .images-block .image.one,
  .section-store .images-block .image.two {
    width: 100%;
    margin: 0 0 16px;
  }
}

@media (max-width: 767px) {
  .kitchen-header .online > a {
    padding: 10px 14px;
    font-size: 16px;
  }

  .kitchen-header .pizza_logo,
  .kitchen-header .logo_head img {
    max-height: 58px;
  }

  .gallery-item img {
    height: 180px;
  }

  .contact-form-wrap {
    margin-top: 30px;
  }

}
