.corner-copy .eyebrow {
  background: #f5e2cc;
  color: #8a4d19;
}

.corner-btn-primary {
  background: #c96d1d;
  color: #fff;
  border: none;
}

.corner-btn-primary:hover {
  background: #a95813;
}

.corner-btn-secondary {
  background: #f4eadf;
  color: #5c3514;
  border: 1px solid #e6d2bc;
}

.corner-btn-secondary:hover {
  background: #eadbcb;
}

/* HERO KÉP JAVÍTÁS - ALAP */
.hero-media {
  min-height: 260px;
  background: #f5f1ea;
}

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

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.food-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.food-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.food-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.food-body h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.food-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.food-price {
  font-weight: 800;
  font-size: 1.05rem;
  color: #8a4d19;
  margin-top: auto;
}

.daily-special {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.special-copy,
.special-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.special-copy {
  padding: 24px;
}

.special-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5e2cc;
  color: #8a4d19;
  font-weight: 700;
  margin-bottom: 14px;
}

.special-copy h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.special-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}

.special-points {
  display: grid;
  gap: 10px;
}

.special-point {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee2d5;
}

.special-point:last-child {
  border-bottom: none;
}

.special-side img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.slides {
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: white;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.slider-dots {
  display: none;
}

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

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.info-body {
  padding: 22px;
}

.info-body h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.info-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee2d5;
}

.info-line:last-child {
  border-bottom: none;
}

.menu-image-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.menu-image-card img {
  display: block;
  max-width: 100%;
  height: auto;
}

.map-card-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.map-card {
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.map-card .contact-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-card h3,
.map-card .map-text {
  width: 100%;
  text-align: left;
}

.map-embed {
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  margin: 0 auto;
}

.map-embed iframe {
  display: block;
  width: 100%;
}

.map-actions {
  width: 100%;
  max-width: 700px;
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
}

/* DESKTOP / NAGY KÉPERNYŐ */
@media (min-width: 769px) {
  .hero {
    grid-template-columns: 1.45fr 0.95fr;
    align-items: stretch;
  }

  /* DUPLIKÁLT HERO KÉP FELÜLÍRÁS DESKTOPRA - SZÁNDÉKOSAN MEGMARAD,
     MERT PC-N MÁS KÉPVISELKEDÉS KELL, MINT ALAPBAN */
  .hero-media {
    min-height: 420px;
    display: block;
    padding: 0;
    box-sizing: border-box;
    background: #f5f1ea;
  }

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

  .food-card img {
    height: 320px;
    object-fit: cover;
    object-position: center;
    background: #f5f1ea;
  }
  #etlap .section-card {
    padding-left: 150px;
    padding-right: 150px;
  }
}

/*
PC / TABLET BLOKK 900PX-RE
KIKOMMENTELVE, MERT AZT KÉRTED, HOGY LEHETŐLEG CSAK
MIN-WIDTH 768/769 ÉS MAX-WIDTH 768/769 LOGIKA MARADJON.

@media (max-width: 900px) {
  .food-grid {
    grid-template-columns: 1fr;
  }

  .daily-special {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
*/

/* MOBIL */
@media (max-width: 768px) {
  .corner-copy {
    text-align: center;
    align-items: center;
  }

  .corner-copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .corner-copy h1 {
    text-align: center;
    width: 100%;
  }

  .corner-copy .lead {
    text-align: center;
  }

  .corner-copy .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .corner-copy .back-link {
    text-align: center;
  }

  /* DUPLIKÁLT HERO KÉP FELÜLÍRÁS MOBILRA - SZÁNDÉKOSAN MEGMARAD,
     MERT MOBILON JÓ A MOSTANI MEGJELENÉS */
  .hero-media {
    min-height: 220px;
  }

  .hero-media img {
    object-fit: contain;
    object-position: center;
  }

  .slide img {
    height: 240px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  #ajanlatok .section-head,
  #ajanlatok .section-head > div,
  #ajanlatok .section-head h2,
  #napi .section-head,
  #napi .section-head > div,
  #napi .section-head h2,
  #etlap .section-head,
  #etlap .section-head > div,
  #etlap .section-head h2,
  #galeria .section-head,
  #galeria .section-head > div,
  #galeria .section-head h2,
  #info .section-head,
  #info .section-head > div,
  #info .section-head h2 {
    width: 100%;
    text-align: center !important;
    justify-content: center;
  }

  #ajanlatok .section-head > div,
  #napi .section-head > div,
  #etlap .section-head > div,
  #galeria .section-head > div,
  #info .section-head > div {
    display: block;
  }

  #ajanlatok .section-head h2,
  #napi .section-head h2,
  #etlap .section-head h2,
  #galeria .section-head h2,
  #info .section-head h2 {
    margin: 0 auto;
  }

  .food-body,
  .special-copy,
  .info-body {
    text-align: center;
  }

  .special-label {
    margin-left: auto;
    margin-right: auto;
  }

  .info-line {
    justify-content: center;
    text-align: center;
  }

  .food-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .daily-special {
    grid-template-columns: 1fr;
  }

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

  .food-card {
    width: 100%;
  }

  .food-card img {
    height: 220px;
  }

  .food-body h3 {
    font-size: 1.05rem;
  }

  .food-body p {
    font-size: 0.98rem;
    line-height: 1.5;
  }
  
  #etlap .section-head > div {
    width: 100% !important;
    display: block !important;
  }

  #etlap .etlap-title {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  .info-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.info-line > span {
  white-space: nowrap;
}