:root {
  --angahi-navy: #1E3557;
  --angahi-navy-deep: #162B47;
  --angahi-navy-soft: #2C4C76;
  --angahi-green: #5FD07C;
  --angahi-green-deep: #43C467;
  --angahi-green-soft: #EAF9EF;
  --angahi-page: #F5F7FA;
  --angahi-card: #FFFFFF;
  --angahi-border: #D9E1EA;
  --angahi-text: #1E3557;
  --angahi-muted: #6B7A90;
  --angahi-accent: #F0F7F2;
}

#angahi-employee-meals.angahi-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.employee-section {
  margin-top: 32px;
}

.employee-section__header {
  margin-bottom: 16px;
}

.employee-section__header h2 {
  margin: 0 0 6px 0;
  color: var(--angahi-navy);
  font-size: 1.75rem;
}

.employee-section__header p {
  margin: 0;
  color: var(--angahi-muted);
}

.employee-hero {
  background: linear-gradient(135deg, var(--angahi-navy) 0%, var(--angahi-navy-soft) 54%, var(--angahi-green-deep) 100%);
  color: white;
  border-radius: 32px;
  padding: 40px;
}

.employee-hero__content {
  max-width: 900px;
}

.employee-hero h1 {
  margin: 16px 0 14px 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.employee-hero p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.95;
}

.employee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.employee-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.employee-badge--soft {
  background: rgba(255,255,255,0.12);
}

.employee-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.employee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.employee-btn--primary {
  background: var(--angahi-green);
  color: white;
}

.employee-btn--primary:hover {
  background: var(--angahi-green-deep);
  color: white;
}

.employee-btn--secondary {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.16);
}

.employee-btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

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

.employee-stat {
  background: var(--angahi-card);
  border: 1px solid var(--angahi-border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.employee-stat__label {
  display: block;
  font-size: 0.92rem;
  color: var(--angahi-muted);
  margin-bottom: 10px;
}

.employee-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--angahi-navy);
}

.employee-stat small {
  display: block;
  margin-top: 8px;
  color: var(--angahi-muted);
  font-size: 0.88rem;
}

.employee-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 380px;
  gap: 20px;
  align-items: start;
}

.employee-toolbar {
  background: white;
  border: 1px solid var(--angahi-border);
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 18px;
}

.employee-search {
  border: 1px solid var(--angahi-border);
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--angahi-muted);
  background: white;
}

.employee-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.employee-filter {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--angahi-border);
  color: var(--angahi-navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.employee-filter--active {
  background: var(--angahi-navy);
  color: white;
  border-color: var(--angahi-navy);
}

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

.employee-card {
  background: var(--angahi-card);
  border: 1px solid var(--angahi-border);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.employee-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--angahi-accent);
  color: var(--angahi-navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.employee-card__tag--green {
  background: var(--angahi-green-soft);
  color: var(--angahi-green-deep);
}

.employee-card h3 {
  margin: 14px 0 10px 0;
  color: var(--angahi-navy);
}

.employee-card p {
  margin: 0;
  color: var(--angahi-muted);
  line-height: 1.65;
}

.employee-card__meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--angahi-muted);
}

.employee-card__meta strong {
  color: var(--angahi-navy);
}

.employee-card__action {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--angahi-green);
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.employee-card__action:hover {
  background: var(--angahi-green-deep);
  color: white;
}

.employee-basket {
  background: white;
  border: 1px solid var(--angahi-border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  position: sticky;
  top: 24px;
}

.employee-basket h3 {
  margin: 0 0 10px 0;
  color: var(--angahi-navy);
}

.employee-basket__note {
  margin: 0 0 18px 0;
  color: var(--angahi-muted);
  line-height: 1.65;
}

.employee-basket__empty {
  border: 1px dashed var(--angahi-border);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  color: var(--angahi-muted);
  margin-bottom: 18px;
}

.employee-basket__summary {
  background: var(--angahi-accent);
  border-radius: 20px;
  padding: 16px;
}

.employee-basket__summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--angahi-muted);
}

