/* ═══════════════════════════════════════════
   GSLink — Detail Page Styles
   ═══════════════════════════════════════════ */

/* ── HERO BANNER ── */
.detail-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.detail-hero__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-hero__icon svg {
  width: 180px;
  height: 180px;
  stroke: rgba(255,255,255,.12);
}

.detail-hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
}

.detail-hero__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.detail-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
}
.detail-badge--halal { background: #2DB84B; color: #fff; }
.detail-badge--cat   { background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(4px); }

.detail-hero__name {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.detail-hero__cuisine {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0;
}


/* ── SECTIONS ── */
.detail-section {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E0E6EF;
  padding: 24px;
}

.detail-section__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #9AAABB;
  margin-bottom: 14px;
}


/* ── MENU ── */
.menu-group__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #E0E6EF;
  margin-bottom: 0;
}

.menu-group__list {
  border: 1px solid #E0E6EF;
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.menu-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid #F0F4F8;
  transition: background .12s;
}
.menu-row:last-child { border-bottom: none; }
.menu-row:hover { background: #FAFBFC; }

.menu-row__info { flex: 1; }
.menu-row__name {
  font-size: 14px;
  font-weight: 600;
  color: #1A2332;
  margin-bottom: 2px;
}
.menu-row__desc {
  font-size: 12px;
  color: #9AAABB;
  margin: 0;
  line-height: 1.5;
}
.menu-row__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-d);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ── SIDEBAR ── */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 88px;
}

.maps-cta {
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.maps-cta:hover { background: var(--navy-2); color: #fff; }

.info-card {
  background: #fff;
  border: 1px solid #E0E6EF;
  border-radius: 16px;
  padding: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #F0F4F8;
}

.info-row__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F2F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.info-row__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #9AAABB;
  margin-bottom: 3px;
}
.info-row__value {
  font-size: 13px;
  font-weight: 500;
  color: #1A2332;
  margin: 0;
  line-height: 1.5;
}

/* Dietary tags */
.dietary-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

/* Price */
.price-display {
  font-size: 20px;
  line-height: 1;
}


/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .detail-sidebar { position: static; }
  .detail-hero { height: 260px; }
  .detail-hero__icon svg { width: 130px; height: 130px; }
}

@media (max-width: 576px) {
  .detail-hero { height: 220px; }
  .detail-hero__name { font-size: 22px; }
}
