: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-public-storefront.angahi-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

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

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

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

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

.storefront-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;
}

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

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

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

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

.storefront-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;
}

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

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

.storefront-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;
}

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

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

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

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

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

.storefront-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);
}

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

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

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

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

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

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

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

.storefront-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;
}

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

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

.storefront-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);
}

.storefront-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;
}

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

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

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

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

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

.storefront-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;
}

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

.storefront-sidebar {
  display: grid;
  gap: 16px;
}

.storefront-panel {
  background: white;
  border: 1px solid var(--angahi-border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.storefront-panel h3 {
  margin: 0 0 14px 0;
  color: var(--angahi-navy);
}

.storefront-panel__note {
  margin: 0 0 16px 0;
  color: var(--angahi-muted);
  line-height: 1.65;
}

.storefront-offers {
  display: grid;
  gap: 12px;
}

.storefront-offer {
  background: var(--angahi-accent);
  border-radius: 18px;
  padding: 14px;
}

.storefront-offer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--angahi-navy);
}

.storefront-offer p {
  margin: 0;
  color: var(--angahi-muted);
}

.storefront-widget__empty {
  border: 1px dashed var(--angahi-border);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  color: var(--angahi-muted);
}

.storefront-widget__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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.storefront-card__body {
  padding: 20px;
}

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

.storefront-order-info {
  margin-bottom: 16px;
  border-radius: 18px;
  padding: 14px 16px;
  background: #FFF7E6;
  color: #8A5A00;
  font-size: 0.95rem;
  line-height: 1.55;
}

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

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

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

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

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

.storefront-basket-line__minus,
.storefront-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);
}

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

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

.storefront-basket__summary {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.storefront-basket__summary div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.storefront-basket__total {
  padding-top: 10px;
  border-top: 1px solid var(--angahi-border);
  font-weight: 800;
}

.storefront-search__input,
.storefront-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;
}

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

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

.storefront-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);
}

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

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

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

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

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

.storefront-card__details:hover,
.storefront-card__action--btn:hover {
  opacity: 0.92;
}

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

.storefront-card__details,
.storefront-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 --- */
.storefront-cards {
  align-items: stretch;
}

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

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

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

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

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

.storefront-card__details,
.storefront-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 --- */
.storefront-cards {
  align-items: stretch !important;
}

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

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

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

.storefront-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;
}

.storefront-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;
}

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

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

.storefront-card__details,
.storefront-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;
}

.storefront-order-info--success-card {
  border: 1px solid var(--angahi-border, #dfe7ef);
  border-radius: 20px;
  background: #fff;
  padding: 18px;
  margin-bottom: 16px;
}

.storefront-success-card__eyebrow {
  color: #15803d;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.storefront-success-card__title {
  display: block;
  color: #12284c;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.storefront-success-card__meta {
  color: #475467;
  margin-bottom: 14px;
}

.storefront-success-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.storefront-widget__button--secondary {
  background: #fff;
  color: #12284c;
  border: 1px solid var(--angahi-border, #dfe7ef);
  text-decoration: none;
}

.storefront-widget__button--link {
  text-decoration: none;
}


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

.storefront-basket__summary .storefront-panel__note,
#public-storefront-live-loyalty {
  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);
}

.storefront-basket__summary .storefront-panel__note::first-line,
#public-storefront-live-loyalty::first-line {
  color: #0f2748;
  font-weight: 800;
}

.storefront-basket__summary > div,
.storefront-offer p {
  gap: 10px;
}


/* Partner Restaurants Screenshot Final Override */