.employee-basket__summary div strong {
  color: var(--angahi-navy);
}

.employee-basket__summary .employee-basket__total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--angahi-border);
  font-weight: 800;
}

.employee-basket__button {
  display: inline-flex;
  width: 100%;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  padding: 15px 18px;
  border-radius: 18px;
  background: var(--angahi-navy);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.employee-basket__button:hover {
  background: var(--angahi-navy-deep);
  color: white;
}

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

.employee-integration__item {
  background: var(--angahi-accent);
  border-radius: 24px;
  padding: 20px;
}

.employee-integration__item h3 {
  margin: 0 0 10px 0;
  color: var(--angahi-navy);
}

.employee-integration__item p {
  margin: 0;
  color: var(--angahi-muted);
  line-height: 1.65;
}

@media (max-width: 1200px) {
  .employee-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employee-layout {
    grid-template-columns: 1fr;
  }

  .employee-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employee-integration {
    grid-template-columns: 1fr;
  }

  .employee-basket {
    position: static;
  }
}

@media (max-width: 768px) {
  #angahi-employee-meals.angahi-shell {
    padding: 20px 16px 40px;
  }

  .employee-hero {
    border-radius: 24px;
    padding: 24px;
  }

  .employee-stats,
  .employee-cards {
    grid-template-columns: 1fr;
  }
}

.employee-card--live {
  overflow: hidden;
  padding: 0;
}

.employee-card__image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.employee-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--angahi-accent);
  color: var(--angahi-muted);
  font-weight: 700;
}

.employee-card__body {
  padding: 20px;
}

.employee-order-feedback {
  margin-bottom: 16px;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.employee-order-feedback--success {
  background: var(--angahi-green-soft);
  color: var(--angahi-green-deep);
}

.employee-order-feedback--error {
  background: #FFF0F2;
  color: #DC4C64;
}

.employee-card__action--btn {
  border: 0;
  cursor: pointer;
}

.employee-order-feedback {
  margin-bottom: 16px;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.employee-order-feedback--success {
  background: var(--angahi-green-soft);
  color: var(--angahi-green-deep);
}

.employee-order-feedback--error {
  background: #FFF0F2;
  color: #DC4C64;
}

.employee-card__action--btn {
  border: 0;
  cursor: pointer;
}

.employee-basket-lines {
  display: grid;
  gap: 12px;
}

.employee-basket-line {
  border: 1px solid var(--angahi-border);
  border-radius: 18px;
  padding: 14px;
  background: white;
}

.employee-basket-line__main strong {
  display: block;
  color: var(--angahi-navy);
}

.employee-basket-line__meta {
  margin-top: 6px;
  color: var(--angahi-muted);
  font-size: 0.9rem;
}

.employee-basket-line__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.employee-basket-line__minus,
.employee-basket-line__plus {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--angahi-border);
  background: white;
  cursor: pointer;
  font-weight: 800;
  color: var(--angahi-navy);
}

.employee-basket-line__qty {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  color: var(--angahi-navy);
}

.employee-basket-line__remove {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #DC4C64;
  cursor: pointer;
  font-weight: 700;
}

.employee-search__input,
.employee-toolbar__select {
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid var(--angahi-border);
  padding: 0 16px;
  background: white;
  color: var(--angahi-navy);
  font-size: 1rem;
}

.employee-search__input {
  box-sizing: border-box;
}

.employee-toolbar__selectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.employee-filter {
  border: 1px solid var(--angahi-border);
  background: white;
  cursor: pointer;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 700;
  color: var(--angahi-navy);
}

.employee-filter--active {
  background: var(--angahi-navy);
  color: white;
  border-color: var(--angahi-navy);
}

.employee-card--live {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.employee-card--live:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(18, 40, 76, 0.10);
}

.employee-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.employee-card__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--angahi-border);
  background: white;
  color: var(--angahi-navy);
  text-decoration: none;
  font-weight: 700;
}

.employee-order-feedback__actions {
  margin-top: 12px;
}

.employee-order-feedback__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: white;
  color: var(--angahi-navy);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--angahi-border);
}

