@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;500;600;700;800&display=swap');
:root {
  --black: #fff8eb;
  --panel: #fffdf8;
  --panel2: #f7ead3;
  --gold: #b77b24;
  --gold2: #845313;
  --muted: #756b5c;
  --line: rgba(133, 83, 19, 0.18);
  --ink: #2d251c;
  --wine: #702719;
  --green: #25d366;
  --red: #df625b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: 'Noto Kufi Arabic', sans-serif;
  overflow-x: hidden;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  color: inherit;
}
.shell {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.gold-frame {
  position: relative;
  border: 1px solid var(--line);
}
.gold-frame:before,
.gold-frame:after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.gold-frame:before {
  inset: 7px;
  border: 1px solid rgba(214, 169, 80, 0.12);
}
.gold-frame:after {
  inset: 14px;
  border: 1px solid rgba(214, 169, 80, 0.06);
}
.brand-gradient {
  background: linear-gradient(110deg, #a7742c, #f7dda0, #b77c2b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: topbar-enter 0.65s ease both;
}
.topbar-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.mini-brand b {
  display: block;
  color: var(--wine);
}
.mini-brand small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}
.icon-btn {
  border: 1px solid var(--line);
  background: var(--wine);
  color: #fff;
  border-radius: 11px;
  padding: 9px 12px;
  cursor: pointer;
}
.hero {
  padding: 42px 0;
  text-align: start;
  background:
    radial-gradient(circle at 20% 15%, rgba(225, 174, 89, 0.22), transparent 28%),
    linear-gradient(180deg, #fffaf0, #f8ead1);
}
.hero .shell {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  grid-template-rows: auto auto auto;
  align-content: center;
  align-items: center;
  gap: 8px 70px;
}
.hero-logo {
  width: min(330px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(100, 55, 20, 0.18);
  animation: logo-enter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  grid-column: 2;
  grid-row: 1 / 4;
  justify-self: center;
}
.hero h1 {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.35;
  margin: 0;
  animation: content-enter 0.7s 0.12s ease both;
}
.hero p {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: var(--muted);
  animation: content-enter 0.7s 0.2s ease both;
}
.hero-actions {
  grid-column: 1;
  grid-row: 3;
  justify-content: flex-start;
  align-self: start;
  display: flex;
  gap: 9px;
  margin-top: 14px;
  flex-wrap: wrap;
  animation: content-enter 0.7s 0.28s ease both;
}
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 17px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 700;
}
.primary {
  background: linear-gradient(135deg, #b67d2e, #ebc66f);
  color: #100c05;
  background-size: 180% 100%;
  animation: button-glow 3.2s ease-in-out infinite;
}
.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--wine);
}
.search-wrap {
  position: sticky;
  top: 72px;
  z-index: 18;
  background: linear-gradient(var(--black) 80%, transparent);
  padding: 12px 0 20px;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  box-shadow: 0 8px 28px rgba(100, 62, 24, 0.08);
}
.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.search input::placeholder {
  color: #726b5e;
}
.categories {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 0 0 14px;
  scrollbar-width: none;
}
.categories::-webkit-scrollbar {
  display: none;
}
.cat-btn {
  flex: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--muted);
  padding: 9px 13px;
  cursor: pointer;
}
.cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #151008;
}
.menu-section {
  padding: 26px 0;
  scroll-margin-top: 155px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 25px;
  color: var(--gold2);
}
.section-title:after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--line), transparent);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(214, 169, 80, 0.16);
  border-radius: 15px;
  background: #fffdf8;
  box-shadow: 0 10px 26px rgba(99, 65, 28, 0.07);
  transition: 0.25s;
  animation: card-enter 0.48s ease both;
}
.menu-item:hover {
  border-color: rgba(214, 169, 80, 0.48);
  transform: translateY(-2px);
}
.item-name {
  font-weight: 700;
}
.item-detail {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}
.item-price {
  align-self: start;
  color: var(--gold2);
  font-weight: 800;
  white-space: nowrap;
}
.add-btn {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 12px;
  border: 1px solid var(--line);
  background: rgba(214, 169, 80, 0.1);
  color: var(--gold2);
  border-radius: 9px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 11px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.add-btn.added {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  animation: add-confirm 0.45s ease both;
}
.sold {
  opacity: 0.45;
}
.sold:after {
  content: 'غير متوفر';
  position: absolute;
  inset-inline-start: 14px;
  bottom: 13px;
  color: #e88279;
  font-size: 10px;
}
.cart-bar {
  position: fixed;
  z-index: 25;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%) translateY(120px);
  width: min(540px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1px solid rgba(214, 169, 80, 0.45);
  border-radius: 14px;
  background: #d2a34b;
  color: #120d05;
  box-shadow: 0 18px 60px rgba(68, 38, 15, 0.3);
  transition: 0.3s;
  cursor: pointer;
}
.cart-bar.show {
  transform: translateX(-50%);
}
.cart-bar.cart-bump {
  animation: cart-bump 0.48s cubic-bezier(0.2, 0.85, 0.3, 1);
}
.cart-flyer {
  position: fixed;
  z-index: 40;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 3px solid #fff8df;
  border-radius: 50%;
  background: #d3a13c;
  box-shadow:
    0 0 0 6px rgba(211, 161, 60, 0.2),
    0 6px 18px rgba(93, 52, 15, 0.28);
  pointer-events: none;
  animation: fly-to-cart 0.72s cubic-bezier(0.35, 0, 0.2, 1) forwards;
}
.cart-bar b {
  font-size: 13px;
}
.cart-sheet {
  position: fixed;
  z-index: 31;
  inset: 0;
  display: none;
  background: rgba(32, 24, 17, 0.72);
  align-items: center;
  padding: 18px;
  backdrop-filter: blur(5px);
}
.cart-sheet.open {
  display: flex;
}
.cart-panel {
  width: min(680px, 100%);
  max-height: min(90vh, 820px);
  margin: auto;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 30px 90px rgba(32, 19, 9, 0.32);
  animation: cart-open 0.36s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
.cart-panel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sheet-head h2 {
  margin: 1px 0 0;
  color: var(--wine);
  font-size: 27px;
}
.sheet-head small {
  color: var(--muted);
  font-size: 10px;
}
.sheet-head button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  font-size: 20px;
  cursor: pointer;
}
.sheet-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sheet-head .clear-cart {
  width: auto;
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 11px;
  border-color: rgba(176, 52, 37, 0.2);
  background: #fff3ef;
  color: #a3372a;
  font-size: 10px;
  font-weight: 700;
  transition: 0.2s ease;
}
.sheet-head .clear-cart:hover {
  border-color: rgba(176, 52, 37, 0.4);
  background: #ffe7e1;
}
.confirm-dialog {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(38, 27, 19, 0.68);
  backdrop-filter: blur(6px);
}
.confirm-dialog[hidden] {
  display: none;
}
.confirm-panel {
  width: min(420px, 100%);
  padding: 30px;
  border: 1px solid rgba(112, 39, 25, 0.14);
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 28px 80px rgba(34, 20, 10, 0.3);
  text-align: center;
  animation: confirm-open 0.3s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
.confirm-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #ffe8e1;
  color: #a3372a;
  font-size: 26px;
  font-weight: 800;
}
.confirm-panel h2 {
  margin: 0 0 8px;
  color: var(--wine);
  font-size: 23px;
}
.confirm-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 9px;
  margin-top: 23px;
}
.confirm-actions button {
  min-height: 46px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}