/* No black background */
.storefront-integration__item--partners {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.storefront-integration__item--partners h3 {
  color: #0f172a !important;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem) !important;
  font-weight: 950 !important;
  letter-spacing: -0.045em;
}

.storefront-integration__item--partners h3::before {
  content: "Premium Category";
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.storefront-integration__item--partners > p {
  color: #64748b !important;
  max-width: 900px;
}

/* Carousel */
.storefront-partner-restaurants,
.storefront-partner-carousel {
  width: 100% !important;
  overflow: hidden !important;
}

.storefront-partner-carousel {
  margin-top: 22px !important;
  padding: 4px 0 18px !important;
}

.storefront-partner-carousel__track {
  display: flex !important;
  gap: 28px !important;
  width: max-content !important;
  animation: partnerScreenshotScroll 46s linear infinite !important;
  will-change: transform;
}

.storefront-partner-carousel:hover .storefront-partner-carousel__track,
.storefront-partner-carousel__track:hover,
.storefront-partner-card:hover {
  animation-play-state: paused !important;
}

@keyframes partnerScreenshotScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

/* Image-first cards */
.storefront-partner-card {
  position: relative !important;
  flex: 0 0 min(520px, calc(100vw - 64px)) !important;
  max-width: min(520px, calc(100vw - 64px)) !important;
  height: 320px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.76)),
    var(--partner-image, linear-gradient(135deg, #f97316, #16a34a 48%, #0f3768)) !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18) !important;
  color: #ffffff !important;
}

/* Remove old fake top image block */
.storefront-partner-card::before {
  display: none !important;
}

/* Heart icon */
.storefront-partner-card::after {
  content: "♡";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
  font-size: 1.35rem;
  z-index: 5;
  backdrop-filter: blur(8px);
}

/* Information over image */
.storefront-partner-card__body {
  position: absolute !important;
  inset: auto 0 0 0 !important;
  z-index: 3 !important;
  padding: 22px !important;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82)) !important;
}

/* Status badge */
.storefront-partner-card__eyebrow {
  position: static !important;
  display: inline-flex !important;
  width: fit-content !important;
  margin-bottom: 10px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #166534 !important;
  font-size: 0.74rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* Restaurant name + rating */
.storefront-partner-card__title {
  display: block !important;
  color: #ffffff !important;
  font-size: 1.35rem !important;
  font-weight: 950 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.12 !important;
  margin-bottom: 8px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.storefront-partner-card__title::after {
  content: "★ 4.4";
  float: right;
  margin-left: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
}

/* Meta over image */
.storefront-partner-card__meta,
.storefront-partner-card__modes {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.93rem !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.storefront-partner-card__modes::before {
  content: "🛵 30–40 min • ";
}

.storefront-partner-card__route {
  display: inline-flex !important;
  width: fit-content !important;
  margin-top: 10px !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
  backdrop-filter: blur(8px);
}

/* Hide menu preview rows completely */
.storefront-partner-menu,
.storefront-partner-menu__title,
.storefront-partner-menu__items,
.storefront-partner-menu__item {
  display: none !important;
}

/* Order button over image */
.storefront-partner-card__order-btn {
  width: 100% !important;
  margin-top: 14px !important;
  padding: 12px 14px !important;
  border: 0 !important;
  border-radius: 15px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-weight: 950 !important;
  font-size: 0.92rem !important;
  cursor: pointer !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24) !important;
}

.storefront-partner-card__order-btn:hover {
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 640px) {
  .storefront-partner-carousel__track {
    gap: 18px !important;
  }

  .storefront-partner-card {
    flex-basis: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    height: 340px !important;
    border-radius: 24px !important;
  }

  .storefront-partner-card__body {
    padding: 18px !important;
  }

  .storefront-partner-card__title {
    font-size: 1.18rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront-partner-carousel {
    overflow-x: auto !important;
  }

  .storefront-partner-carousel__track {
    animation: none !important;
  }
}


/* Public Storefront image-first hero */
.storefront-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 36px;
  padding: clamp(32px, 6vw, 72px) !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.78)),
    url("/files/Salade%20Proteinee.avif") center / cover no-repeat !important;
  color: #ffffff !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2);
}

.storefront-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.18) 58%, rgba(0,0,0,0.55)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 26%);
  pointer-events: none;
}

.storefront-hero > * {
  position: relative;
  z-index: 2;
}

