:root {
  --bg: #050506;
  --panel: #111216;
  --panel-soft: #17191f;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #aaa4a0;
  --text: #ffffff;
  --red: #ff2d1f;
  --red-dark: #b80f0b;
  --orange: #ff7a1a;
  --green: #16b65f;
  --gold: #f2b84b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  padding-bottom: 92px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 6, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--red);
  font-size: 1.45rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: #d8d2cf;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #e6dfdc;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff9d1b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current {
  color: #fff;
  background: rgba(255, 75, 43, 0.12);
  border-color: rgba(255, 105, 71, 0.38);
  transform: translateY(-1px);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-current::after {
  transform: scaleX(1);
}

.phone-link {
  color: #fff;
  font-weight: 800;
}

.phone-link::before {
  content: "WhatsApp:";
  color: var(--red);
  margin-right: 4px;
}

.header-cart {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 65% 20%, rgba(255, 45, 31, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease;
}

.header-cart:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 31, 0.78);
}

.header-cart span:last-child {
  position: absolute;
  right: -2px;
  top: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.cart-symbol {
  width: 31px;
  height: 31px;
  display: block;
}

.hero {
  min-height: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px 30px;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.08), rgba(5, 5, 6, 0.78) 58%, #050506 100%),
    url("assets/hero-pizza.png") center top / cover no-repeat;
}

#shporta,
#menu,
#profili,
#pagesa {
  scroll-margin-top: 96px;
}

.hero-copy {
  width: min(720px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 32px;
  background: rgba(17, 18, 22, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.cart h2,
.payment-info h2,
.profile-card h3,
.checkout-form h2 {
  margin: 0;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.hero h1 span {
  color: var(--red);
}

.hero-text {
  color: #d8d2cf;
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 620px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.primary-btn,
.secondary-btn,
.checkout-btn,
.add-btn {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.primary-btn,
.checkout-btn,
.add-btn {
  background: var(--red);
  color: #fff;
}

.secondary-btn {
  background: rgba(10, 35, 22, 0.82);
  color: #fff;
  border: 1px solid rgba(22, 182, 95, 0.7);
}

.home-actions,
.payment-info,
.profile-panel,
.original-menu,
.order-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.home-actions {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
}

.feature-card {
  min-height: 104px;
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, #15161b, #101115);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.feature-card strong {
  display: block;
  font-size: 1.28rem;
  text-transform: uppercase;
}

.feature-card small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 5px;
}

.feature-card b {
  color: var(--red);
  font-size: 2.8rem;
  line-height: 1;
}

.feature-card button {
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  padding: 12px 22px;
}

.feature-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: #08090b;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255, 45, 31, 0.35);
}

.pizza-photo-icon {
  background: url("assets/hero-pizza.png") center / cover;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  padding-top: 56px;
  padding-bottom: 56px;
  align-items: start;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2,
.payment-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.tab {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #111216;
  color: #fff;
  border-radius: 18px;
  padding: 14px;
  min-height: 86px;
  display: grid;
  gap: 5px;
  text-align: left;
}

.tab-icon {
  display: none;
}

.tab span:not(.tab-icon) {
  font-weight: 900;
}

.tab small {
  color: var(--muted);
}

.tab.active {
  background: rgba(255, 45, 31, 0.16);
  border-color: rgba(255, 45, 31, 0.58);
  color: var(--red);
}

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

.item-card {
  background: #111216;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 16px;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.item-visual {
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  background: #191a20;
  display: grid;
  place-items: center;
  color: var(--red);
  font-weight: 900;
}

.item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.item-card h3 {
  margin: 0 0 7px;
  font-size: 1.25rem;
}

.item-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.price-badge {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.control-row,
.split-builder {
  display: grid;
  gap: 9px;
}

.control-row > span,
.split-builder > span,
.control-row > label {
  color: #fff;
  font-weight: 900;
  font-size: 0.92rem;
}

.size-options,
.extra-options,
.split-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-options label,
.extra-options label,
.split-counts label,
.payment-methods label {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #dfd8d4;
}

.size-options small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

input[type="radio"],
input[type="checkbox"] {
  accent-color: var(--red);
}

.note-input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.profile-form input,
.split-flavors select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  resize: vertical;
}

.split-preview {
  width: 110px;
  height: 110px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: url("assets/hero-pizza.png") center / cover;
  box-shadow: 0 0 26px rgba(255, 45, 31, 0.28);
}

.split-preview span {
  display: grid;
  place-items: center;
  background: rgba(5, 5, 6, 0.35);
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.split-flavors {
  display: grid;
  gap: 12px;
}

.split-flavor-group {
  display: grid;
  gap: 8px;
}

.split-flavor-group strong {
  color: #fff;
}

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flavor-chips label {
  display: block;
}

.flavor-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.flavor-chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  color: #d8d2cf;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  cursor: pointer;
}

.flavor-chips input:checked + span {
  border-color: rgba(255, 45, 31, 0.85);
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 45, 31, 0.95), rgba(184, 15, 11, 0.9));
  box-shadow: 0 10px 22px rgba(255, 45, 31, 0.2);
}

.split-flavors label {
  color: var(--muted);
}

.add-btn {
  width: 100%;
}

.cart {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 118px);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 133, 30, 0.17), transparent 35%),
    linear-gradient(160deg, #24120f, #161217 64%, #15191b);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.cart-head,
.cart-summary div,
.cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-head {
  align-items: start;
  margin-bottom: 16px;
}

#cartCount,
.empty-cart,
.cart-line p,
.checkout-note,
.payment-info p,
.profile-card p {
  color: var(--muted);
}

.cart-items {
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 110px;
  max-height: none;
  overflow: auto;
  padding-right: 4px;
}

.cart-line {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.cart-line p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 900;
  margin-top: 8px;
}

.cart-summary {
  flex: 0 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.total-row {
  font-size: 1.25rem;
}

.discount-row {
  color: #8af5b6;
}

.is-hidden {
  display: none !important;
}

.checkout-btn {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 18px;
}

.checkout-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.checkout-btn.is-ready {
  opacity: 1;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 45, 31, 0.22);
}

.payment-info,
.profile-panel,
.original-menu {
  padding-top: 42px;
  padding-bottom: 42px;
}

.payment-info {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-card {
  background: #111216;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 18px;
}

.profile-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hidden { display: none !important; }

.profile-auth { display: grid; gap: 16px; }

.profile-tabs {
  display: inline-flex;
  width: fit-content;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #0b0c0f;
}

.profile-tab {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
}

.profile-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #e93524, #ff6f24);
  box-shadow: 0 8px 18px rgba(232, 53, 37, 0.25);
}

.profile-auth-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.profile-auth-form button { grid-column: 1 / -1; }
.profile-account { display: grid; gap: 18px; }

.profile-account-head,
.profile-account-head > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.profile-account-head > div > div { display: grid; gap: 2px; }
.profile-account-head h3,
.profile-account-head p { margin: 0; }

.profile-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #ff3022, #ff9c22);
  box-shadow: 0 8px 20px rgba(255, 73, 35, 0.25);
}

.text-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 9px 12px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.text-btn:hover,
.text-btn:focus-visible {
  border-color: rgba(255, 106, 69, 0.65);
  color: #ffb093;
  outline: none;
}

.profile-points {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 142, 39, 0.22);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 133, 23, 0.07);
}

.profile-points strong { color: #ffd078; }

.order-history {
  display: grid;
  gap: 10px;
}

.order-history article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.order-card {
  position: relative;
  overflow: hidden;
}

.order-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
}

.order-history article > div,
.order-history footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.order-history p {
  color: var(--muted);
}

.order-history footer span {
  color: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 45, 31, 0.18);
  font-weight: 900;
}