.confirm-cancel {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.confirm-delete {
  border: 1px solid var(--wine);
  background: var(--wine);
  color: #fff;
}
.confirm-actions button:hover {
  transform: translateY(-1px);
}
.cart-list {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}
.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 92px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fffdf8;
}
.cart-row > div:first-child {
  min-width: 0;
}
.cart-row > div:first-child b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-row > strong {
  width: 92px;
  text-align: end;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.qty {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(183, 123, 36, 0.18);
  border-radius: 999px;
  background: #fff7e8;
  direction: ltr;
  width: 160px;
  justify-content: space-between;
}
.qty b {
  min-width: 34px;
  text-align: center;
  color: var(--ink);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.qty button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  border: 0;
  border-radius: 50%;
  background: #f0dfbf;
  color: #633919;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}
.qty button[data-act='plus'] {
  background: var(--wine);
  color: #fff;
}
.qty button:hover {
  transform: scale(1.1);
}
.qty button:active {
  transform: scale(0.9);
}
.qty button:focus-visible {
  outline: 3px solid rgba(183, 123, 36, 0.24);
  outline-offset: 2px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--gold2);
  font-size: 16px;
}
.order-form {
  display: grid;
  gap: 13px;
}
.order-form label {
  display: grid;
  gap: 6px;
}
.order-form label > span {
  color: #695a48;
  font-size: 11px;
  font-weight: 700;
}
.order-form input,
.order-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.order-type-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.order-type-field legend {
  margin-bottom: 7px;
  color: #695a48;
  font-size: 11px;
  font-weight: 700;
}
.order-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f5ead6;
}
.order-option {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  text-align: start;
  cursor: pointer;
  transition: 0.2s ease;
}
.order-option > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.order-option b {
  color: inherit;
  font-size: 12px;
}
.order-option small {
  overflow: hidden;
  color: inherit;
  font-size: 8px;
  opacity: 0.75;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.option-icon {
  color: #cbb898;
  font-size: 11px;
  transition: 0.2s ease;
}
.order-option.active {
  border-color: rgba(112, 39, 25, 0.18);
  background: #fff;
  color: var(--wine);
  box-shadow: 0 6px 18px rgba(91, 49, 20, 0.08);
}
.order-option.active .option-icon {
  color: var(--wine);
  text-shadow: 0 0 0 4px rgba(112, 39, 25, 0.1);
}
.order-option:focus-visible {
  outline: 3px solid rgba(183, 123, 36, 0.2);
  outline-offset: 2px;
}
.order-form input:focus,
.order-form select:focus {
  border-color: #bf8230;
  box-shadow: 0 0 0 3px rgba(191, 130, 48, 0.12);
}
.delivery-fields {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(183, 123, 36, 0.2);
  border-radius: 17px;
  background: #fff5e3;
  animation: delivery-open 0.3s ease both;
}
.delivery-fields[hidden] {
  display: none;
}
.map-location {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px dashed rgba(112, 39, 25, 0.35);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  text-align: start;
  cursor: pointer;
  transition: 0.2s ease;
}
.map-location:hover {
  border-style: solid;
  transform: translateY(-1px);
}
.map-location > span:last-child {
  display: grid;
  gap: 2px;
}
.map-location small {
  color: var(--muted);
  font-size: 9px;
}
.map-pin {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f2ddba;
  color: var(--wine);
  font-size: 21px;
}
.location-loading .map-pin {
  animation: icon-pulse 0.7s ease-in-out infinite;
}
.location-ready {
  border-color: rgba(33, 150, 83, 0.5);
  background: #f1fff6;
}
.location-ready .map-pin {
  background: #d7f5e1;
  color: #16743c;
}
.location-error {
  border-color: rgba(196, 66, 48, 0.45);
  background: #fff5f2;
}
.whatsapp {
  border: 0;
  border-radius: 11px;
  background: var(--green);
  color: #07150b;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}
.empty {
  text-align: center;
  color: var(--muted);
  padding: 40px;
}
.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(99, 65, 28, 0.06);
  animation: content-enter 0.65s ease both;
}
.notice b {
  color: var(--wine);
}
.notice-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8e6bf;
  color: var(--wine);
  animation: icon-pulse 2.4s ease-in-out infinite;
}
footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 10px;
}
.visit-section {
  padding: 8px 0 48px;
}
.visit-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #702719, #9a4327);
  color: #fffaf0;
  box-shadow: 0 22px 55px rgba(90, 34, 22, 0.2);
  animation: visit-enter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  overflow: hidden;
  position: relative;
}
.visit-card:after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  inset: -130px auto auto -60px;
  border-radius: 50%;
  background: rgba(244, 207, 129, 0.1);
  animation: orb-float 5s ease-in-out infinite;
}
.visit-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #f4cf81;
  font-size: 32px;
  position: relative;
  z-index: 1;
  animation: pin-float 2.2s ease-in-out infinite;
}
.visit-icon i {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(244, 207, 129, 0.35);
  border-radius: 50%;
  animation: location-ring 2s ease-out infinite;
}
.visit-copy small {
  color: #f4cf81;
  font-weight: 800;
}
.visit-copy,
.visit-actions {
  position: relative;
  z-index: 1;
}
.visit-copy h2 {
  margin: 3px 0 5px;
  font-size: 25px;
}
.visit-copy p {
  margin: 0;
  color: rgba(255, 250, 240, 0.75);
  font-size: 12px;
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.location-button,
.call-button {
  padding: 12px 16px;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.location-button {
  background: #f3cc78;
  color: #3e2412;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: button-breathe 2.8s ease-in-out infinite;
}
.location-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(38, 15, 8, 0.25);
}
.call-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
@keyframes topbar-enter {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes cart-open {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
}
@keyframes confirm-open {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
}
@keyframes add-confirm {
  40% {
    transform: scale(1.1);
  }
}
@keyframes fly-to-cart {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--fly-x), var(--fly-y)) scale(0.3);
  }
}
@keyframes cart-bump {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  45% {
    transform: translateX(-50%) scale(1.06) translateY(-5px);
  }
}
@keyframes delivery-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}
@keyframes logo-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
    filter: blur(6px);
  }
}
@keyframes content-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}
@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
}
@keyframes visit-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
}
@keyframes button-glow {
  0%,
  100% {
    background-position: 0 0;
    box-shadow: 0 8px 22px rgba(183, 123, 36, 0.16);
  }
  50% {
    background-position: 100% 0;
    box-shadow: 0 12px 30px rgba(183, 123, 36, 0.28);
  }
}
@keyframes icon-pulse {
  50% {
    transform: rotate(12deg) scale(1.08);
  }
}
@keyframes pin-float {
  50% {
    transform: translateY(-5px);
  }
}
@keyframes location-ring {
  from {
    opacity: 0.8;
    transform: scale(0.78);
  }
  to {
    opacity: 0;
    transform: scale(1.3);
  }
}
@keyframes orb-float {
  50% {
    transform: translate(24px, 18px) scale(1.08);
  }
}
@keyframes button-breathe {
  50% {
    box-shadow: 0 8px 24px rgba(244, 207, 129, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (max-width: 680px) {
  .cart-sheet {
    align-items: flex-end;
    padding: 0;
  }
  .cart-panel {
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    padding: 20px 16px calc(18px + env(safe-area-inset-bottom));
  }
  .sheet-head .clear-cart {
    padding: 0 9px;
  }
  .cart-row {
    grid-template-columns: minmax(0, 1fr) 126px 70px;
    gap: 7px;
  }
  .cart-row > strong {
    grid-column: auto;
    width: 70px;
    color: var(--gold2);
  }
  .qty {
    width: 126px;
  }
  .qty button {
    width: 31px;
    height: 31px;
  }
  .qty b {
    min-width: 25px;
  }
  .order-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .shell {
    width: calc(100% - 22px);
  }
  .topbar-inner {
    height: 64px;
  }
  .search-wrap {
    top: 64px;
  }
  .hero {
    padding: 30px 0 34px;
    text-align: center;
  }
  .hero .shell {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-logo {
    width: min(200px, 62vw);
    border-radius: 22px;
  }
  .hero h1 {
    margin-top: 18px;
    font-size: 30px;
  }
  .hero p {
    margin-top: 3px;
  }
  .hero-actions {
    justify-content: center;
    margin-top: 18px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item {
    min-height: 108px;
  }
  .search-wrap {
    padding-top: 9px;
  }
  .section-title {
    font-size: 21px;
  }
  .mini-brand small {
    display: none;
  }
  .visit-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .visit-icon {
    margin: auto;
  }
  .visit-actions {
    justify-content: center;
  }
  .location-button,
  .call-button {
    flex: 1 1 160px;
  }
}
