:root {
  --cream: #fbf5ec;
  --paper: #fffaf2;
  --ink: #241917;
  --muted: #6b5b55;
  --line: #eadbca;
  --charcoal: #17100f;
  --charcoal-soft: #261b19;
  --burgundy: #8f2028;
  --burgundy-deep: #67161c;
  --gold: #d0a456;
  --gold-deep: #9a6b27;
  --green: #21483b;
  --green-soft: #e5efe7;
  --radius: 8px;
  --shell: 1180px;
  --shadow: 0 18px 48px rgba(36, 25, 23, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Jost", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body.page-404 {
  background: var(--charcoal);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand strong,
.hero-logo + .eyebrow,
.product-price,
.hours-card > strong,
.footer-brand strong {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 8ch;
  color: #fffaf2;
  font-size: clamp(4rem, 11vw, 8.8rem);
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  font-weight: 800;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

[id] {
  scroll-margin-top: 7rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 500;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--charcoal);
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}

.button-dark {
  color: var(--paper);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.button-red {
  color: var(--paper);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button-red:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}

.button-qurbani {
  white-space: nowrap;
}

.button-qurbani span {
  padding-left: 0.55rem;
  border-left: 1px solid rgba(255, 250, 242, 0.32);
}

.button-light {
  color: var(--charcoal);
  background: var(--paper);
  border-color: rgba(255, 250, 242, 0.72);
}

.button-quiet,
.button-outline {
  color: var(--charcoal);
  background: transparent;
  border-color: var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(251, 245, 236, 0.92);
  border-bottom: 1px solid rgba(234, 219, 202, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 160ms ease, background-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 245, 236, 0.98);
  box-shadow: 0 12px 30px rgba(36, 25, 23, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: var(--radius);
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(36, 25, 23, 0.1);
}

.brand span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.brand strong {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.brand small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav,
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--burgundy);
  background: rgba(143, 32, 40, 0.06);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 7.2rem));
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 16, 15, 0.96) 0%, rgba(23, 16, 15, 0.72) 39%, rgba(23, 16, 15, 0.18) 72%),
    linear-gradient(0deg, rgba(23, 16, 15, 0.56), rgba(23, 16, 15, 0.04) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: inherit;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.hero-logo {
  width: clamp(6.6rem, 12vw, 10rem);
  height: clamp(6.6rem, 12vw, 10rem);
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--gold);
}