/* --- Button height/alignment normalization --- */
.employee-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 12px;
  align-items: stretch;
}

.employee-card__details,
.employee-card__action--btn {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  height: 56px;
  padding: 0 18px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  vertical-align: middle;
}

/* --- Equal-width buttons + equal-height cards --- */
.employee-cards {
  align-items: stretch;
}

.employee-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.employee-card__image,
.employee-card__image--placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.employee-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.employee-card__meta {
  margin-top: auto;
}

.employee-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 16px;
}

.employee-card__details,
.employee-card__action--btn {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  height: 56px;
  padding: 0 18px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  vertical-align: middle;
}

/* --- STRICT override: equal-width buttons + identical card height --- */
.employee-cards {
  align-items: stretch !important;
}

.employee-card {
  height: 100% !important;
  min-height: 580px !important;
  display: flex !important;
  flex-direction: column !important;
}

.employee-card__image,
.employee-card__image--placeholder {
  width: 100% !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  object-fit: cover !important;
  display: block !important;
}

.employee-card__body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.employee-card__body h3 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  line-clamp: 2 !important;
  min-height: 2.4em !important;
  max-height: 2.4em !important;
}

.employee-card__body p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  line-clamp: 2 !important;
  min-height: 3em !important;
  max-height: 3em !important;
}

.employee-card__meta {
  margin-top: auto !important;
}

.employee-card__actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  align-items: stretch !important;
  margin-top: 16px !important;
}

.employee-card__details,
.employee-card__action--btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 18px !important;
  margin: 0 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  border-radius: 16px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  vertical-align: middle !important;
}


/* Loyalty tier widget polish */
.employee-basket__note {
  white-space: pre-line;
}

.employee-basket__summary .employee-basket__note {
  margin-top: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(15, 55, 104, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.95), rgba(255, 255, 255, 0.95));
  color: #31445f;
  font-size: 0.92rem;
  line-height: 1.6;
  box-shadow: 0 12px 28px rgba(15, 55, 104, 0.06);
}

.employee-basket__summary .employee-basket__note::first-line {
  color: #0f2748;
  font-weight: 800;
}

.employee-basket__summary > div {
  gap: 10px;
}

/* Restaurant Header Exact Screenshot Override */

.storefront-hero,
.employee-meals-hero,
.employee-hero,
.employee-meal-hero,
.restaurant-hero,
.meal-hero,
.employee-dashboard__hero,
.employee-meals__hero,
.employee-page__hero,
main > section:first-of-type {
  width: min(1680px, calc(100vw - 220px)) !important;
  height: 510px !important;
  min-height: 510px !important;
  margin: 28px auto 48px !important;
  padding: 56px !important;
  border-radius: 48px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.76)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop") center / cover no-repeat !important;
  color: #ffffff !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2) !important;
}

.storefront-hero::before,
.employee-meals-hero::before,
.employee-hero::before,
.employee-meal-hero::before,
.restaurant-hero::before,
.meal-hero::before,
.employee-dashboard__hero::before,
.employee-meals__hero::before,
.employee-page__hero::before,
main > section:first-of-type::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.16) 56%, rgba(0,0,0,0.58)),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.12), transparent 28%);
  pointer-events: none;
}

.storefront-hero > *,
.employee-meals-hero > *,
.employee-hero > *,
.employee-meal-hero > *,
.restaurant-hero > *,
.meal-hero > *,
.employee-dashboard__hero > *,
.employee-meals__hero > *,
.employee-page__hero > *,
main > section:first-of-type > * {
  position: relative !important;
  z-index: 2 !important;
}

.storefront-hero h1,
.employee-meals-hero h1,
.employee-hero h1,
.employee-meal-hero h1,
.restaurant-hero h1,
.meal-hero h1,
.employee-dashboard__hero h1,
.employee-meals__hero h1,
.employee-page__hero h1,
main > section:first-of-type h1 {
  max-width: 1080px !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 6vw, 5.8rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.075em !important;
  margin: 0 0 18px !important;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35) !important;
}