.status-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.status-track i {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.status-received .status-track i:nth-child(-n + 1),
.status-paid .status-track i:nth-child(-n + 1),
.status-cooking .status-track i:nth-child(-n + 2),
.status-delivery .status-track i:nth-child(-n + 3),
.status-done .status-track i:nth-child(-n + 4) {
  background: var(--red);
}

.status-delivery .order-history footer span,
.status-done .order-history footer span,
.order-card.status-delivery footer span,
.order-card.status-done footer span {
  background: rgba(22, 182, 95, 0.18);
  color: #8af5b6;
}

.order-card.status-done::before,
.order-card.status-delivery::before {
  background: var(--green);
}

.order-card.status-done .status-track i,
.order-card.status-delivery .status-track i:nth-child(-n + 3) {
  background: var(--green);
}

.order-history footer span {
  font-weight: 900;
}

.original-menu img {
  width: min(860px, 100%);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.checkout-modal {
  width: min(580px, calc(100vw - 28px));
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: #111216;
  color: #fff;
}

.checkout-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.checkout-form {
  position: relative;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.close-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.location-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.location-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.location-box span {
  color: var(--muted);
}

.location-btn {
  border: 1px solid rgba(22, 182, 95, 0.56);
  color: #fff;
  background: rgba(22, 182, 95, 0.12);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secure-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  background: #202128;
  color: white;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translateY(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease, visibility 0s linear 180ms;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.floating-cart {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 75;
  width: min(520px, calc(100% - 32px));
  min-height: 72px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 184, 66, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(144, 37, 22, 0.98), rgba(83, 25, 28, 0.98) 54%, rgba(41, 31, 35, 0.98));
  box-shadow: 0 24px 70px rgba(113, 25, 16, 0.42);
  backdrop-filter: blur(18px);
  transform: translate(-50%, calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.floating-cart.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cart-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 0 24px rgba(255, 45, 31, 0.28);
}

.floating-cart-icon svg {
  width: 30px;
  height: 30px;
}

.floating-cart strong,
.floating-cart small {
  display: block;
}

.floating-cart small {
  color: rgba(255, 242, 224, 0.78);
  margin-top: 3px;
}

.floating-cart > b {
  border-radius: 999px;
  color: #6c190d;
  background: linear-gradient(135deg, #ffd078, #ff9d39);
  padding: 12px 18px;
  font-size: 0.9rem;
}

.bottom-nav {
  display: none;
}

.offline-page,
.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.offline-card,
.legal-card {
  width: min(820px, 100%);
  background: #111216;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .order-layout,
  .payment-info,
  .home-actions {
    grid-template-columns: 1fr;
  }

  .cart {
    position: static;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 168px;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
  }

  .announcement-bar {
    position: sticky;
    top: 94px;
    z-index: 49;
    margin-top: 94px;
    min-height: 42px;
    padding: 8px 16px;
  }

  .nav-shell {
    position: relative;
    min-height: 94px;
    padding: 16px 86px 14px 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
  }

  .nav-links {
    display: none;
  }

  .phone-link {
    position: static;
    display: inline-flex;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    margin-top: 2px;
  }

  .header-cart {
    position: absolute;
    right: 20px;
    top: 14px;
  }

  .hero {
    min-height: 0;
    padding: 116px 20px 24px;
    align-items: flex-start;
  }

  .hero-copy {
    border-radius: 22px;
    padding: 22px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  #shporta,
  #menu,
  #profili,
  #pagesa {
    scroll-margin-top: 112px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .home-actions,
  .order-layout,
  .payment-info,
  .profile-panel,
  .original-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-card {
    grid-template-columns: 62px 1fr auto;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
  }

  .tabs {
    display: flex;
    overflow-x: auto;
  }

  .tab {
    min-width: 132px;
  }

  .item-visual {
    height: 130px;
  }

  .size-options,
  .extra-options,
  .flavor-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .flavor-chips span {
    width: 100%;
    font-size: 0.83rem;
    padding: 0 8px;
  }

  .floating-cart {
    bottom: 86px;
    grid-template-columns: 48px 1fr auto;
    min-height: 64px;
    border-radius: 18px;
  }

  .floating-cart-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .floating-cart > b {
    padding: 10px 13px;
  }

  .location-box,
  .profile-form {
    grid-template-columns: 1fr;
  }

  .profile-auth-form button { grid-column: auto; }
  .profile-account-head { align-items: flex-start; }

  .bottom-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(14, 15, 19, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 8px 14px;
    backdrop-filter: blur(18px);
  }

  .bottom-nav a {
    display: grid;
    place-items: center;
    gap: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .bottom-nav span {
    font-size: 1.2rem;
  }

.bottom-nav a.active,
  .bottom-nav a:hover {
    color: var(--red);
  }
}

/* v42 — porosia aktive mbetet gjatë navigimit; refresh-i i plotë e mbyll kartelën */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Lejo kolonat e grid-it të tkurren në telefon; tab-et rrëshqasin brenda tyre. */
.menu-area,
.order-layout > .cart {
  min-width: 0;
}

.tracking-code-value {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.tracking-code-value strong {
  overflow-wrap: anywhere;
}

.copy-code-btn {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(143, 33, 25, 0.18);
  border-radius: 11px;
  color: #8f2119;
  background: #fffaf1;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.copy-code-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-code-btn:hover,
.copy-code-btn:focus-visible,
.copy-code-btn.copied {
  color: #fff;
  border-color: #16895a;
  background: #16895a;
  transform: translateY(-1px);
  outline: none;
}

.copy-code-btn.compact {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border-radius: 9px;
}

.copy-code-btn.compact svg {
  width: 16px;
  height: 16px;
}

.persistent-order-tracker {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 77;
  width: min(370px, calc(100vw - 28px));
  padding: 14px;
  color: #3b241c;
  border: 1px solid rgba(113, 48, 28, 0.15);
  border-radius: 22px;
  background: rgba(255, 251, 243, 0.98);
  box-shadow: 0 20px 58px rgba(77, 35, 21, 0.2);
  backdrop-filter: blur(18px);
  transition: bottom 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

body.has-floating-cart .persistent-order-tracker {
  bottom: 106px;
}

.persistent-order-tracker.status-changed {
  animation: trackerStatusChanged 850ms ease 2;
}

.persistent-order-tracker.is-final {
  border-color: rgba(22, 137, 90, 0.26);
  background: rgba(243, 253, 246, 0.98);
}

.persistent-order-tracker.is-cancelled {
  border-color: rgba(180, 34, 34, 0.24);
  background: rgba(255, 244, 241, 0.98);
}

.persistent-tracker-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
}

.persistent-tracker-signal {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #ffe5d1;
}

.persistent-tracker-signal i {
  width: 11px;
  height: 11px;
  border: 3px solid #e04a2b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(224, 74, 43, 0.36);
  animation: trackingPulse 1.8s infinite;
}

.is-final .persistent-tracker-signal { background: #e1f5e8; }
.is-final .persistent-tracker-signal i { border-color: #16895a; animation: none; }
.is-cancelled .persistent-tracker-signal { background: #ffe0dc; }
.is-cancelled .persistent-tracker-signal i { border-color: #b72f28; animation: none; }

.persistent-tracker-open {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 0;
  text-align: left;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.persistent-tracker-open small {
  color: #8b7368;
  font-size: 0.72rem;
  font-weight: 800;
}

.persistent-tracker-open strong {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.persistent-tracker-dismiss {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: #7f6358;
  background: #f1e6d8;
  cursor: pointer;
}

.persistent-tracker-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 11px 2px 10px;
}

.persistent-tracker-progress::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  height: 3px;
  border-radius: 999px;
  background: #eadbc9;
}

.persistent-tracker-progress i {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  justify-self: center;
  border: 2px solid #eadbc9;
  border-radius: 50%;
  background: #fffaf2;
}

.persistent-tracker-progress i.is-complete {
  border-color: #ed592c;
  background: #ed592c;
}

.is-final .persistent-tracker-progress i.is-complete {
  border-color: #16895a;
  background: #16895a;
}

.persistent-tracker-foot {
  display: grid;
  grid-template-columns: auto 30px minmax(108px, auto);
  gap: 7px;
  align-items: center;
}

.persistent-tracker-foot > span {
  overflow: hidden;
  color: #8f2119;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#persistentTrackerDetails {
  min-height: 32px;
  padding: 0 11px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #d93f27, #f07822);
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
}

@keyframes trackingPulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 74, 43, 0.36); }
  70% { box-shadow: 0 0 0 9px rgba(224, 74, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 74, 43, 0); }
}

@keyframes trackerStatusChanged {
  50% { transform: translateY(-4px); box-shadow: 0 24px 68px rgba(214, 69, 36, 0.32); }
}

@media (max-width: 720px) {
  body.has-active-tracking {
    padding-bottom: calc(190px + env(safe-area-inset-bottom));
  }

  body.has-active-tracking.has-floating-cart {
    padding-bottom: calc(282px + env(safe-area-inset-bottom));
  }

  .persistent-order-tracker,
  body.has-floating-cart .persistent-order-tracker {
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    padding: 11px 12px;
    border-radius: 18px;
  }

  body.has-active-tracking .floating-cart {
    bottom: calc(196px + env(safe-area-inset-bottom));
  }

  body.has-active-tracking .toast {
    right: 10px;
    bottom: calc(196px + env(safe-area-inset-bottom));
    left: 10px;
    max-width: none;
  }

  body.has-active-tracking.has-floating-cart .toast {
    bottom: calc(286px + env(safe-area-inset-bottom));
  }

  .persistent-tracker-progress {
    margin: 8px 2px 7px;
  }

  .tracking-code-row {
    gap: 10px;
    padding: 11px 12px;
  }

  .tracking-code-value {
    max-width: 68%;
  }

  .tracking-form input,
  .order-status-modal button,
  .persistent-order-tracker button {
    font-size: 16px;
  }

  .order-status-modal {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 22px;
  }

  .live-order-shell {
    padding: 20px 15px calc(18px + env(safe-area-inset-bottom));
  }

  .live-order-shell h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 380px) {
  .persistent-tracker-head { grid-template-columns: 34px minmax(0, 1fr) 30px; gap: 8px; }
  .persistent-tracker-signal { width: 34px; height: 34px; border-radius: 11px; }
  .persistent-tracker-foot { grid-template-columns: minmax(0, 1fr) 30px auto; }
  #persistentTrackerDetails { padding: 0 8px; font-size: 0.7rem; }
  .tracking-code-row > span { display: none; }
  .tracking-code-value { width: 100%; max-width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .persistent-tracker-signal i,
  .persistent-order-tracker.status-changed { animation: none; }
}

/* v50 — checkout i qartë, gabime brenda dialogut dhe orar i dukshëm */
.checkout-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding-right: 44px;
}

.checkout-heading > div { min-width: 0; }
.checkout-heading .kicker { margin-bottom: 8px; }
.checkout-heading h2 { margin-bottom: 6px; }
.checkout-heading > div > p:last-child {
  margin: 0;
  color: #78675f;
  font-size: 0.84rem;
  line-height: 1.45;
}

.checkout-secure-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #1f9d67, #117349);
  box-shadow: 0 10px 26px rgba(17, 115, 73, 0.23);
  font-size: 1.25rem;
  font-weight: 950;
}

.checkout-summary-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(111, 66, 43, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff6e8, #fffdf9);
}

.checkout-summary-strip > div {
  display: grid;
  gap: 3px;
  padding: 7px 9px;
  border-right: 1px solid rgba(111, 66, 43, 0.1);
}

.checkout-summary-strip > div:last-child { border-right: 0; }
.checkout-summary-strip span { color: #89746a; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.checkout-summary-strip strong { color: #342019; font-size: 0.92rem; }
#checkoutModalTotal { color: #aa2d1d; font-size: 1.04rem; }

.checkout-alert {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(184, 48, 35, 0.28);
  border-radius: 15px;
  color: #92271f;
  background: #fff0ec;
  box-shadow: 0 10px 26px rgba(108, 29, 22, 0.12);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.4;
}

.checkout-alert::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 13px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #bd392b;
  transform: translateY(-50%);
  font-size: 0.75rem;
}

.checkout-alert[hidden] { display: none; }
.checkout-form > .checkout-btn {
  box-shadow: 0 12px 28px rgba(207, 58, 32, 0.22);
}

.business-hours-badge.is-closed {
  border: 1px solid rgba(255, 218, 204, 0.28);
  background: linear-gradient(135deg, #a4251b, #d44725);
  box-shadow: 0 7px 20px rgba(104, 21, 15, 0.22);
}

.business-hours-card.is-closed {
  grid-template-columns: 14px minmax(0, 1fr);
  padding: 14px;
  border-width: 2px;
  background: linear-gradient(135deg, #fff0eb, #fff8f3);
  box-shadow: 0 10px 26px rgba(158, 47, 34, 0.1);
}

.business-hours-card.is-closed strong { font-size: 0.88rem; }
.business-hours-card.is-closed small { margin-top: 2px; font-size: 0.74rem; }
body.online-orders-closed #checkoutBtn {
  color: #8b3429;
  border-color: rgba(164, 50, 38, 0.2);
  background: #f6dfd8;
  box-shadow: none;
}

@media (max-width: 720px) {
  .checkout-heading { grid-template-columns: 40px minmax(0, 1fr); gap: 10px; padding-right: 38px; }
  .checkout-secure-mark { width: 40px; height: 40px; border-radius: 13px; }
  .checkout-heading > div > p:last-child { font-size: 0.76rem; }
  .checkout-summary-strip { grid-template-columns: 1fr 1fr 1fr; gap: 4px; padding: 7px; border-radius: 15px; }
  .checkout-summary-strip > div { padding: 6px; }
  .checkout-summary-strip span { font-size: 0.58rem; }
  .checkout-summary-strip strong { font-size: 0.78rem; }
  #checkoutModalTotal { font-size: 0.9rem; }
  .checkout-alert { padding: 11px 12px 11px 40px; font-size: 0.78rem; }
  .business-hours-badge.is-closed { white-space: normal; text-align: center; }
}

/* v45 — orari automatik i porosive online */
.business-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 900;
  white-space: nowrap;
}
.business-hours-badge.is-open { color: #dff9e9; background: rgba(20, 118, 75, 0.72); }
.business-hours-badge.is-closed { color: #fff1e9; background: rgba(137, 36, 27, 0.78); }
.business-hours-badge.is-checking { color: #fff4d6; background: rgba(94, 68, 39, 0.55); }

.temporary-closure {
  width: min(1180px, calc(100% - 32px)); margin: 22px auto 10px; display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(300px, .85fr); overflow: hidden;
  border: 1px solid rgba(176, 86, 48, .25); border-radius: 26px; background: #fffaf2;
  box-shadow: 0 22px 60px rgba(79, 42, 24, .14);
}
.temporary-closure[hidden] { display: none; }
.temporary-closure-visual { min-height: 330px; background: #e9c18d; }
.temporary-closure-visual img { width: 100%; height: 100%; min-height: 330px; display: block; object-fit: cover; object-position: center; }
.temporary-closure-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 58px); color: #38251c; }
.temporary-closure-copy h2 { margin: 8px 0 12px; font-size: clamp(1.65rem, 3vw, 2.75rem); line-height: 1.05; }
.temporary-closure-copy > p:not(.kicker) { margin: 0 0 22px; color: #70594d; line-height: 1.65; }
.temporary-closure-dates { display: grid; grid-template-columns: auto 1fr; gap: 7px 16px; padding: 16px 18px; border-radius: 16px; background: #f6eadb; }
.temporary-closure-dates span { color: #9a6b51; font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.temporary-closure-dates strong { color: #a83a25; text-align: right; }
.temporary-closure-copy small { margin-top: 14px; color: #846e61; line-height: 1.5; }
body.temporary-closure-active {
  min-height: 100dvh;
  background: radial-gradient(circle at 50% 10%, #fffaf1 0, #f7eadb 58%, #ead3bb 100%);
  overflow-x: hidden;
}
body.temporary-closure-active > :not(#temporaryClosureNotice):not(script) { display: none !important; }
body.temporary-closure-active #temporaryClosureNotice {
  width: min(calc(100% - 32px), 1180px);
  min-height: calc(100dvh - 32px);
  margin: 16px auto;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
  align-items: stretch;
  box-shadow: 0 30px 90px rgba(88, 52, 30, .18);
}
body.temporary-closure-active .temporary-closure-visual,
body.temporary-closure-active .temporary-closure-visual img { min-height: 100%; }
@media (max-width: 720px) {
  .temporary-closure { width: min(100% - 20px, 560px); grid-template-columns: 1fr; border-radius: 20px; }
  .temporary-closure-visual, .temporary-closure-visual img { min-height: 210px; max-height: 260px; }
  .temporary-closure-copy { padding: 24px 20px 28px; }
  body.temporary-closure-active #temporaryClosureNotice {
    width: min(calc(100% - 18px), 560px);
    min-height: calc(100dvh - 18px);
    margin: 9px auto;
    grid-template-columns: 1fr;
  }
  body.temporary-closure-active .temporary-closure-visual,
  body.temporary-closure-active .temporary-closure-visual img { min-height: 230px; max-height: 38vh; }
  body.temporary-closure-active .temporary-closure-copy { justify-content: flex-start; }
}

.business-hours-card {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 13px 0;
  padding: 11px 12px;
  border: 1px solid rgba(22, 137, 90, 0.19);
  border-radius: 15px;
  background: rgba(235, 250, 240, 0.94);
}
.business-hours-card > span { width: 10px; height: 10px; border-radius: 50%; background: #20b76d; box-shadow: 0 0 0 5px rgba(32, 183, 109, 0.11); }
.business-hours-card > div { min-width: 0; display: grid; gap: 2px; }
.business-hours-card strong { color: #176641; font-size: 0.78rem; }
.business-hours-card small { color: #547266; font-size: 0.68rem; line-height: 1.35; }
.business-hours-card.is-closed { border-color: rgba(198, 56, 44, 0.23); background: rgba(255, 238, 233, 0.96); }
.business-hours-card.is-closed > span { background: #c6382c; box-shadow: 0 0 0 5px rgba(198, 56, 44, 0.1); }
.business-hours-card.is-closed strong { color: #a62d24; }
.business-hours-card.is-closed small { color: #81544d; }
.business-hours-card.is-checking { border-color: rgba(196, 142, 54, 0.2); background: rgba(255, 247, 226, 0.95); }
.business-hours-card.is-checking > span { background: #d49a33; box-shadow: 0 0 0 5px rgba(212, 154, 51, 0.1); }
.business-hours-card.is-checking strong { color: #815c1e; }

@media (max-width: 720px) {
  .business-hours-badge { padding: 4px 8px; font-size: 0.62rem; }
  .business-hours-card { margin: 11px 0; }
}

/* Përditësimi i menusë dhe rrjedhës së porosisë */
.announcement-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 9px 22px;
  color: #fff8ef;
  background: linear-gradient(90deg, #b83c00, #ff7a1a 48%, #d84b00);
  font-size: 0.86rem;
  font-weight: 800;
}

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 22px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 76% 26%, rgba(255, 122, 26, 0.24), transparent 24%);
}

.hero-copy {
  border-color: rgba(255, 122, 26, 0.24);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-highlights span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.06);
  color: #eee8e4;
  font-size: 0.78rem;
  font-weight: 800;
}

.order-steps {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 22px 10px;
}

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

.steps-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.steps-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 122, 26, 0.32);
  border-radius: 50%;
}

.steps-grid span {
  position: relative;
  z-index: 1;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps-grid h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 8px;
  font-size: 1.32rem;
}

.steps-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.item-card,
.feature-card,
.steps-grid article {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.item-card:hover,
.feature-card:hover,
.steps-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.add-btn,
.checkout-btn,
.primary-btn {
  background: linear-gradient(135deg, #ff4b25, #e51d12);
  box-shadow: 0 14px 28px rgba(229, 29, 18, 0.22);
}

.add-btn:hover,
.checkout-btn.is-ready:hover,
.primary-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.cart-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border: 1px dashed rgba(242, 184, 75, 0.78);
  border-radius: 14px;
  background: rgba(242, 184, 75, 0.1);
  color: #fff6d8;
  font-size: 0.88rem;
}

.cart-promo strong {
  color: #f6c556;
  white-space: nowrap;
}

.split-builder-disabled small {
  color: var(--muted);
  line-height: 1.45;
}

.original-menu {
  padding-top: 58px;
  padding-bottom: 48px;
}

.original-menu img {
  border-color: rgba(255, 122, 26, 0.48);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 28px 22px 126px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
  font-size: 1.1rem;
}

.site-footer span {
  margin-top: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: #e7e0dc;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--orange);
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .announcement-bar {
    justify-content: flex-start;
    font-size: 0.76rem;
    gap: 6px 14px;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .order-steps {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 20px 126px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cart-promo {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .bottom-nav {
    min-height: 76px;
    padding: 7px 10px max(8px, env(safe-area-inset-bottom));
    gap: 4px;
    background: linear-gradient(180deg, rgba(42, 24, 25, 0.98), rgba(20, 18, 23, 0.98));
    border-top-color: rgba(255, 164, 92, 0.28);
    box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.22);
  }

  .bottom-nav a {
    min-height: 58px;
    padding: 5px 2px;
    border: 1px solid transparent;
    border-radius: 16px;
    color: #c7bebc;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
  }

  .bottom-nav span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 1.08rem;
    line-height: 1;
  }

  .bottom-nav a.active,
  .bottom-nav a:hover,
  .bottom-nav a:focus-visible {
    color: #fff7ef;
    border-color: rgba(255, 161, 71, 0.28);
    background: linear-gradient(135deg, rgba(238, 65, 34, 0.72), rgba(255, 135, 26, 0.38));
    transform: translateY(-2px);
    outline: none;
  }

  .bottom-nav a.active span,
  .bottom-nav a:hover span,
  .bottom-nav a:focus-visible span {
    color: #7d180c;
    background: linear-gradient(135deg, #fff0bc, #ffb04b);
  }
}

/* Hallall Pizza 2026 — paleta krem dhe gjurmimi live */
:root {
  --bg: #fff7e9;
  --panel: #fffdf8;
  --panel-soft: #f7eddd;
  --line: rgba(78, 37, 23, 0.13);
  --muted: #78685f;
  --text: #2c1b15;
  --red: #e63f24;
  --red-dark: #8f2119;
  --orange: #f28b22;
  --green: #16895a;
  --gold: #d99a2b;
  --shadow: 0 22px 55px rgba(91, 48, 25, 0.13);
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 139, 34, 0.1), transparent 24rem),
    linear-gradient(180deg, #fffaf1 0%, #fff4e2 62%, #f9ead4 100%);
  color: var(--text);
}

.site-header {
  background: rgba(255, 250, 241, 0.9);
  border-bottom-color: rgba(92, 45, 27, 0.1);
  box-shadow: 0 8px 28px rgba(88, 46, 26, 0.07);
}

.brand strong { color: #b52b1e; }
.nav-links a { color: #4c332a; }
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current {
  color: #8f2119;
  background: #fff0dc;
  border-color: rgba(230, 63, 36, 0.2);
}

.phone-link { color: #432a21; }
.phone-link::before { color: #16895a; }
.header-cart {
  width: 48px;
  height: 48px;
  color: #8f2119;
  border-color: rgba(143, 33, 25, 0.2);
  background: #fffdf8;
  box-shadow: 0 10px 26px rgba(91, 48, 25, 0.11);
}
.cart-symbol { width: 25px; height: 25px; }

.announcement-bar {
  color: #fffaf2;
  background: linear-gradient(90deg, #8f2119, #d84824 52%, #ed8525);
  box-shadow: 0 8px 24px rgba(143, 33, 25, 0.16);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.99) 0%, rgba(255, 248, 235, 0.93) 47%, rgba(255, 248, 235, 0.2) 100%),
    url("assets/hero-pizza.png") center / cover no-repeat;
}
.hero::after { background: radial-gradient(circle at 72% 30%, rgba(242, 139, 34, 0.16), transparent 28%); }
.hero-copy {
  border-color: rgba(143, 33, 25, 0.12);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 24px 58px rgba(91, 48, 25, 0.12);
  backdrop-filter: blur(8px);
}
.hero h1,
.section-head h2,
.payment-info h2,
.tracking-panel h2 { color: #2c1b15; }
.hero-text,
.steps-grid p,
.feature-card small,
.payment-info p,
.profile-card p { color: var(--muted); }
.hero-highlights span {
  color: #5b3a2e;
  border-color: rgba(143, 33, 25, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.feature-card {
  min-height: 92px;
  grid-template-columns: 54px 1fr auto;
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 34px rgba(91, 48, 25, 0.09);
}
.feature-card strong { font-size: 1.08rem; }
.feature-card b { color: var(--red); font-size: 2.1rem; }
.feature-icon {
  width: 54px;
  height: 54px;
  border-width: 1px;
  border-color: rgba(230, 63, 36, 0.32);
  box-shadow: 0 9px 20px rgba(143, 33, 25, 0.14);
}

.steps-grid article {
  min-height: 170px;
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 32px rgba(91, 48, 25, 0.07);
}
.steps-grid h3 { color: #38231b; }

.tab {
  min-height: 76px;
  color: #422b23;
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 8px 20px rgba(91, 48, 25, 0.05);
}
.tab.active {
  color: #9d251a;
  border-color: rgba(230, 63, 36, 0.28);
  background: linear-gradient(145deg, #fff3df, #ffe3c5);
}

.item-card {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 34px rgba(91, 48, 25, 0.08);
}
.item-card p { color: var(--muted); }
.item-visual { background: #f3e7d7; }
.control-row > span,
.split-builder > span,
.control-row > label,
.split-flavor-group strong { color: #3c261e; }
.size-options label,
.extra-options label,
.split-counts label,
.payment-methods label,
.flavor-chips span {
  color: #50362c;
  border-color: rgba(78, 37, 23, 0.13);
  background: #fbf2e5;
}
.note-input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.profile-form input,
.tracking-form input,
.split-flavors select {
  color: #2c1b15;
  border-color: rgba(78, 37, 23, 0.16);
  background: #fffaf1;
}

.cart {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 188, 88, 0.23), transparent 34%),
    linear-gradient(155deg, #6f1d1b, #8f251d 55%, #4b2420);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(94, 27, 22, 0.25);
}
.cart .kicker { color: #ffc875; }
.cart .cart-line { background: rgba(255, 255, 255, 0.08); }
.cart #cartCount,
.cart .empty-cart,
.cart .cart-line p { color: rgba(255, 247, 234, 0.75); }

.payment-info {
  border-color: rgba(78, 37, 23, 0.1);
}
.profile-card,
.tracking-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}
.profile-card { color: var(--text); }
.profile-tabs { border-color: var(--line); background: #f4e8d8; }
.profile-points {
  color: #6b5146;
  border-color: rgba(217, 154, 43, 0.22);
  background: #fff4d9;
}
.profile-points strong { color: #9b6211; }
.order-history article {
  color: var(--text);
  border-color: var(--line);
  background: #fff9ef;
}
.order-history footer span { color: #9d251a; background: #ffe2d5; }
.status-track i { background: rgba(78, 37, 23, 0.12); }
.text-btn { color: #6c2b23; border-color: rgba(108, 43, 35, 0.2); }

.tracking-panel {
  max-width: 1136px;
  margin: 28px auto;
  padding: 28px;
}
.tracking-intro {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}
.tracking-intro h2 { margin: 4px 0 8px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.tracking-intro p { max-width: 720px; margin-bottom: 0; color: var(--muted); line-height: 1.6; }
.tracking-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #e63f24, #f28b22);
  box-shadow: 0 12px 26px rgba(230, 63, 36, 0.22);
  font-size: 1.45rem;
  font-weight: 900;
}
.tracking-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: 24px;
}
.tracking-form label { display: grid; gap: 7px; color: #493027; font-weight: 800; }
.tracking-form input { min-height: 48px; border-radius: 14px; padding: 0 14px; }
.tracking-form .primary-btn { min-height: 48px; white-space: nowrap; }
.tracking-result { margin-top: 18px; }
.tracking-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  color: #8f2119;
  background: #ffe5dc;
  border: 1px solid rgba(230, 63, 36, 0.2);
}

.live-status-card {
  padding: 18px;
  border: 1px solid rgba(78, 37, 23, 0.12);
  border-radius: 20px;
  background: #fff9ee;
}
.live-status-head,
.live-status-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.live-status-head > div { display: grid; gap: 3px; }
.live-status-head small { color: var(--muted); }
.live-status-head > span {
  border-radius: 999px;
  padding: 8px 11px;
  color: #8f2119;
  background: #ffe4d2;
  font-weight: 900;
  font-size: 0.82rem;
}
.live-status-card > p { color: var(--muted); line-height: 1.5; }
.live-status-card footer { margin-top: 16px; color: var(--muted); }
.live-status-card footer strong { color: #432a21; }
.live-status-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.live-status-steps div { position: relative; display: grid; gap: 7px; justify-items: center; text-align: center; color: #9c8b82; font-size: 0.72rem; font-weight: 800; }
.live-status-steps div::before {
  content: "";
  position: absolute;
  left: calc(-50% + 14px);
  right: calc(50% + 14px);
  top: 13px;
  height: 3px;
  border-radius: 999px;
  background: #eadcca;
}
.live-status-steps div:first-child::before { display: none; }
.live-status-steps i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #8f776c;
  background: #f0e4d4;
  font-style: normal;
}
.live-status-steps .is-complete { color: #8f2119; }
.live-status-steps .is-complete::before,
.live-status-steps .is-complete i { color: #fff; background: linear-gradient(135deg, #e63f24, #f28b22); }
.live-status-card.is-cancelled { border-color: rgba(180, 34, 34, 0.26); }
.cancelled-note { margin-top: 14px; color: #8f2119; font-weight: 800; }

.checkout-modal,
.order-status-modal {
  color: var(--text);
  background: #fffdf8;
  box-shadow: 0 30px 90px rgba(76, 31, 19, 0.32);
}
.checkout-modal::backdrop,
.order-status-modal::backdrop { background: rgba(55, 28, 19, 0.58); backdrop-filter: blur(4px); }
.checkout-form label { color: #432a21; }
.close-btn { color: #6d352b; background: #f5e8d8; }
.location-box { color: #432a21; border-color: var(--line); background: #fff6e8; }
.location-btn { color: #146a48; background: #e6f5eb; }
.order-status-modal {
  width: min(660px, calc(100vw - 28px));
  border: 0;
  border-radius: 28px;
  padding: 0;
}
.live-order-shell { position: relative; padding: 30px; }
.live-order-shell h2 { margin: 8px 0; font-size: clamp(1.8rem, 5vw, 2.6rem); }
.live-order-copy { color: var(--muted); line-height: 1.6; }
.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #16895a, #3bb876);
  box-shadow: 0 12px 26px rgba(22, 137, 90, 0.2);
  font-size: 1.35rem;
  font-weight: 900;
}
.tracking-code-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px dashed rgba(143, 33, 25, 0.3);
  border-radius: 14px;
  background: #fff2df;
}
.tracking-code-row span { color: var(--muted); }
.tracking-code-row strong { color: #8f2119; letter-spacing: 0.08em; }
.secondary-status-btn {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border: 1px solid rgba(143, 33, 25, 0.18);
  border-radius: 999px;
  color: #8f2119;
  background: #fff7ea;
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 244, 230, 0.72);
  border: 0;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(145deg, #4f211e, #7c231c);
}
.site-footer strong,
.footer-links { color: #fff8ef; }
.offline-card,
.legal-card { color: var(--text); background: #fffdf8; border-color: var(--line); }

#statusi { scroll-margin-top: 96px; }

@media (max-width: 980px) {
  .tracking-panel { margin-right: 22px; margin-left: 22px; }
  .tracking-form { grid-template-columns: 1fr 1fr; }
  .tracking-form .primary-btn { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { background: rgba(255, 250, 241, 0.95); }
  .hero {
    padding-top: 112px;
    background:
      linear-gradient(180deg, rgba(255, 248, 235, 0.9), rgba(255, 248, 235, 0.98)),
      url("assets/hero-pizza.png") center / cover no-repeat;
  }
  .feature-card { grid-template-columns: 48px 1fr auto; }
  .feature-icon { width: 48px; height: 48px; }
  .tracking-panel { margin: 22px 20px; padding: 21px; }
  .tracking-intro { grid-template-columns: 44px 1fr; gap: 12px; }
  .tracking-icon { width: 44px; height: 44px; border-radius: 14px; font-size: 1.15rem; }
  .tracking-form { grid-template-columns: 1fr; }
  .tracking-form .primary-btn { grid-column: auto; }
  .live-status-steps { gap: 3px; }
  .live-status-steps div { font-size: 0.61rem; }
  .live-status-steps span { max-width: 58px; }
  .live-order-shell { padding: 24px 18px; }
  .bottom-nav {
    background: rgba(255, 249, 239, 0.97);
    border-top-color: rgba(78, 37, 23, 0.12);
    box-shadow: 0 -12px 32px rgba(91, 48, 25, 0.12);
  }
  .bottom-nav a { color: #766158; }
  .bottom-nav span { width: 25px; height: 25px; font-size: 1rem; background: #f1e5d5; }
  .bottom-nav a.active,
  .bottom-nav a:hover,
  .bottom-nav a:focus-visible {
    color: #8f2119;
    border-color: rgba(230, 63, 36, 0.16);
    background: #fff0dc;
  }
  .bottom-nav a.active span,
  .bottom-nav a:hover span,
  .bottom-nav a:focus-visible span { color: #fff; background: linear-gradient(135deg, #e63f24, #f28b22); }
  #statusi { scroll-margin-top: 112px; }
}

/* Navigim modern dhe fotografi të plota në telefon */
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #d93421, #f58d24);
  box-shadow: 0 9px 22px rgba(180, 42, 28, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-links {
  gap: 7px;
  padding: 5px;
  border: 1px solid rgba(78, 37, 23, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-links a {
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 13px;
  font-size: 0.88rem;
}

.nav-link-icon {
  color: #9d6d58;
  font-size: 19px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover .nav-link-icon,
.nav-links a:focus-visible .nav-link-icon,
.nav-links a.is-current .nav-link-icon {
  color: #d43a22;
  transform: translateY(-1px);
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.nav-links a::after { right: 14px; bottom: 3px; left: 14px; height: 2px; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(22, 137, 90, 0.14);
  border-radius: 13px;
  background: rgba(228, 246, 235, 0.74);
  transition: transform 160ms ease, background 160ms ease;
}
.phone-link::before { content: none; }
.phone-link .material-symbols-rounded { color: #16895a; font-size: 19px; }
.phone-link:hover { transform: translateY(-1px); background: #ddf3e6; }

.tab {
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 12px 14px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}
.tab:hover { transform: translateY(-2px); border-color: rgba(230, 63, 36, 0.23); box-shadow: 0 12px 24px rgba(91, 48, 25, 0.09); }
.tab-icon {
  display: grid;
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #9b6955;
  background: #f5e8d8;
  font-size: 20px;
}
.tab.active .tab-icon {
  color: #fff;
  background: linear-gradient(145deg, #dc3b22, #f58c24);
  box-shadow: 0 8px 18px rgba(220, 59, 34, 0.2);
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}
.tab span:not(.tab-icon) { align-self: end; }
.tab small { grid-column: 2; align-self: start; }

@media (max-width: 720px) {
  .nav-shell {
    min-height: 90px;
    padding: 13px 76px 12px 16px;
    gap: 6px;
  }
  .announcement-bar { top: 90px; margin-top: 90px; }
  .brand { gap: 9px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 12px; font-size: 0.74rem; }
  .brand strong { font-size: 1.12rem; }
  .brand small { font-size: 0.68rem; }
  .phone-link {
    min-height: 28px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.74rem;
  }
  .phone-link .material-symbols-rounded { font-size: 16px; }
  .header-cart { top: 14px; right: 16px; width: 44px; height: 44px; }
  .cart-symbol { width: 23px; height: 23px; }

  .tabs {
    gap: 9px;
    margin-right: -20px;
    padding: 2px 20px 9px 0;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab {
    min-width: 142px;
    min-height: 70px;
    grid-template-columns: 32px 1fr;
    padding: 10px 12px;
    border-radius: 16px;
  }
  .tab-icon { width: 31px; height: 31px; border-radius: 10px; font-size: 18px; }

  .item-card {
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
  }
  .item-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    border-radius: 17px;
    background: #eadbc8;
  }
  .item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .item-card h3 { font-size: 1.18rem; }

  .bottom-nav {
    inset: auto 10px max(8px, env(safe-area-inset-bottom));
    min-height: 68px;
    padding: 6px;
    border: 1px solid rgba(78, 37, 23, 0.12);
    border-radius: 22px;
    overflow: hidden;
  }
  .bottom-nav a {
    position: relative;
    min-height: 55px;
    gap: 3px;
    padding: 5px 2px 4px;
    border: 0;
    border-radius: 16px;
    font-size: 0.67rem;
  }
  .bottom-nav a small { font-size: inherit; font-weight: 800; }
  .bottom-nav a .material-symbols-rounded {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 11px;
    font-size: 20px;
    background: transparent;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
  }
  .bottom-nav a.active,
  .bottom-nav a:hover,
  .bottom-nav a:focus-visible {
    color: #8f2119;
    border: 0;
    background: #fff0dc;
    transform: none;
  }
  .bottom-nav a.active .material-symbols-rounded,
  .bottom-nav a:hover .material-symbols-rounded,
  .bottom-nav a:focus-visible .material-symbols-rounded {
    color: #fff;
    background: linear-gradient(145deg, #d93621, #f58d24);
    transform: translateY(-1px);
    font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
  }
  .floating-cart { bottom: 88px; }
}

/* Ikona pa varësi të jashtme — funksionojnë në çdo telefon */
.nav-link-icon,
.tab-icon,
.bottom-icon,
.phone-symbol {
  font-family: Inter, "Segoe UI Symbol", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-variation-settings: normal;
}

.phone-symbol {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #16895a;
  font-size: 0.7rem;
  font-weight: 900;
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 146px;
    padding: 12px 72px 58px 14px;
  }

  .nav-links {
    position: absolute;
    right: 10px;
    bottom: 8px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    width: auto;
    padding: 4px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
  }

  .nav-links a {
    min-width: 0;
    min-height: 40px;
    justify-content: center;
    gap: 4px;
    padding: 0 3px;
    border-radius: 11px;
    font-size: 0.68rem;
  }

  .nav-links a::after { right: 10px; left: 10px; }
  .nav-link-icon { flex: 0 0 auto; font-size: 14px; }
  .phone-link { width: fit-content; }
  .phone-symbol { width: 17px; height: 17px; font-size: 0.58rem; }

  .announcement-bar {
    top: 146px;
    margin-top: 146px;
  }

  .hero { padding-top: 26px; }

  #shporta,
  #menu,
  #profili,
  #pagesa,
  #statusi { scroll-margin-top: 198px; }

  .bottom-nav a .bottom-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 11px;
    color: #755f55;
    background: transparent;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
  }

  .bottom-nav a.active .bottom-icon,
  .bottom-nav a:hover .bottom-icon,
  .bottom-nav a:focus-visible .bottom-icon {
    color: #fff;
    background: linear-gradient(145deg, #d93621, #f58d24);
    transform: translateY(-1px);
  }
}

/* v38 — Ikona lokale Lucide dhe navigation bar sipas modelit modern mobil */
.ui-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: inherit;
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.icon-house { -webkit-mask-image: url("assets/icons/house.svg"); mask-image: url("assets/icons/house.svg"); }
.icon-pizza { -webkit-mask-image: url("assets/icons/pizza.svg"); mask-image: url("assets/icons/pizza.svg"); }
.icon-shopping-cart { -webkit-mask-image: url("assets/icons/shopping-cart.svg"); mask-image: url("assets/icons/shopping-cart.svg"); }
.icon-radio { -webkit-mask-image: url("assets/icons/radio.svg"); mask-image: url("assets/icons/radio.svg"); }
.icon-user { -webkit-mask-image: url("assets/icons/user-round.svg"); mask-image: url("assets/icons/user-round.svg"); }
.icon-shopping-bag { -webkit-mask-image: url("assets/icons/shopping-bag.svg"); mask-image: url("assets/icons/shopping-bag.svg"); }
.icon-sandwich { -webkit-mask-image: url("assets/icons/sandwich.svg"); mask-image: url("assets/icons/sandwich.svg"); }
.icon-cup-soda { -webkit-mask-image: url("assets/icons/cup-soda.svg"); mask-image: url("assets/icons/cup-soda.svg"); }
.icon-cooking-pot { -webkit-mask-image: url("assets/icons/cooking-pot.svg"); mask-image: url("assets/icons/cooking-pot.svg"); }
.icon-phone { -webkit-mask-image: url("assets/icons/phone.svg"); mask-image: url("assets/icons/phone.svg"); }
.icon-download { -webkit-mask-image: url("assets/icons/download.svg"); mask-image: url("assets/icons/download.svg"); }

.nav-link-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #9d6d58;
}
.nav-link-icon .ui-icon { width: 18px; height: 18px; }
.nav-links a:hover .nav-link-icon,
.nav-links a:focus-visible .nav-link-icon,
.nav-links a.is-current .nav-link-icon { color: #d43a22; }

.phone-symbol {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
}
.phone-symbol .ui-icon { width: 14px; height: 14px; }

.tab-icon .ui-icon { width: 20px; height: 20px; }
.tab.active .tab-icon .ui-icon { color: #fff; }

.legal-page { padding: 32px 20px; }
.legal-card {
  width: min(880px, 100%);
  padding: clamp(24px, 5vw, 48px);
  border-color: rgba(78, 37, 23, 0.11);
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 24px 64px rgba(91, 48, 25, 0.12);
}
.legal-card h1 {
  max-width: 690px;
  margin: 34px 0 22px;
  color: #2c1b15;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.legal-card p { color: #6f5d54; line-height: 1.75; }
.legal-kicker {
  width: fit-content;
  margin: 34px 0 -22px !important;
  padding: 7px 11px;
  border-radius: 999px;
  color: #9b2b1d !important;
  background: #ffe7d4;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-contact {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(22, 137, 90, 0.16);
  border-radius: 18px;
  color: #315c48;
  background: #edf8f0;
}
.legal-contact span { line-height: 1.55; }
.legal-date { margin-top: 24px; font-size: 0.84rem; }

@media (max-width: 720px) {
  .nav-shell {
    min-height: 88px;
    padding: 12px 70px 11px 15px;
  }
  .nav-links { display: none; }
  .announcement-bar { top: 88px; margin-top: 88px; }
  .hero { padding-top: 24px; }
  #shporta,
  #menu,
  #profili,
  #pagesa,
  #statusi { scroll-margin-top: 140px; }

  .phone-symbol { width: 20px; height: 20px; }
  .phone-symbol .ui-icon { width: 12px; height: 12px; }

  .bottom-nav {
    inset: auto 0 0;
    min-height: 78px;
    padding: 7px 7px max(9px, env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid rgba(78, 37, 23, 0.1);
    border-radius: 24px 24px 0 0;
    overflow: visible;
    background: rgba(255, 252, 246, 0.98);
    box-shadow: 0 -12px 34px rgba(75, 36, 22, 0.13);
  }
  .bottom-nav a {
    min-height: 58px;
    gap: 4px;
    padding: 3px 1px 2px;
    color: #725f56;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
  }
  .bottom-nav a .bottom-icon {
    display: grid;
    width: 54px;
    height: 32px;
    place-items: center;
    border-radius: 999px;
    color: #725f56;
    background: transparent;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
  }
  .bottom-nav .ui-icon { width: 21px; height: 21px; }
  .bottom-nav a small {
    color: inherit;
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.01em;
  }
  .bottom-nav a.active,
  .bottom-nav a:hover,
  .bottom-nav a:focus-visible {
    color: #a52b1c;
    border: 0;
    background: transparent;
    transform: none;
  }
  .bottom-nav a.active .bottom-icon,
  .bottom-nav a:hover .bottom-icon,
  .bottom-nav a:focus-visible .bottom-icon {
    color: #a52b1c;
    background: #ffe2cf;
    transform: none;
  }
  .floating-cart { bottom: 88px; }
  .legal-page { padding: 18px 14px; }
  .legal-card { padding: 24px 20px; border-radius: 22px; }
}

/* v40 — konfirmim porosie i optimizuar për telefon */
.checkout-modal {
  width: min(540px, calc(100vw - 24px));
  max-height: min(760px, calc(100dvh - 24px));
  overflow: hidden;
}

.checkout-modal[open] {
  animation: checkoutEnter 180ms ease-out;
}

.checkout-form {
  max-height: min(760px, calc(100dvh - 24px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 33, 25, 0.28) transparent;
}

.checkout-form h2 {
  margin: 0 46px 2px 0;
  color: #2c1b15;
  font-size: clamp(1.55rem, 5vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.checkout-form .kicker {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  color: #9b2b1d;
  background: #ffe7d4;
}

.checkout-form input,
.checkout-form textarea {
  color: #2c1b15;
  border-color: rgba(78, 37, 23, 0.14);
  background: #fffdf9;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: #d94a2d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 74, 45, 0.12);
}

.checkout-form input.is-invalid {
  border-color: #c63227;
  background: #fff8f6;
  box-shadow: 0 0 0 4px rgba(198, 50, 39, 0.1);
}

.field-error {
  display: none;
  align-items: center;
  gap: 6px;
  color: #a72b22;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.field-error.is-visible {
  display: flex;
}

.field-error.is-visible::before {
  content: "!";
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #c63227;
  font-size: 0.7rem;
}

#checkoutClose {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #6d352b;
  background: #f5e8d8;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 150ms ease, color 150ms ease, background 150ms ease;
  touch-action: manipulation;
}

#checkoutClose:hover,
#checkoutClose:focus-visible {
  color: #fff;
  background: #a52b1c;
  transform: scale(1.04);
  outline: none;
}

@keyframes checkoutEnter {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 720px) {
  .checkout-modal {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
  }

  .checkout-form {
    max-height: calc(100dvh - 16px);
    gap: 11px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  }

  .checkout-form label {
    gap: 6px;
    font-size: 0.88rem;
  }

  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select {
    min-height: 48px;
    padding: 12px 13px;
    border-radius: 13px;
    font-size: 16px;
  }

  .checkout-form textarea {
    min-height: 74px;
  }

  .location-box {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .location-btn,
  .checkout-form .checkout-btn {
    min-height: 48px;
  }

  .payment-methods label {
    width: 100%;
    min-height: 46px;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-modal[open] { animation: none; }
}

/* v41 — ritëm më kompakt dhe proporcional në telefon */
.order-layout {
  padding-top: 34px;
}

@media (max-width: 720px) {
  .hero {
    padding: 18px 14px 14px;
  }

  .hero-copy {
    padding: 18px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.35rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-highlights {
    display: flex;
    gap: 6px;
    margin-top: 14px;
  }

  .hero-highlights span {
    padding: 7px 9px;
    font-size: 0.69rem;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    min-height: 46px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .order-layout {
    gap: 18px;
    padding: 26px 14px 38px;
  }

  .section-head {
    margin-bottom: 13px;
  }

  .section-head h2,
  .payment-info h2 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .tabs {
    gap: 7px;
    margin-right: -14px;
    margin-bottom: 14px;
    padding-right: 14px;
  }

  .tab {
    min-width: 112px;
    min-height: 62px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .tab-icon {
    width: 29px;
    height: 29px;
  }

  .menu-grid {
    gap: 12px;
  }

  .item-card {
    gap: 10px;
    padding: 11px;
    border-radius: 20px;
  }

  .item-visual {
    width: 100%;
    height: auto;
    max-height: 210px;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .item-card h3 {
    font-size: 1.08rem;
  }

  .item-card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .size-options label,
  .extra-options label,
  .split-counts label,
  .flavor-chips span {
    padding: 8px 9px;
    border-radius: 12px;
    font-size: 0.82rem;
  }

  .add-btn {
    min-height: 48px;
  }

  .checkout-modal {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 28px);
    border-radius: 22px;
  }

  .checkout-form {
    max-height: calc(100dvh - 28px);
    gap: 9px;
    padding: 16px 14px calc(16px + env(safe-area-inset-bottom));
  }

  .checkout-form h2 {
    font-size: 1.45rem;
  }

  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select {
    min-height: 45px;
    padding: 10px 12px;
  }

  .checkout-form textarea {
    min-height: 62px;
  }

  .location-box {
    gap: 8px;
    padding: 10px;
  }

  .location-btn,
  .checkout-form .checkout-btn {
    min-height: 46px;
  }

  .payment-methods label {
    min-height: 42px;
    padding: 8px 10px;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.95rem;
  }
}

/* v43 — përvojë premium e porosisë, ETA live dhe sinjale sigurie */
.item-card-meta {
  min-width: 92px;
  display: grid;
  justify-items: end;
  gap: 7px;
}

.in-cart-badge {
  padding: 5px 8px;
  color: #19744e;
  border: 1px solid rgba(25, 116, 78, 0.2);
  border-radius: 999px;
  background: #e8f8ee;
  font-size: 0.67rem;
  font-weight: 900;
  white-space: nowrap;
}

.item-card.is-in-cart {
  border-color: rgba(25, 116, 78, 0.34);
  box-shadow: 0 14px 36px rgba(25, 116, 78, 0.09);
}

.add-btn.is-added {
  color: #fff;
  border-color: #16895a;
  background: #16895a;
  transform: translateY(-1px) scale(0.99);
}

.checkout-connection {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(22, 137, 90, 0.2);
  border-radius: 15px;
  background: #eefaf2;
}

.checkout-connection > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #20b76d;
  box-shadow: 0 0 0 5px rgba(32, 183, 109, 0.1);
}

.checkout-connection div { display: grid; gap: 2px; }
.checkout-connection strong { color: #176641; font-size: 0.79rem; }
.checkout-connection small { color: #547266; font-size: 0.71rem; line-height: 1.35; }
.checkout-connection.is-offline { border-color: rgba(189, 53, 40, 0.24); background: #fff0ed; }
.checkout-connection.is-offline > span { background: #c6382c; box-shadow: 0 0 0 5px rgba(198, 56, 44, 0.1); }
.checkout-connection.is-offline strong { color: #a62d24; }
.checkout-connection.is-offline small { color: #81544d; }

.offline-banner {
  position: fixed;
  top: 84px;
  left: 50%;
  z-index: 120;
  width: min(470px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: rgba(145, 35, 27, 0.96);
  box-shadow: 0 18px 44px rgba(78, 20, 15, 0.3);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.offline-banner[hidden] { display: none; }
.offline-banner > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,0.14); font-weight: 950; }
.offline-banner div { display: grid; gap: 2px; }
.offline-banner strong { font-size: 0.83rem; }
.offline-banner small { color: rgba(255,255,255,0.8); font-size: 0.72rem; line-height: 1.35; }

.live-eta {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 12px 0 16px;
  padding: 13px;
  border: 1px solid rgba(230, 102, 45, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff2df, #fffaf2);
}

.live-eta > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, #df452b, #f39125);
  font-size: 1.15rem;
  font-weight: 950;
}

.live-eta div { display: grid; gap: 2px; }
.live-eta small { color: #98604d; font-size: 0.7rem; font-weight: 850; }
.live-eta strong { color: #43291f; font-size: 1rem; }
.live-eta p { margin: 1px 0 0; color: #816d64; font-size: 0.72rem; line-height: 1.4; }
.live-eta.is-arrived { border-color: rgba(22, 137, 90, 0.2); background: linear-gradient(135deg, #eaf9ef, #fbfff9); }
.live-eta.is-arrived > span { background: #16895a; }
.live-eta.is-arrived small { color: #367456; }

.live-order-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 9px;
  margin: 12px 0;
}
.live-order-actions button[hidden] { display: none; }

.reorder-btn,
.install-app-btn {
  min-height: 62px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 10px 11px;
  text-align: left;
  color: #482b21;
  border: 1px solid rgba(221, 76, 42, 0.2);
  border-radius: 16px;
  background: #fff7eb;
  cursor: pointer;
}

.reorder-btn > span:first-child,
.install-app-btn > span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 11px;
  background: #e74a2c;
  font-size: 1.1rem;
  font-weight: 950;
}

.install-app-btn > span:first-child { background: #22252d; }
.reorder-btn > span:last-child,
.install-app-btn > span:last-child { min-width: 0; display: grid; gap: 2px; }
.reorder-btn strong,
.install-app-btn strong { font-size: 0.77rem; }
.reorder-btn small,
.install-app-btn small { color: #866e64; font-size: 0.65rem; line-height: 1.3; }

.persistent-tracker-open > span {
  overflow: hidden;
  color: #b05b3b;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.persistent-order-tracker.is-final .persistent-tracker-open > span { color: #26724e; }

.order-status-modal.is-delivered .live-order-shell {
  background:
    radial-gradient(circle at 12% 8%, rgba(39, 170, 103, 0.14) 0 4px, transparent 5px),
    radial-gradient(circle at 88% 15%, rgba(239, 126, 38, 0.16) 0 5px, transparent 6px),
    radial-gradient(circle at 75% 3%, rgba(39, 170, 103, 0.12) 0 3px, transparent 4px),
    #fffaf2;
  animation: deliveredGlow 700ms ease both;
}

@keyframes deliveredGlow {
  0% { transform: scale(0.985); box-shadow: 0 20px 70px rgba(22, 137, 90, 0.04); }
  100% { transform: scale(1); box-shadow: 0 28px 90px rgba(22, 137, 90, 0.16); }
}

@media (max-width: 720px) {
  .item-card-meta { min-width: 82px; }
  .in-cart-badge { padding: 4px 7px; font-size: 0.62rem; }
  .offline-banner { top: 104px; }
  .live-order-actions { grid-template-columns: 1fr; }
  .reorder-btn,
  .install-app-btn { min-height: 58px; }
  body.has-active-tracking { padding-bottom: calc(208px + env(safe-area-inset-bottom)); }
  body.has-active-tracking.has-floating-cart { padding-bottom: calc(300px + env(safe-area-inset-bottom)); }
  body.has-active-tracking .floating-cart { bottom: calc(214px + env(safe-area-inset-bottom)); }
  body.has-active-tracking .toast { bottom: calc(214px + env(safe-area-inset-bottom)); }
  body.has-active-tracking.has-floating-cart .toast { bottom: calc(304px + env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
  .persistent-tracker-open > span { font-size: 0.62rem; }
}

/* v44 — instalim i dukshëm dhe kategori të optimizuara për telefon */
.install-shortcut-btn {
  min-height: 54px;
  display: inline-grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 14px 8px 9px;
  color: #3d281f;
  text-align: left;
  border: 1px solid rgba(87, 54, 38, 0.16);
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 12px 32px rgba(91, 48, 25, 0.1);
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.install-shortcut-btn[hidden] { display: none; }
.install-shortcut-btn:hover { transform: translateY(-2px); border-color: rgba(220, 59, 34, 0.3); box-shadow: 0 16px 36px rgba(91, 48, 25, 0.15); }
.install-shortcut-btn.is-ready { border-color: rgba(22, 137, 90, 0.28); }
.install-shortcut-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(145deg, #dc3b22, #f58c24);
}
.install-shortcut-icon .ui-icon { width: 20px; height: 20px; }
.install-shortcut-btn > span:last-child { min-width: 0; display: grid; gap: 2px; }
.install-shortcut-btn strong { font-size: 0.79rem; }
.install-shortcut-btn small { color: #846f65; font-size: 0.66rem; line-height: 1.25; }

.install-guide-modal {
  width: min(500px, calc(100vw - 24px));
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: transparent;
}
.install-guide-modal::backdrop { background: rgba(38, 24, 18, 0.55); backdrop-filter: blur(8px); }
.install-guide-shell { position: relative; display: grid; gap: 12px; padding: 24px; color: #3a251d; border: 1px solid rgba(102, 67, 48, 0.14); border-radius: 26px; background: #fffaf2; box-shadow: 0 28px 90px rgba(53, 30, 20, 0.25); }
.install-guide-shell h2 { margin: 0; font-size: clamp(1.55rem, 5vw, 2.15rem); }
.install-guide-shell > p:not(.kicker) { margin: 0; color: #7d6a61; line-height: 1.55; }
.install-guide-mark { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; border-radius: 16px; background: linear-gradient(145deg, #dc3b22, #f58c24); box-shadow: 0 12px 26px rgba(220, 59, 34, 0.22); }
.install-guide-mark .ui-icon { width: 24px; height: 24px; }
.install-guide-steps { counter-reset: install-step; display: grid; gap: 9px; margin: 2px 0 6px; padding: 0; list-style: none; }
.install-guide-steps li { counter-increment: install-step; min-height: 46px; display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 10px; align-items: center; padding: 9px 11px; border: 1px solid rgba(223, 96, 43, 0.14); border-radius: 14px; background: #fff3e3; font-size: 0.82rem; font-weight: 750; line-height: 1.35; }
.install-guide-steps li::before { content: counter(install-step); width: 30px; height: 30px; display: grid; place-items: center; color: #fff; border-radius: 10px; background: #e64a2b; font-size: 0.72rem; font-weight: 950; }

.item-top { grid-template-columns: minmax(0, 1fr) auto; }
.item-top > div:first-child { min-width: 0; }
.item-card h3 { overflow-wrap: anywhere; }

@media (max-width: 720px) {
  .hero-actions { grid-template-columns: 1fr; }
  .install-shortcut-btn { width: 100%; min-height: 58px; }
  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-right: 0;
    padding: 0;
    overflow: visible;
  }
  .tab {
    width: 100%;
    min-width: 0;
    min-height: 66px;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 9px;
    padding: 9px 10px;
    overflow: hidden;
  }
  .tab-icon { width: 34px; height: 34px; }
  .tab .tab-label { min-width: 0; align-self: end; font-size: 0.78rem; line-height: 1.08; overflow-wrap: anywhere; }
  .tab small { min-width: 0; color: #927c70; font-size: 0.65rem; line-height: 1.1; white-space: normal; }
  .item-top { gap: 9px; }
  .item-card-meta { min-width: 72px; }
  .price-badge { font-size: 0.82rem; }
  .install-guide-shell { padding: 20px 16px 16px; border-radius: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  .order-status-modal.is-delivered .live-order-shell { animation: none; }
  .add-btn.is-added { transform: none; }
}

/* Final v50 state overrides */
.business-hours-badge.is-closed {
  color: #fff7f2;
  background: linear-gradient(135deg, #a4251b, #d44725);
}
.business-hours-card.is-closed {
  border-color: rgba(190, 50, 36, 0.3);
  background: linear-gradient(135deg, #fff0eb, #fff8f3);
}
