@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap");
:root {
  --ink: #101011;
  --paper: #f8f4eb;
  --cream: #efe2ca;
  --orange: #f59e0b;
  --orange2: #e76e19;
  --red: #c94717;
  --muted: #766f66;
  --line: #ded8cd;
  --green: #259366;
  --white: #fff;
  --shadow: 0 16px 40px rgba(33, 25, 13, 0.1);
}

body.pwa-modal-open {
  overflow: hidden;
}
.pwa-install-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.pwa-install-modal[hidden] {
  display: none;
}
.pwa-install-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(8, 7, 5, 0.76);
  backdrop-filter: blur(8px);
  cursor: default;
}
.pwa-install-card {
  position: relative;
  width: min(100%, 470px);
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 26px;
  background: linear-gradient(145deg, #18130d, #0b0b0c 72%);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  animation: pwa-card-in 0.28s ease-out;
}
.pwa-install-card:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -130px;
  right: -95px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.14);
}
.pwa-install-close {
  position: absolute;
  z-index: 1;
  top: 17px;
  right: 17px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}
.pwa-install-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}
.pwa-install-brand img {
  width: 64px;
  height: 64px;
  border-radius: 17px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
.pwa-install-brand span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pwa-install-card h2 {
  margin-bottom: 10px;
  font-size: clamp(35px, 8vw, 48px);
}
.pwa-install-card > p {
  margin-bottom: 20px;
  color: #bdb6ab;
}
.pwa-install-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.pwa-install-benefits span {
  display: grid;
  gap: 6px;
  padding: 11px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #d5cfc5;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
.pwa-install-benefits i {
  color: var(--orange);
  font-size: 20px;
}
.pwa-install-never {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #c8c1b7;
  font-size: 12px;
  cursor: pointer;
}
.pwa-install-never input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pwa-install-never span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid #665f55;
  border-radius: 6px;
}
.pwa-install-never span i {
  opacity: 0;
}
.pwa-install-never input:checked + span {
  border-color: var(--orange);
  background: var(--orange);
  color: #111;
}
.pwa-install-never input:checked + span i {
  opacity: 1;
}
.pwa-install-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
}
.pwa-install-actions .btn {
  justify-content: center;
  border: 0;
  cursor: pointer;
}
.pwa-install-actions .secondary {
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
}
.pwa-ios-help {
  margin: 0 0 18px;
  padding: 15px;
  border-radius: 13px;
  background: rgba(245, 158, 11, 0.11);
  color: #e7ded0;
  font-size: 12px;
}
.pwa-ios-help b {
  color: var(--orange);
}
.pwa-ios-help ol {
  margin: 8px 0 0;
  padding-left: 20px;
}
.pwa-install-status {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  color: #f7c768 !important;
  font-size: 12px;
}
@keyframes pwa-card-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
}
@media (max-width: 520px) {
  .pwa-install-modal {
    align-items: end;
    padding: 10px;
  }
  .pwa-install-card {
    padding: 25px 20px 20px;
    border-radius: 24px;
  }
  .pwa-install-brand img {
    width: 55px;
    height: 55px;
  }
  .pwa-install-card h2 {
    font-size: 37px;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    15px/1.55 Inter,
    Arial,
    sans-serif;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  transition: 0.2s ease;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--orange2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 10px;
  padding: 15px 21px;
  font-weight: 800;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #17120a;
  box-shadow: 0 8px 24px rgba(231, 110, 25, 0.24);
}
.btn.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.btn.secondary {
  border: 1px solid var(--line);
  background: #fff;
}
.btn.wide {
  width: 100%;
  font-size: 15px;
}
.site-header {
  height: 82px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0a0b;
  color: white;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid #252525;
}
.brand,
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img,
.admin-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}
.brand span,
.admin-brand span {
  display: flex;
  flex-direction: column;
}
.brand b,
.admin-brand b {
  font: 800 24px/1 "Barlow Condensed";
  letter-spacing: 0.08em;
}
.brand small,
.admin-brand small {
  text-transform: uppercase;
  color: #d99c45;
  font-size: 8px;
  letter-spacing: 0.16em;
}
.site-header nav {
  display: flex;
  gap: 30px;
}
.site-header nav a {
  color: #d8d4ce;
  font-weight: 600;
  font-size: 13px;
}
.site-header nav a:hover {
  color: var(--orange);
}
.hero {
  min-height: 620px;
  padding: 65px 7vw 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 76% 48%, #3f250c 0, #160f08 24%, #080809 51%),
    #090909;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(64px, 7.7vw, 116px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 18px 0 22px;
  line-height: 0.78;
}
.hero h1 em,
.brand-banner h2 em {
  color: var(--orange);
  font-style: normal;
}
.hero-copy > p {
  max-width: 520px;
  color: #bdb8ae;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}
.open-now {
  font-size: 12px;
  color: #c9c5be;
}
.open-now i,
.live-indicator i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #55cf8a;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 5px rgba(85, 207, 138, 0.12);
}
.hero-visual {
  height: 100%;
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: min(430px, 82%);
  height: auto;
  max-height: 540px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 20px 45px #000);
  position: relative;
  z-index: 1;
}
.globe-line {
  position: absolute;
  width: 105%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.globe-line:after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(245, 158, 11, 0.2);
  border-radius: 50%;
}
.stamp {
  position: absolute;
  right: 1%;
  bottom: 13%;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: var(--orange);
  color: #120d08;
  border-radius: 50%;
  border: 5px solid #111;
  display: grid;
  place-content: center;
  text-align: center;
  font: 900 47px/30px "Barlow Condensed";
  transform: rotate(8deg);
}
.stamp small {
  font: 800 9px Inter;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.menu-section {
  padding: 90px 7vw 110px;
  max-width: 1600px;
  margin: auto;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-heading h2,
.brand-banner h2 {
  font-size: clamp(48px, 6vw, 76px);
  text-transform: uppercase;
  margin: 8px 0 0;
}
.section-heading > p {
  max-width: 430px;
  color: var(--muted);
}
.category-tabs {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 34px 0 22px;
}
.category-tabs button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50px;
  padding: 10px 17px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
}
.category-tabs button.active,
.category-tabs button:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6dfd3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.product-card.featured {
  grid-column: span 2;
}
.product-card[hidden] {
  display: none;
}
.product-image {
  height: 245px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #2b2117;
}
.featured .product-image {
  height: 310px;
}
.product-image:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}
.badge,
.product-place {
  position: absolute;
  z-index: 1;
}
.badge {
  top: 15px;
  left: 15px;
  padding: 7px 11px;
  border-radius: 30px;
  background: var(--orange);
  font-size: 11px;
  font-weight: 800;
}
.product-place {
  bottom: 13px;
  left: 16px;
  color: #fff;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 800;
}
.product-info {
  padding: 20px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-info h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.product-info p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.product-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-buy strong {
  font: 800 24px "Barlow Condensed";
}
.product-buy button {
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
}
.product-buy button:hover {
  background: var(--orange);
  color: var(--ink);
  transform: rotate(90deg);
}
.brand-banner {
  background: #101011;
  color: #fff;
  padding: 75px 8vw;
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.banner-seven {
  font: 900 270px/0.6 "Barlow Condensed";
  color: transparent;
  -webkit-text-stroke: 2px #3b3024;
  transform: rotate(-7deg);
}
.brand-banner p {
  color: #a9a49b;
  max-width: 580px;
}
.benefits {
  display: flex;
  flex-direction: column;
}
.benefits span {
  padding: 17px 0;
  border-bottom: 1px solid #333;
  font: 700 17px "Barlow Condensed";
  text-transform: uppercase;
}
.benefits b {
  color: var(--orange);
  margin-right: 18px;
}
.floating-cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(620px, calc(100% - 30px));
  background: #171717;
  color: white;
  border: 1px solid #38332b;
  border-radius: 16px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  box-shadow: 0 16px 50px #0008;
}
.floating-cart:hover {
  transform: translateX(-50%) translateY(-3px);
}
.floating-cart .cart-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--orange);
  color: #111;
  display: grid;
  place-items: center;
  margin-right: 12px;
}
.floating-cart > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.floating-cart small {
  color: #a9a9a9;
}
.floating-cart > strong {
  color: var(--orange);
  font-size: 13px;
}
.site-footer {
  background: #080809;
  color: #ddd;
  padding: 38px 7vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #292929;
}
.site-footer div {
  display: flex;
  flex-direction: column;
}
.site-footer strong {
  font: 800 28px "Barlow Condensed";
  color: var(--orange);
}
.site-footer span {
  font-size: 12px;
  color: #8f8f8f;
}
.toast,
.alert {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}
.toast {
  position: fixed;
  top: 95px;
  right: 25px;
  z-index: 20;
  box-shadow: var(--shadow);
  animation: slidein 0.25s ease;
  background: white;
}
.toast.success {
  border-left: 5px solid var(--green);
}
.toast.error,
.alert.error {
  border-left: 5px solid #d8493e;
  background: #fff0ed;
  color: #8f271f;
}
@keyframes slidein {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
}
.checkout-page {
  max-width: 1380px;
  margin: auto;
  padding: 45px 6vw 100px;
}
.back-link {
  display: inline-block;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 28px;
}
.page-title h1,
.tracking-page h1 {
  font-size: 64px;
  text-transform: uppercase;
  margin: 7px 0;
}
.page-title p {
  color: var(--muted);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-card,
.order-summary,
.tracking-card,
.receipt,
.empty-state {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 25px;
  position: relative;
}
.form-card .step {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #f7ead3;
  color: var(--orange2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.form-card h2,
.order-summary h2,
.receipt h2 {
  font-size: 28px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #57514b;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px #f59e0b1c;
}
textarea {
  min-height: 90px;
  resize: vertical;
}
.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.choice-row.compact {
  grid-template-columns: repeat(3, 1fr);
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
}
.choice span {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.choice input:checked + span {
  border-color: var(--orange);
  background: #fff9ef;
  box-shadow: 0 0 0 2px #f59e0b22;
}
.choice small {
  font-weight: 400;
  color: var(--muted);
}
.order-summary {
  position: sticky;
  top: 20px;
}
.order-summary h2 {
  display: flex;
  justify-content: space-between;
}
.order-summary h2 span {
  font: 600 11px Inter;
  background: #eee7dc;
  padding: 6px 9px;
  border-radius: 20px;
}
.summary-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #eee8de;
}
.summary-thumb {
  width: 58px;
  height: 58px;
  border-radius: 9px;
  background-size: cover;
  background-position: center;
}
.summary-item > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.summary-item small {
  color: var(--muted);
}
.summary-item label {
  font-size: 10px;
  margin-top: 5px;
}
.summary-item label input {
  padding: 6px 8px;
  font-size: 11px;
}
.qty {
  display: flex;
  align-items: center;
}
.qty button {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 6px;
  background: #eee7dc;
  cursor: pointer;
}
.qty input {
  width: 30px;
  border: 0;
  padding: 0;
  text-align: center;
  background: transparent;
}
.text-button {
  border: 0;
  background: none;
  color: var(--orange2);
  font-weight: 700;
  padding: 12px 0;
  cursor: pointer;
}
.summary-total,
.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--ink);
  padding-top: 15px;
  margin-top: 10px;
}
.summary-total strong {
  font: 800 30px "Barlow Condensed";
}
.order-summary > small {
  color: var(--muted);
}
.tracking-page {
  max-width: 760px;
  margin: auto;
  text-align: center;
  padding: 70px 25px 100px;
}
.success-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  font-size: 30px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
}
.tracking-page > p {
  color: var(--muted);
}
.tracking-card,
.receipt {
  text-align: left;
  margin: 35px 0 22px;
}
.tracking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.tracking-steps:before {
  content: "";
  height: 2px;
  background: #e0dbd2;
  position: absolute;
  top: 16px;
  left: 10%;
  right: 10%;
}
.tracking-step {
  position: relative;
  text-align: center;
  z-index: 1;
  color: #999;
}
.tracking-step i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: auto;
  background: #eeeae3;
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
}
.tracking-step span {
  font-size: 11px;
  font-weight: 700;
}
.tracking-step.done {
  color: var(--ink);
}
.tracking-step.done i {
  background: var(--orange);
}
.tracking-detail {
  text-align: center;
  background: #faf4e9;
  border-radius: 12px;
  margin-top: 24px;
  padding: 15px;
}
.tracking-detail span,
.tracking-detail small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.tracking-detail strong {
  font: 800 23px "Barlow Condensed";
}
.receipt > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.receipt-total strong {
  font-size: 23px;
}
.empty-state {
  text-align: center;
  padding: 70px;
}
.empty-state b {
  font: 800 30px "Barlow Condensed";
}
/* Admin */
.auth-body {
  background: #09090a;
}
.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.login-brand {
  padding: 8vh 7vw;
  background: radial-gradient(
    circle at 25% 40%,
    #4a2a0c 0,
    #171008 27%,
    #080809 60%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.login-brand img {
  width: min(480px, 80%);
  align-self: center;
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px #000);
}
.login-brand h1 {
  font-size: 62px;
  text-transform: uppercase;
  margin: 8px 0;
}
.login-brand h1 em {
  color: var(--orange);
  font-style: normal;
}
.login-brand p {
  color: #aaa;
}
.login-panel {
  background: var(--paper);
  display: grid;
  place-items: center;
  padding: 30px;
}
.login-box {
  width: min(410px, 100%);
}
.login-icon {
  display: grid;
  place-items: center;
  background: var(--orange);
  width: 50px;
  height: 50px;
  border-radius: 13px;
  font: 900 31px "Barlow Condensed";
  margin-bottom: 24px;
}
.login-box h2 {
  font-size: 42px;
  margin-bottom: 8px;
}
.login-box > p {
  color: var(--muted);
}
.login-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 27px 0 15px;
}
.login-box > a {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 20px;
}
.demo-hint {
  display: block;
  background: #ede4d5;
  border-radius: 8px;
  padding: 10px;
  color: #716555;
  text-align: center;
}
.admin-body {
  background: #f4f1eb;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 245px;
  background: #101011;
  color: #ddd;
  padding: 25px 17px;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.admin-brand {
  padding: 0 8px 28px;
  border-bottom: 1px solid #2d2d2d;
}
.admin-brand img {
  width: 46px;
  height: 46px;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 25px;
}
.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border-radius: 9px;
  color: #aaa;
  font-size: 13px;
  font-weight: 600;
}
.sidebar nav a i {
  font-style: normal;
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.sidebar nav a:hover,
.sidebar nav a.active {
  background: #27231d;
  color: #fff;
}
.sidebar nav a.active {
  box-shadow: inset 3px 0 var(--orange);
}
.sidebar-user {
  margin-top: auto;
  border-top: 1px solid #2d2d2d;
  padding: 20px 8px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.sidebar-user div {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}
.sidebar-user a {
  color: #888;
}
.admin-main {
  margin-left: 245px;
  padding: 35px 3.5vw 60px;
  min-height: 100vh;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.admin-header h1 {
  font-size: 46px;
  margin: 7px 0 5px;
}
.admin-header p {
  color: var(--muted);
  margin: 0;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric,
.panel {
  background: #fff;
  border: 1px solid #e1dcd3;
  border-radius: 13px;
}
.metric {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.metric-icon {
  position: absolute;
  right: 17px;
  top: 17px;
  width: 36px;
  height: 36px;
  background: #efeae2;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.metric.orange .metric-icon {
  background: #fff0cf;
  color: #c96b06;
}
.metric.warning .metric-icon {
  background: #ffe6df;
  color: #cb4c24;
}
.metric > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.metric strong {
  font: 800 34px "Barlow Condensed";
  margin: 12px 0 2px;
}
.metric small {
  color: #9a948b;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.panel {
  padding: 20px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.panel-head h2 {
  font-size: 25px;
  margin: 0 0 3px;
}
.panel-head p {
  font-size: 12px;
  color: var(--muted);
}
.panel-head > a {
  color: var(--orange2);
  font-weight: 700;
  font-size: 12px;
}
.pill,
.category-chip {
  font-size: 10px;
  background: #f1ece4;
  padding: 6px 9px;
  border-radius: 20px;
  color: var(--muted);
}
.bars {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding: 20px 10px 0;
}
.bar-column {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  position: relative;
}
.bar {
  width: min(38px, 70%);
  background: linear-gradient(var(--orange), #e47718);
  border-radius: 6px 6px 0 0;
  min-height: 4px;
}
.bar-value {
  font-size: 8px;
  color: var(--muted);
  height: 18px;
}
.bar-column > span {
  font-size: 9px;
  color: var(--muted);
  padding: 7px;
}
.rank {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #eee9e1;
}
.rank > b {
  width: 27px;
  height: 27px;
  background: #f5e9d3;
  color: #ca730e;
  display: grid;
  place-items: center;
  border-radius: 7px;
}
.rank span {
  font-weight: 700;
  font-size: 12px;
}
.rank strong {
  font-size: 11px;
  color: var(--muted);
}
.empty-mini,
.empty-ticket {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 35px 10px;
}
.recent-orders {
  margin-top: 16px;
}
.table-wrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 690px;
  margin-top: 12px;
}
th,
td {
  text-align: left;
  padding: 13px 10px;
  border-top: 1px solid #eee9e1;
  font-size: 12px;
}
th {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.07em;
}
.status {
  font-size: 10px;
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 20px;
}
.status.received {
  background: #fff2d9;
  color: #9a5b05;
}
.status.preparing {
  background: #e6edff;
  color: #335bb0;
}
.status.ready,
.status.delivered {
  background: #dff5ea;
  color: #23734f;
}
.status.cancelled {
  background: #fee8e6;
  color: #9b3730;
}
.live-indicator {
  font-weight: 700;
  font-size: 12px;
  background: #e2f5ea;
  padding: 9px 13px;
  border-radius: 30px;
  color: #267452;
}
.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.kanban-column > header {
  border-top: 3px solid #aaa;
  padding: 15px 4px;
}
.kanban-column.received > header {
  border-color: var(--orange);
}
.kanban-column.preparing > header {
  border-color: #5479d4;
}
.kanban-column.ready > header {
  border-color: var(--green);
}
.kanban-column h2 {
  font-size: 23px;
  margin: 0;
}
.kanban-column h2 b {
  font: 700 10px Inter;
  background: #e8e3da;
  border-radius: 20px;
  padding: 5px 8px;
}
.kanban-column header p {
  font-size: 10px;
  color: var(--muted);
  margin: 3px 0;
}
.kanban-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-ticket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 10px #0000000a;
}
.ticket-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee8df;
  padding-bottom: 12px;
}
.ticket-head > div {
  display: flex;
  flex-direction: column;
}
.ticket-head span,
.ticket-head small {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
}
.ticket-head strong {
  font: 800 23px "Barlow Condensed";
}
.ticket-head time {
  text-align: right;
  font-weight: 700;
}
.ticket-head time small {
  display: block;
}
.customer {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}
.customer span {
  font-size: 10px;
  background: #f3eee6;
  padding: 5px 8px;
  border-radius: 15px;
}
.order-ticket ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.order-ticket li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 12px;
}
.order-ticket li > b {
  color: var(--orange2);
}
.order-ticket li span {
  display: flex;
  flex-direction: column;
}
.order-ticket li small {
  color: #c14c27;
}
.ticket-note {
  font-size: 10px;
  background: #fff4dd;
  padding: 8px;
  border-radius: 7px;
}
.ticket-action {
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: #1c1c1d;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.ticket-action:hover {
  background: var(--orange);
  color: #111;
}
.product-management .panel-head {
  align-items: center;
}
.search-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f7f4ef;
  border-radius: 8px;
  padding-left: 10px;
}
.search-box input {
  border: 0;
  background: transparent;
}
.product-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-cell > span {
  width: 47px;
  height: 42px;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  flex: none;
}
.product-cell > div {
  display: flex;
  flex-direction: column;
}
.product-cell small {
  color: var(--muted);
  max-width: 360px;
}
.availability {
  font-size: 11px;
  font-weight: 700;
}
.availability i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 6px;
}
.availability.on i {
  background: var(--green);
}
.availability.off i {
  background: #aaa;
}
.actions {
  display: flex;
  gap: 12px;
}
.actions a,
.actions button {
  border: 0;
  background: none;
  color: var(--orange2);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.actions button {
  color: #b6453f;
}
.editor-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  gap: 20px;
  align-items: start;
}
.editor-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.editor-form h2 {
  font-size: 27px;
}
.toggle-label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.toggle-label > input {
  display: none;
}
.toggle-label > span {
  width: 43px;
  height: 24px;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  flex: none;
}
.toggle-label > span:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}
.toggle-label > input:checked + span {
  background: var(--green);
}
.toggle-label > input:checked + span:after {
  left: 22px;
}
.toggle-label > div {
  display: flex;
  flex-direction: column;
}
.toggle-label small {
  font-weight: 400;
}
.editor-grid > aside {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.preview-image {
  height: 185px;
  background: #eee5d8 center/cover;
  border-radius: 10px;
  margin: 10px 0 18px;
}
.preview-card h3 {
  font-size: 28px;
  margin-bottom: 6px;
}
.preview-card p {
  color: var(--muted);
  font-size: 12px;
}
.preview-card strong {
  font: 800 25px "Barlow Condensed";
}
@media (max-width: 1050px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-banner {
    grid-template-columns: 0.4fr 1fr;
  }
  .benefits {
    grid-column: 2;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .kanban {
    grid-template-columns: 1fr;
  }
  .kanban-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .brand b {
    font-size: 20px;
  }
  .site-header nav a:first-child {
    display: none;
  }
  .site-header nav {
    gap: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 55px 22px 35px;
    min-height: 0;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-visual {
    min-height: 360px;
    grid-row: 1;
  }
  .hero-logo {
    width: min(300px, 82vw);
    max-height: 360px;
  }
  .stamp {
    width: 75px;
    height: 75px;
    font-size: 36px;
    right: 7%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: start;
  }
  .menu-section {
    padding: 65px 18px 90px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 15px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card.featured {
    grid-column: auto;
  }
  .product-image,
  .featured .product-image {
    height: 230px;
  }
  .brand-banner {
    grid-template-columns: 1fr;
    padding: 65px 25px;
    gap: 20px;
  }
  .banner-seven {
    font-size: 170px;
  }
  .benefits {
    grid-column: auto;
  }
  .site-footer {
    flex-direction: column;
    gap: 20px;
  }
  .checkout-page {
    padding: 30px 16px 80px;
  }
  .page-title h1,
  .tracking-page h1 {
    font-size: 48px;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
    grid-row: 1;
  }
  .field-grid,
  .choice-row,
  .choice-row.compact {
    grid-template-columns: 1fr;
  }
  .tracking-steps {
    overflow: auto;
  }
  .login-shell {
    grid-template-columns: 1fr;
  }
  .login-brand {
    display: none;
  }
  .login-panel {
    min-height: 100vh;
  }
  .sidebar {
    inset: auto 0 0;
    width: auto;
    height: 66px;
    padding: 6px;
    flex-direction: row;
  }
  .admin-brand,
  .sidebar-user {
    display: none;
  }
  .sidebar nav {
    padding: 0;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }
  .sidebar nav a {
    flex-direction: column;
    gap: 0;
    padding: 7px;
    font-size: 8px;
  }
  .sidebar nav a i {
    font-size: 16px;
  }
  .admin-main {
    margin: 0;
    padding: 22px 14px 90px;
  }
  .admin-header {
    align-items: start;
    gap: 15px;
  }
  .admin-header h1 {
    font-size: 37px;
  }
  .admin-header .btn {
    padding: 11px;
    font-size: 11px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .metric {
    padding: 15px;
  }
  .metric-icon {
    display: none;
  }
  .metric strong {
    font-size: 28px;
  }
  .kanban-list {
    grid-template-columns: 1fr;
  }
  .editor-grid {
    grid-template-columns: 1fr;
  }
  .editor-grid > aside {
    grid-row: 1;
  }
  .product-management {
    padding: 10px;
  }
  .panel-head {
    gap: 10px;
  }
  .search-box {
    width: 140px;
  }
  .bars {
    gap: 4px;
  }
  .bar {
    width: 60%;
  }
  .toast {
    top: 75px;
    right: 12px;
    left: 12px;
  }
  .floating-cart > strong {
    font-size: 0;
  }
  .floating-cart > strong:after {
    content: "→";
    font-size: 18px;
  }
}