.storefront-hero p,
.employee-meals-hero p,
.employee-hero p,
.employee-meal-hero p,
.restaurant-hero p,
.meal-hero p,
.employee-dashboard__hero p,
.employee-meals__hero p,
.employee-page__hero p,
main > section:first-of-type p {
  max-width: 1080px !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem) !important;
  font-weight: 750 !important;
  line-height: 1.52 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.32) !important;
}

.storefront-hero [class*="pill"],
.storefront-hero [class*="badge"],
.employee-meals-hero [class*="pill"],
.employee-meals-hero [class*="badge"],
.employee-hero [class*="pill"],
.employee-hero [class*="badge"],
main > section:first-of-type [class*="pill"],
main > section:first-of-type [class*="badge"] {
  background: rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px) !important;
}

.storefront-hero a,
.storefront-hero button,
.employee-meals-hero a,
.employee-meals-hero button,
.employee-hero a,
.employee-hero button,
main > section:first-of-type a,
main > section:first-of-type button {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 1440px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  .employee-dashboard__hero,
  .employee-meals__hero,
  .employee-page__hero,
  main > section:first-of-type {
    width: min(1280px, calc(100vw - 96px)) !important;
    height: 470px !important;
    min-height: 470px !important;
    border-radius: 42px !important;
  }
}

@media (max-width: 900px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  .employee-dashboard__hero,
  .employee-meals__hero,
  .employee-page__hero,
  main > section:first-of-type {
    width: calc(100vw - 40px) !important;
    height: 420px !important;
    min-height: 420px !important;
    padding: 34px !important;
    border-radius: 32px !important;
  }
}

@media (max-width: 640px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  .employee-dashboard__hero,
  .employee-meals__hero,
  .employee-page__hero,
  main > section:first-of-type {
    width: calc(100vw - 24px) !important;
    height: 380px !important;
    min-height: 380px !important;
    padding: 26px !important;
    border-radius: 26px !important;
  }
}



/* FINAL EXACT RESTAURANT HERO SIZE */
.storefront-hero,
.employee-meals-hero,
.employee-hero,
.employee-meal-hero,
.restaurant-hero,
.meal-hero,
main > section:first-of-type {
  width: min(1680px, calc(100vw - 220px)) !important;
  height: 510px !important;
  min-height: 510px !important;
  margin: 28px auto 48px !important;
  padding: 56px !important;
  border-radius: 48px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.76)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop") center / cover no-repeat !important;
  color: #ffffff !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2) !important;
}

.storefront-hero::before,
.employee-meals-hero::before,
.employee-hero::before,
.employee-meal-hero::before,
.restaurant-hero::before,
.meal-hero::before,
main > section:first-of-type::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.16) 56%, rgba(0,0,0,0.58)),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.12), transparent 28%);
  pointer-events: none;
}

.storefront-hero > *,
.employee-meals-hero > *,
.employee-hero > *,
.employee-meal-hero > *,
.restaurant-hero > *,
.meal-hero > *,
main > section:first-of-type > * {
  position: relative !important;
  z-index: 2 !important;
}

.storefront-hero h1,
.employee-meals-hero h1,
.employee-hero h1,
.employee-meal-hero h1,
.restaurant-hero h1,
.meal-hero h1,
main > section:first-of-type h1 {
  max-width: 1080px !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 6vw, 5.8rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.075em !important;
  margin: 0 0 18px !important;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35) !important;
}

.storefront-hero p,
.employee-meals-hero p,
.employee-hero p,
.employee-meal-hero p,
.restaurant-hero p,
.meal-hero p,
main > section:first-of-type p {
  max-width: 1080px !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem) !important;
  font-weight: 750 !important;
  line-height: 1.52 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.32) !important;
}

.storefront-hero [class*="pill"],
.storefront-hero [class*="badge"],
.employee-meals-hero [class*="pill"],
.employee-meals-hero [class*="badge"],
.employee-hero [class*="pill"],
.employee-hero [class*="badge"],
main > section:first-of-type [class*="pill"],
main > section:first-of-type [class*="badge"] {
  background: rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px) !important;
}