.storefront-hero h1,
.storefront-hero .storefront-hero__title {
  max-width: 920px;
  color: #ffffff !important;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  line-height: 0.95;
  letter-spacing: -0.075em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.34);
}

.storefront-hero p,
.storefront-hero .storefront-hero__lead,
.storefront-hero .storefront-hero__description {
  max-width: 980px;
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.55;
  text-shadow: 0 3px 14px rgba(0,0,0,0.3);
}

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

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

.storefront-hero .storefront-button,
.storefront-hero .storefront-hero__action,
.storefront-hero .btn {
  border-radius: 999px !important;
}

@media (max-width: 720px) {
  .storefront-hero {
    min-height: 430px;
    border-radius: 28px;
    padding: 28px !important;
  }

  .storefront-hero h1,
  .storefront-hero .storefront-hero__title {
    font-size: clamp(2.6rem, 14vw, 4.2rem) !important;
  }
}

/* Public Storefront Hero Final Image Style */
.storefront-hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: 500px !important;
  border-radius: 36px !important;
  padding: clamp(34px, 6vw, 72px) !important;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.78)),
    url("/files/Salade%20Proteinee.avif") center / cover no-repeat !important;
  color: #ffffff !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.22) !important;
}

.storefront-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.22) 58%, rgba(0,0,0,0.56)),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.14), transparent 28%);
  pointer-events: none;
}

.storefront-hero > * {
  position: relative;
  z-index: 2;
}

.storefront-hero h1,
.storefront-hero .storefront-hero__title {
  max-width: 980px;
  color: #ffffff !important;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.075em !important;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.storefront-hero p,
.storefront-hero .storefront-hero__lead,
.storefront-hero .storefront-hero__description {
  max-width: 1000px;
  color: rgba(255,255,255,0.92) !important;
  font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.32);
}

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

@media (max-width: 720px) {
  .storefront-hero {
    min-height: 430px !important;
    border-radius: 28px !important;
    padding: 28px !important;
  }

  .storefront-hero h1,
  .storefront-hero .storefront-hero__title {
    font-size: clamp(2.6rem, 14vw, 4.2rem) !important;
  }
}

/* Public Storefront Hero Compact Override */
.storefront-hero {
  min-height: 360px !important;
  padding: clamp(26px, 4vw, 46px) !important;
  border-radius: 30px !important;
  background-position: center center !important;
}

.storefront-hero h1,
.storefront-hero .storefront-hero__title {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem) !important;
  line-height: 0.98 !important;
  margin-bottom: 18px !important;
}

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

.storefront-hero .storefront-hero__actions,
.storefront-hero .storefront-actions,
.storefront-hero [class*="actions"] {
  margin-top: 26px !important;
}

@media (max-width: 720px) {
  .storefront-hero {
    min-height: 320px !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .storefront-hero h1,
  .storefront-hero .storefront-hero__title {
    font-size: clamp(2.2rem, 11vw, 3.4rem) !important;
  }
}
/* 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 */
.storefront-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;
}

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

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

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

@media (max-width: 640px) {
  .storefront-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 */
.storefront-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;
}

.storefront-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;
}

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

.storefront-hero h1,
.storefront-hero .storefront-hero__title {
  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;
}

.storefront-hero p,
.storefront-hero .storefront-hero__lead,
.storefront-hero .storefront-hero__description {
  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;
}

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

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

@media (max-width: 640px) {
  .storefront-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 */
.storefront-hero {
  background-position: 50% 58% !important;
}

/* FINAL HERO ALIGN TO WIDGET COLUMNS */
.storefront-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) {
  .storefront-hero {
    max-width: calc(100vw - 80px) !important;
  }
}

@media (max-width: 900px) {
  .storefront-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) {
  .storefront-hero {
    max-width: calc(100vw - 24px) !important;
    height: 320px !important;
    min-height: 320px !important;
    padding: 22px !important;
    border-radius: 22px !important;
  }
}
