/* ═══════════════════════════════════════════════════
   item_detail.css
═══════════════════════════════════════════════════ */

.item-hero {
  background-color: #fff;
  background-image: radial-gradient(circle, rgba(0,0,0,.13) 1.5px, transparent 1.6px);
  background-size: 14px 14px;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
}
.item-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Image */
.item-hero__img {
  position: relative;
  border: 3px solid #2a2a2a;
  overflow: hidden;
}
.item-hero__img img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; display: block;
}
.item-hero__emoji {
  font-size: 10rem;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  background: repeating-linear-gradient(45deg,#1c1c1c 0,#1c1c1c 10px,#161616 10px,#161616 20px);
}
.item-hero__img .badge {
  position: absolute; top: 16px; right: 16px;
  font-size: .9rem; padding: 4px 14px;
}

/* Info — text sits directly on the white halftone, so colors are dark for legibility. */
.item-category {
  font-family: var(--font-head);
  font-size: .9rem; letter-spacing: 3px;
  color: #555; margin-bottom: 1rem;
}
.item-category a { color: #555; transition: color .2s; }
.item-category a:hover { color: var(--red); }

.item-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px; line-height: 1;
  color: var(--black); margin-bottom: 1.2rem;
}

.item-desc {
  font-size: 1rem; line-height: 1.7;
  color: #333; margin-bottom: 1rem;
}
.item-full-desc {
  font-size: .95rem; line-height: 1.8;
  color: #555; margin-bottom: 1.5rem;
  border-left: 4px solid var(--red);
  padding-left: 1rem;
}

/* Meta boxes */
.item-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.item-meta__box {
  background: #161616; border: 2px solid #2a2a2a;
  border-bottom: 3px solid var(--red);
  padding: .8rem 1.2rem; text-align: center;
  min-width: 100px;
}
.item-meta__icon { font-size: 1.5rem; display: block; }
.item-meta__val {
  font-family: var(--font-head); font-size: 1.3rem;
  color: var(--yellow); display: block;
}
.item-meta__lbl { font-size: .7rem; color: #555; letter-spacing: 1px; text-transform: uppercase; }

/* Price */
.item-price-row { margin-bottom: 1.5rem; }
.item-price {
  font-family: var(--font-display);
  font-size: 3rem; color: var(--red); letter-spacing: 2px;
}

/* Ingredients */
.item-ingredients {
  background: #161616; border: 2px solid #2a2a2a;
  border-left: 5px solid var(--yellow);
  padding: 1.2rem 1.5rem; margin-bottom: 2rem;
}
.item-ingredients h4 {
  font-family: var(--font-head); font-size: 1rem;
  letter-spacing: 2px; color: var(--yellow); margin-bottom: .5rem;
}
.item-ingredients p { font-size: .9rem; color: #888; line-height: 1.6; }

/* Actions */
.item-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Related — yellow pop-art halftone, matches the page banners (findus / menu / about). */
.related-section {
  background-color: #E6A800;
  background-image:
    radial-gradient(circle, rgba(200,136,0,.85) 6px, transparent 6.5px),
    radial-gradient(circle, rgba(200,136,0,.85) 6px, transparent 6.5px);
  background-size: 32px 64px, 32px 64px;
  background-position: 0 0, 16px 32px;
  padding: 2.5rem 0;
}
.related-section .section-tag   { color: var(--red); }
.related-section .section-title { color: var(--black); text-shadow: 4px 4px 0 var(--red); }
.related-section .section-title .rd { color: var(--black); }

/* Responsive */
@media (max-width: 900px) {
  .item-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
}