@media (max-width: 1440px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  main > section:first-of-type {
    width: min(1280px, calc(100vw - 96px)) !important;
    height: 470px !important;
    min-height: 470px !important;
    border-radius: 42px !important;
  }
}

@media (max-width: 900px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  main > section:first-of-type {
    width: calc(100vw - 40px) !important;
    height: 420px !important;
    min-height: 420px !important;
    padding: 34px !important;
    border-radius: 32px !important;
  }
}

/* FINAL HEADER EXACT RESTAURANT IMAGE STYLE */
.storefront-hero,
.employee-meals-hero,
.employee-hero,
.employee-meal-hero,
.restaurant-hero,
.meal-hero,
main > section:first-of-type {
  width: min(1680px, calc(100vw - 220px)) !important;
  height: 510px !important;
  min-height: 510px !important;
  margin: 28px auto 48px !important;
  padding: 56px !important;
  border-radius: 48px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.76)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop") center / cover no-repeat !important;
  color: #ffffff !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2) !important;
}

.storefront-hero::before,
.employee-meals-hero::before,
.employee-hero::before,
.employee-meal-hero::before,
.restaurant-hero::before,
.meal-hero::before,
main > section:first-of-type::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.16) 56%, rgba(0,0,0,0.58)),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.12), transparent 28%);
  pointer-events: none;
}

.storefront-hero > *,
.employee-meals-hero > *,
.employee-hero > *,
.employee-meal-hero > *,
.restaurant-hero > *,
.meal-hero > *,
main > section:first-of-type > * {
  position: relative !important;
  z-index: 2 !important;
}

.storefront-hero h1,
.employee-meals-hero h1,
.employee-hero h1,
.employee-meal-hero h1,
.restaurant-hero h1,
.meal-hero h1,
main > section:first-of-type h1 {
  max-width: 1080px !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 6vw, 5.8rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.075em !important;
  margin: 0 0 18px !important;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35) !important;
}

.storefront-hero p,
.employee-meals-hero p,
.employee-hero p,
.employee-meal-hero p,
.restaurant-hero p,
.meal-hero p,
main > section:first-of-type p {
  max-width: 1080px !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem) !important;
  font-weight: 750 !important;
  line-height: 1.52 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.32) !important;
}

@media (max-width: 1440px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  main > section:first-of-type {
    width: min(1280px, calc(100vw - 96px)) !important;
    height: 470px !important;
    min-height: 470px !important;
    border-radius: 42px !important;
  }
}


}

/* FINAL HEADER EXACT RESTAURANT IMAGE STYLE - CLEAN OVERRIDE */
.storefront-hero,
.employee-meals-hero,
.employee-hero,
.employee-meal-hero,
.restaurant-hero,
.meal-hero,
main > section:first-of-type {
  width: min(1680px, calc(100vw - 220px)) !important;
  height: 510px !important;
  min-height: 510px !important;
  margin: 28px auto 48px !important;
  padding: 56px !important;
  border-radius: 48px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.76)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop") center / cover no-repeat !important;
  color: #ffffff !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2) !important;
}

.storefront-hero::before,
.employee-meals-hero::before,
.employee-hero::before,
.employee-meal-hero::before,
.restaurant-hero::before,
.meal-hero::before,
main > section:first-of-type::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.16) 56%, rgba(0,0,0,0.58)),
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.12), transparent 28%);
  pointer-events: none;
}

.storefront-hero > *,
.employee-meals-hero > *,
.employee-hero > *,
.employee-meal-hero > *,
.restaurant-hero > *,
.meal-hero > *,
main > section:first-of-type > * {
  position: relative !important;
  z-index: 2 !important;
}

.storefront-hero h1,
.employee-meals-hero h1,
.employee-hero h1,
.employee-meal-hero h1,
.restaurant-hero h1,
.meal-hero h1,
main > section:first-of-type h1 {
  max-width: 1080px !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 6vw, 5.8rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.075em !important;
  margin: 0 0 18px !important;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35) !important;
}

