.hk-featured-menu-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #15110f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hk-featured-menu-intro {
  max-width: 700px;
  margin: 12px auto 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.hk-featured-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.hk-featured-menu-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #1b1b1b;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hk-featured-menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 18, 48, 0.65);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hk-featured-menu-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #262626;
}

.hk-featured-menu-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hk-featured-menu-card:hover .hk-featured-menu-image img { transform: scale(1.045); }

.hk-featured-menu-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 42px;
}

.hk-featured-stock,
.hk-featured-badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.32);
}

.hk-featured-stock { right: 14px; background: #278544; }
.hk-featured-stock.out { background: #6f7378; }
.hk-featured-badge { left: 14px; background: #c41230; }

.hk-featured-menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.hk-featured-menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.hk-featured-menu-tags span {
  border: 1px solid rgba(201, 150, 58, 0.38);
  border-radius: 999px;
  padding: 4px 8px;
  color: #e7bb68;
  background: rgba(201, 150, 58, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hk-featured-menu-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--hk-font-display);
  font-size: 23px;
  line-height: 1.25;
}

.hk-featured-menu-body > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hk-featured-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hk-featured-menu-footer strong { color: #fff; font-size: 20px; }

.hk-featured-menu-link {
  border-radius: 9px;
  padding: 10px 13px;
  color: #fff;
  background: #c41230;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hk-featured-menu-link:hover { background: #a90f29; transform: translateY(-1px); }
.hk-featured-menu-all { margin-top: 36px; text-align: center; }

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

@media (max-width: 620px) {
  .hk-featured-menu-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
  .hk-featured-menu-body { padding: 19px; }
  .hk-featured-menu-body h3 { font-size: 21px; }
  .hk-featured-menu-body > p { min-height: auto; }
}
