/* Approved menu photography: shared hero art, unchanged mobile bestseller. */
#home-hero {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  background: #f6f2ed;
}

html[data-theme='dark'] #home-hero {
  background: #1b1917;
}

#home-hero::after {
  display: none;
}

#home-hero .hero-picture {
  position: relative;
  inset: auto;
  width: 100%;
  height: clamp(240px, 73vw, 340px);
  margin-top: 14px;
}

#home-hero .hero-photo {
  object-fit: contain;
  object-position: center;
  padding: 12px 22px 0;
  filter: drop-shadow(0 18px 14px rgb(45 25 10 / 12%));
}

#home-hero .hero-copy {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 12px 24px 30px;
  transform: none;
}

#home-hero .hero-copy h1 {
  font-size: clamp(46px, 12.5vw, 62px);
  line-height: .92;
}

#home-hero .hero-kicker {
  margin-bottom: 10px;
}

#home-hero .hero-kicker,
#home-hero .hero-copy h1 span {
  color: var(--client-text);
  text-shadow: none;
}

#home-hero .hero-copy p {
  color: var(--client-muted);
  text-shadow: none;
  margin: 14px 0 20px;
  line-height: 1.5;
}

#popular .product-card__media {
  position: relative;
  background: #f6f2ed;
}

html[data-theme='dark'] #popular .product-card__media {
  background: #24211e;
}

#popular .product-card__media img {
  object-fit: contain;
  object-position: center;
  padding: 28px 24px 12px;
  filter: drop-shadow(0 12px 10px rgb(45 25 10 / 10%));
}

.menu-photo-hit-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 100px;
  background: #e92822;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
}

.kiosk-start__visual {
  background: #f6f2ed;
  box-shadow: none;
}

.kiosk-start__visual img {
  padding: clamp(16px, 3vw, 40px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 16px rgb(45 25 10 / 12%));
}

@media (min-width: 1024px) {
  #home-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    height: clamp(500px, 58vh, 620px);
    padding: 28px clamp(44px, 5vw, 82px);
    gap: 12px;
  }

  #home-hero .hero-picture {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    margin: 0;
  }

  #home-hero .hero-photo {
    padding: 12px 0;
  }

  #home-hero .hero-copy {
    grid-column: 1;
    grid-row: 1;
    max-width: 500px;
    margin: 0;
    padding: 0;
  }

  #home-hero .hero-copy h1 {
    font-size: clamp(64px, 6vw, 88px);
  }

  #home-hero .hero-copy p {
    margin: 20px 0 26px;
  }

  #popular .product-card__media img {
    padding: 30px;
  }

  .menu-photo-hit-label {
    top: 22px;
    left: 22px;
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  #popular .product-card__media img {
    padding: 0;
    object-fit: cover;
    object-position: center 27%;
    filter: none;
  }

  .menu-photo-hit-label {
    display: none;
  }
}

#popular .product-card.is-unavailable .product-card__media img {
  filter: saturate(.55);
}