.storefront-hero p,
.employee-meals-hero p,
.employee-hero p,
.employee-meal-hero p,
.restaurant-hero p,
.meal-hero p,
main > section:first-of-type p {
  max-width: 1080px !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem) !important;
  font-weight: 750 !important;
  line-height: 1.52 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.32) !important;
}

@media (max-width: 1440px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  main > section:first-of-type {
    width: min(1280px, calc(100vw - 96px)) !important;
    height: 470px !important;
    min-height: 470px !important;
    border-radius: 42px !important;
  }
}

@media (max-width: 900px) {
  .storefront-hero,
  .employee-meals-hero,
  .employee-hero,
  .employee-meal-hero,
  .restaurant-hero,
  .meal-hero,
  main > section:first-of-type {
    width: calc(100vw - 40px) !important;
    height: 420px !important;
    min-height: 420px !important;
    padding: 34px !important;
    border-radius: 32px !important;
  }
}


/* FINAL HERO DIMENSION AND IMAGE POSITION FIX */
.employee-hero {
  width: min(1680px, calc(100vw - 160px)) !important;
  height: 430px !important;
  min-height: 430px !important;
  margin: 28px auto 42px !important;
  padding: 48px !important;
  border-radius: 42px !important;
  background-position: center 52% !important;
}

.employee-hero h1 {
  font-size: clamp(3.5rem, 5.2vw, 5.1rem) !important;
  line-height: 0.96 !important;
  margin-bottom: 16px !important;
}

.employee-hero p {
  font-size: clamp(1rem, 1.45vw, 1.22rem) !important;
  line-height: 1.45 !important;
  max-width: 980px !important;
}

@media (max-width: 900px) {
  .employee-hero {
    width: calc(100vw - 40px) !important;
    height: 390px !important;
    min-height: 390px !important;
    padding: 32px !important;
    border-radius: 32px !important;
  }
}

@media (max-width: 640px) {
  .employee-hero {
    width: calc(100vw - 24px) !important;
    height: 350px !important;
    min-height: 350px !important;
    padding: 24px !important;
    border-radius: 26px !important;
  }
}
}

/* EXACT RESTAURANT HERO FINAL - MATCH SCREENSHOT */
.storefront-hero,
.employee-hero {
  box-sizing: border-box !important;
  width: min(1680px, calc(100vw - 220px)) !important;
  height: 510px !important;
  min-height: 510px !important;
  margin: 28px auto 48px !important;
  padding: 56px 46px !important;
  border-radius: 48px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.78)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #ffffff !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18) !important;
}

.storefront-hero::before,
.employee-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.16) 58%, rgba(0,0,0,0.56)),
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.10), transparent 28%);
  pointer-events: none;
}

.storefront-hero > *,
.employee-hero > * {
  position: relative !important;
  z-index: 2 !important;
}

.storefront-hero__content,
.employee-hero__content {
  max-width: 1160px !important;
  width: 100% !important;
  background: transparent !important;
}

.storefront-hero h1,
.employee-hero h1 {
  max-width: 1120px !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 6vw, 5.65rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.075em !important;
  margin: 0 0 18px !important;
  text-shadow: 0 4px 18px rgba(0,0,0,0.38) !important;
}

.storefront-hero p,
.employee-hero p {
  max-width: 1080px !important;
  color: rgba(255,255,255,0.94) !important;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.36) !important;
}

.storefront-hero [class*="pill"],
.storefront-hero [class*="badge"],
.employee-hero [class*="pill"],
.employee-hero [class*="badge"] {
  background: rgba(255,255,255,0.72) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px) !important;
}

.storefront-hero a,
.storefront-hero button,
.employee-hero a,
.employee-hero button {
  position: relative !important;
  z-index: 3 !important;
}