.hero-copy {
  max-width: 42rem;
  margin-top: 1.1rem;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -2.3rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.quick-grid article {
  min-height: 7.4rem;
  padding: 1rem;
  border: 1px solid rgba(234, 219, 202, 0.82);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-grid strong,
.quick-grid span {
  display: block;
}

.quick-grid strong {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.quick-grid span {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.5;
}

.qurbani-strip {
  padding-block: clamp(1.1rem, 3vw, 2rem);
}

.qurbani-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(143, 32, 40, 0.32);
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(103, 22, 28, 0.96), rgba(143, 32, 40, 0.88)),
    var(--burgundy);
  box-shadow: var(--shadow);
}

.qurbani-panel .eyebrow {
  margin-bottom: 0.45rem;
  color: var(--gold);
}

.qurbani-panel h2 {
  max-width: 22ch;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

.qurbani-panel p:not(.eyebrow) {
  max-width: 50rem;
  margin-top: 0.65rem;
  color: rgba(255, 250, 242, 0.82);
  font-weight: 600;
}

.qurbani-panel .button-red {
  color: var(--burgundy);
  background: var(--paper);
  border-color: rgba(255, 250, 242, 0.72);
}

.section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.section-head {
  max-width: 46rem;
}

.section-head p:not(.eyebrow) {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: 7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(36, 25, 23, 0.08);
}

.menu-sidebar .section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.menu-tools {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.search-box {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 3.45rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}

.search-box input:focus {
  border-color: var(--gold);
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.filter-button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--paper);
  font-weight: 800;
}

.filter-button span {
  display: inline-flex;
  min-width: 1.65rem;
  min-height: 1.65rem;
  align-items: center;
  justify-content: center;
  padding-inline: 0.35rem;
  border-radius: 999px;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.9rem;
}

.filter-button.is-active {
  color: var(--paper);
  border-color: var(--burgundy);
  background: var(--burgundy);
}

.filter-button.is-active span {
  color: var(--charcoal);
  background: var(--gold);
}

.menu-summary {
  margin-top: 1.2rem;
  color: var(--muted);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0;
}

.product-group-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
}

.product-group-heading span {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.product-group-heading strong {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card {
  display: grid;
  grid-template-columns: 8.6rem minmax(0, 1fr);
  gap: 0.8rem;
  min-height: 9.6rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(36, 25, 23, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-image {
  width: 100%;
  height: 100%;
  min-height: 8.2rem;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(234, 219, 202, 0.72);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(143, 32, 40, 0.5);
  box-shadow: var(--shadow);
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.product-category {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: var(--burgundy);
  background: rgba(143, 32, 40, 0.08);
  font-weight: 800;
  font-size: 0.78rem;
}

.product-size {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
}

.product-card h3 {
  max-width: 18ch;
  font-size: 1.05rem;
}

.product-card p {
  margin-top: 0.25rem;
  font-size: 0.84rem;
  line-height: 1.38;
}

.product-price {
  color: var(--burgundy);
  font-size: 1.45rem;
  font-weight: 800;
}

.product-price.is-missing {
  font-size: 1.45rem;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
  color: var(--charcoal);
  font-weight: 800;
}

.product-bottom span:last-child {
  color: var(--gold-deep);
  font-size: 0.86rem;
}

.product-copy {
  display: grid;
  align-content: space-between;
  gap: 0.55rem;
  min-width: 0;
}

.menu-empty {
  grid-column: 1 / -1;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-empty strong {
  display: block;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.6rem;
}

.menu-empty p {
  margin-top: 0.45rem;
}

.order-section {
  color: var(--paper);
  background: var(--charcoal);
}

.order-section p {
  color: rgba(255, 250, 242, 0.72);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.steps-grid {
  display: grid;
  gap: 0.8rem;
}

.step-card {
  padding: 1rem;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.05);
}

.step-card span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--gold);
  font-weight: 800;
}

.step-card h3 {
  margin-top: 0.85rem;
}

.step-card p {
  margin-top: 0.5rem;
}

.category-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.category-card {
  min-height: 21rem;
  display: grid;
  align-content: end;
  gap: 0.85rem;
  padding: 1.15rem;
  border-radius: var(--radius);
  color: var(--paper);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: var(--charcoal);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--category-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(23, 16, 15, 0.94), rgba(23, 16, 15, 0.3) 52%, rgba(23, 16, 15, 0.08)),
    linear-gradient(90deg, rgba(23, 16, 15, 0.72), rgba(23, 16, 15, 0.04));
}

.category-card-lamb::before {
  --category-image: url("assets/al-halal-butchers/product-real/lamb-leg-shoulder.webp");
}

.category-card-beef::before {
  --category-image: url("assets/al-halal-butchers/product-real/beef-steak.webp");
}

.category-card-chicken::before {
  --category-image: url("assets/al-halal-butchers/product-real/whole-chicken.webp");
}

.category-card span {
  color: var(--gold);
  font-weight: 800;
}

.category-card h3 {
  max-width: 14ch;
  color: var(--paper);
}

.category-card a {
  justify-self: start;
  padding-bottom: 0.18rem;
  border-bottom: 2px solid var(--gold);
  font-weight: 800;
}

.visit-section {
  background: var(--paper);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.visit-copy p:not(.eyebrow) {
  max-width: 39rem;
  margin-top: 1rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hours-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hours-card > strong {
  display: block;
  color: var(--burgundy);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
}

.hours-list {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(234, 219, 202, 0.78);
  border-radius: var(--radius);
  background: var(--paper);
}

.hours-list div.is-today {
  color: var(--paper);
  border-color: var(--green);
  background: var(--green);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.faq-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-grid p {
  margin-top: 0.55rem;
}

.site-footer {
  padding-block: 2rem;
  color: rgba(255, 250, 242, 0.78);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  gap: 1.1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius);
  object-fit: contain;
  background: #ffffff;
}

.footer-brand strong {
  display: block;
  color: var(--paper);
  font-size: 1.35rem;
}

.footer-brand p,
.site-footer p {
  color: rgba(255, 250, 242, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-weight: 700;
}

.mobile-callbar {
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 320;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
  background: rgba(23, 16, 15, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-block: 2rem;
  color: var(--paper);
}

.error-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 1rem;
}

.error-panel {
  padding: 1.2rem;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.05);
}

.error-copy p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: rgba(255, 250, 242, 0.76);
}

.error-copy h1 {
  margin-top: 0.8rem;
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 6rem);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.error-aside img {
  width: 10rem;
  height: 10rem;
  border-radius: var(--radius);
  object-fit: contain;
  background: #ffffff;
}

.error-aside strong {
  display: block;
  margin-top: 1rem;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 1.45rem;
}

.error-aside p {
  margin-top: 0.5rem;
  color: rgba(255, 250, 242, 0.74);
}

@media (max-width: 1280px) {
  .button-qurbani span {
    display: none;
  }
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 5.8rem 1rem auto 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.45rem);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .header-actions {
    display: none;
  }

  .order-layout,
  .visit-layout,
  .error-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  body {
    padding-bottom: 4.8rem;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 4rem;
    height: 4rem;
  }

  .header-shell {
    min-height: 5rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(23, 16, 15, 0.94), rgba(23, 16, 15, 0.56)),
      linear-gradient(0deg, rgba(23, 16, 15, 0.72), rgba(23, 16, 15, 0.1));
  }

  .hero-content {
    min-height: calc(100svh - 10rem);
    padding-block: 2.4rem 4.4rem;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 13vw, 3.45rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-grid,
  .menu-layout,
  .menu-tools,
  .product-grid,
  .category-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: static;
  }

  .quick-grid {
    gap: 0;
    width: 100%;
  }

  .quick-grid article {
    border-radius: 0;
    box-shadow: none;
  }

  .qurbani-panel {
    grid-template-columns: 1fr;
  }

  .qurbani-panel .button {
    justify-self: start;
  }

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

  .product-card {
    grid-template-columns: 7.8rem minmax(0, 1fr);
    min-height: 9rem;
    padding: 0.6rem;
  }

  .product-image {
    min-height: 7.8rem;
  }

  .category-card {
    min-height: 17rem;
  }

  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .mobile-callbar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 1.2rem), var(--shell));
  }

  .hero-actions,
  .visit-actions,
  .error-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }
}