/* Desktop medium */
@media (max-width: 1440px) {
  .storefront-hero,
  .employee-hero {
    width: min(1280px, calc(100vw - 96px)) !important;
    height: 470px !important;
    min-height: 470px !important;
    border-radius: 42px !important;
    padding: 48px 42px !important;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .storefront-hero,
  .employee-hero {
    width: calc(100vw - 40px) !important;
    height: 420px !important;
    min-height: 420px !important;
    padding: 34px !important;
    border-radius: 32px !important;
  }

  .storefront-hero h1,
  .employee-hero h1 {
    font-size: clamp(3rem, 10vw, 4.4rem) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .storefront-hero,
  .employee-hero {
    width: calc(100vw - 24px) !important;
    height: 380px !important;
    min-height: 380px !important;
    padding: 26px !important;
    border-radius: 26px !important;
  }

  .storefront-hero h1,
  .employee-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem) !important;
  }
}

/* EXACT HERO LIKE PARTNER ORDER SCREENSHOT */
.employee-hero {
  box-sizing: border-box !important;
  width: min(1208px, calc(100vw - 156px)) !important;
  height: 366px !important;
  min-height: 366px !important;
  margin: 28px auto 42px !important;
  padding: 34px 44px !important;
  border-radius: 30px !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.78)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1200&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.employee-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.12) 58%, rgba(0,0,0,0.55));
  pointer-events: none;
}

.employee-hero > * {
  position: relative !important;
  z-index: 2 !important;
}

.employee-hero__content {
  background: transparent !important;
  max-width: 980px !important;
}

.employee-hero h1 {
  color: #ffffff !important;
  font-size: clamp(3.2rem, 5.2vw, 4.9rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.07em !important;
  margin: 0 0 14px !important;
  max-width: 980px !important;
}

.employee-hero p {
  color: rgba(255,255,255,0.94) !important;
  font-size: clamp(1rem, 1.45vw, 1.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  max-width: 980px !important;
}

.employee-hero [class*="pill"],
.employee-hero [class*="badge"] {
  background: rgba(255,255,255,0.9) !important;
  color: #0f3768 !important;
}

@media (max-width: 900px) {
  .employee-hero {
    width: calc(100vw - 40px) !important;
    height: 340px !important;
    min-height: 340px !important;
    padding: 28px !important;
    border-radius: 26px !important;
  }
}

@media (max-width: 640px) {
  .employee-hero {
    width: calc(100vw - 24px) !important;
    height: 320px !important;
    min-height: 320px !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }
}


/* FINAL FOOD IMAGE CENTERING FIX */
.storefront-hero,
.employee-hero,
.partner-order-hero {
  background-size: cover !important;
  background-position: center 58% !important;
  background-repeat: no-repeat !important;
}

.storefront-hero,
.employee-hero {
  width: min(1208px, calc(100vw - 156px)) !important;
  height: 366px !important;
  min-height: 366px !important;
  border-radius: 30px !important;
  padding: 34px 44px !important;
}

.partner-order-hero {
  width: min(1208px, calc(100vw - 156px)) !important;
  min-height: 366px !important;
  height: 366px !important;
  border-radius: 30px !important;
}

@media (max-width: 900px) {
  .storefront-hero,
  .employee-hero,
  .partner-order-hero {
    width: calc(100vw - 40px) !important;
    height: 340px !important;
    min-height: 340px !important;
    border-radius: 26px !important;
    background-position: center 58% !important;
  }
}

@media (max-width: 640px) {
  .storefront-hero,
  .employee-hero,
  .partner-order-hero {
    width: calc(100vw - 24px) !important;
    height: 320px !important;
    min-height: 320px !important;
    border-radius: 22px !important;
    background-position: center 58% !important;
  }
}


/* FINAL HERO COLUMN ALIGNMENT + REMOVE WHITE BAND */
.storefront-hero,
.employee-hero {
  width: min(1208px, calc(100vw - 156px)) !important;
  max-width: 1208px !important;
  height: 366px !important;
  min-height: 366px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 28px !important;
  margin-bottom: 42px !important;
  padding: 34px 44px !important;
  border-radius: 30px !important;
  background-size: cover !important;
  background-position: center 54% !important;
  background-repeat: no-repeat !important;
}

/* Remove the long white band behind hero badges */
.storefront-hero__badges,
.storefront-hero__pills,
.storefront-hero__tags,
.storefront-hero__meta,
.employee-hero__badges,
.employee-hero__pills,
.employee-hero__tags,
.employee-hero__meta {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Keep only individual pills visible */
.storefront-hero__badges > *,
.storefront-hero__pills > *,
.storefront-hero__tags > *,
.employee-hero__badges > *,
.employee-hero__pills > *,
.employee-hero__tags > * {
  display: inline-flex !important;
  width: fit-content !important;
  margin-right: 10px !important;
  padding: 9px 16px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.92) !important;
  color: #0f3768 !important;
  font-weight: 900 !important;
}

/* Hero text sizing aligned to screenshot */
.storefront-hero h1,
.storefront-hero .storefront-hero__title,
.employee-hero h1 {
  font-size: clamp(3.3rem, 5.2vw, 4.9rem) !important;
  line-height: 0.96 !important;
  margin-bottom: 14px !important;
}

.storefront-hero p,
.storefront-hero .storefront-hero__lead,
.storefront-hero .storefront-hero__description,
.employee-hero p {
  font-size: clamp(1rem, 1.45vw, 1.2rem) !important;
  line-height: 1.45 !important;
  max-width: 980px !important;
}

@media (max-width: 900px) {
  .storefront-hero,
  .employee-hero {
    width: calc(100vw - 40px) !important;
    height: 340px !important;
    min-height: 340px !important;
    padding: 28px !important;
    border-radius: 26px !important;
    background-position: center 54% !important;
  }
}

@media (max-width: 640px) {
  .storefront-hero,
  .employee-hero {
    width: calc(100vw - 24px) !important;
    height: 320px !important;
    min-height: 320px !important;
    padding: 22px !important;
    border-radius: 22px !important;
    background-position: center 54% !important;
  }
}


/* FINAL HERO IMAGE POSITION ONLY */
.employee-hero {
  background-position: 50% 58% !important;
}

/* FINAL HERO ALIGN TO WIDGET COLUMNS */
.employee-hero {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 1208px !important;
  height: 366px !important;
  min-height: 366px !important;
  margin: 28px auto 42px !important;
  padding: 34px 44px !important;
  border-radius: 30px !important;
  background-size: cover !important;
  background-position: 50% 58% !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 1280px) {
  .employee-hero {
    max-width: calc(100vw - 80px) !important;
  }
}

@media (max-width: 900px) {
  .employee-hero {
    max-width: calc(100vw - 40px) !important;
    height: 340px !important;
    min-height: 340px !important;
    padding: 28px !important;
    border-radius: 26px !important;
  }
}

@media (max-width: 640px) {
  .employee-hero {
    max-width: calc(100vw - 24px) !important;
    height: 320px !important;
    min-height: 320px !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }
}

/* PARTNER RESTAURANTS WIDGET FULL WIDTH ON EMPLOYEE MEALS */
.employee-integration__item--partners {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.employee-integration__item--partners #angahi-partner-restaurants-widget,
.employee-integration__item--partners .partner-widget {
  width: 100% !important;
  max-width: 100% !important;
}

.employee-integration__item--partners .partner-widget__carousel {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.employee-integration__item--partners .partner-widget__track {
  display: flex !important;
  gap: 18px !important;
  width: max-content !important;
}

.employee-integration__item--partners .partner-widget-card {
  flex: 0 0 280px !important;
  max-width: 280px !important;
}

@media (max-width: 900px) {
  .employee-integration__item--partners {
    grid-column: auto !important;
  }

  .employee-integration__item--partners .partner-widget-card {
    flex-basis: 250px !important;
    max-width: 250px !important;
  }
}

/* REMOVE TOP GAP ABOVE PARTNER RESTAURANTS WIDGET */
.employee-integration__item--partners{padding-top:0!important;}
.employee-integration__item--partners #angahi-partner-restaurants-widget{margin-top:0!important;padding-top:0!important;}
.employee-integration__item--partners .partner-widget{margin-top:0!important;padding-top:0!important;}
.employee-integration__item--partners .partner-widget__header{margin-top:0!important;padding-top:0!important;}
