:root {
  --orange: #ff6b12;
  --orange-dark: #e95700;
  --black: #050505;
  --ink: #161616;
  --muted: #6e6e6e;
  --line: #ececec;
  --paper: #ffffff;
  --soft: #f6f6f6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
}

body.cart-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(20px, 6vw, 72px);
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.brand img {
  width: 140px;
  margin-top: 10px;
  filter: drop-shadow(0 8px 18px rgba(255, 107, 18, 0.18));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--orange);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #ff8123, #ff5d0a);
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 107, 18, 0.35);
}

.cart-button::before {
  content: "🛒";
  font-size: 18px;
}

.cart-button strong {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: #111;
  border-radius: 50%;
  font-size: 12px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cart-drawer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(440px, 100%);
  height: 100%;
  padding: 24px;
  background: #fff;
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.22);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.cart-head h2 {
  margin: 3px 0 0;
  font-size: 30px;
  line-height: 1;
}

.cart-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.cart-line p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-line > strong {
  grid-column: 1 / -1;
  color: var(--orange);
  font-size: 18px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quantity-control button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.quantity-control span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
}

.payment-box,
.delivery-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fff7f1;
  border: 1px solid #ffd8bf;
  border-radius: 8px;
}

.payment-box h3,
.delivery-box h3 {
  margin: 0 0 2px;
  font-size: 17px;
}

.payment-box label,
.delivery-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.payment-box input,
.delivery-box input {
  accent-color: var(--orange);
}

.customer-box,
.address-box {
  display: grid;
  gap: 8px;
}

.customer-box label,
.address-box label {
  font-size: 15px;
  font-weight: 900;
}

.customer-box input,
.address-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
}

.address-box textarea {
  min-height: 84px;
  resize: vertical;
}

.customer-box input:focus,
.address-box textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 18, 0.14);
}

.customer-box input.is-invalid,
.address-box textarea.is-invalid {
  border-color: #d92828;
  box-shadow: 0 0 0 3px rgba(217, 40, 40, 0.12);
}

.address-box small {
  min-height: 18px;
  color: #d92828;
  font-size: 12px;
  font-weight: 700;
}

.order-summary {
  display: grid;
  gap: 4px;
  padding: 12px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.order-summary strong {
  color: var(--ink);
}

.order-summary.is-warning {
  color: #9a4a00;
  background: #fff3e5;
}

.order-summary.is-error {
  color: #b32323;
  background: #fff0f0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  font-size: 18px;
  font-weight: 900;
}

.cart-total strong {
  color: var(--orange);
  font-size: 24px;
}

.checkout-button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #20b75a;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: center;
  overflow: hidden;
  padding: 74px clamp(24px, 7vw, 88px) 64px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 35%, rgba(255, 95, 9, 0.18), transparent 22%),
    linear-gradient(90deg, #050505 0%, #0d0d0d 46%, rgba(0, 0, 0, 0.86) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.42)),
    url("assets/product-kebap.png") center / cover;
  filter: grayscale(0.85) contrast(1.25) brightness(0.42);
  transform: scale(1.2);
}

.hero::after {
  content: "";
  position: absolute;
  left: -4vw;
  right: -4vw;
  bottom: -1px;
  height: 42px;
  background: #fff;
  clip-path: polygon(0 56%, 8% 78%, 17% 48%, 27% 74%, 38% 43%, 50% 69%, 61% 46%, 72% 75%, 83% 44%, 92% 69%, 100% 52%, 100% 100%, 0 100%);
  border-top: 7px solid var(--orange);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.script {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: Pacifico, cursive;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(70px, 11vw, 126px);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.08);
}

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

.hero-text {
  max-width: 480px;
  margin: 22px 0 26px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 700;
}

.primary-button,
.whatsapp-button,
.deal-price a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 62px;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(135deg, #ff8123, #ff5d0a);
  border-radius: 9px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(255, 91, 8, 0.34);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.whatsapp-button {
  background: #20b75a;
  box-shadow: 0 16px 28px rgba(32, 183, 90, 0.28);
}

.primary-button span {
  font-size: 30px;
  line-height: 1;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 690px;
  margin-top: 34px;
}

.hero-features div {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
}

.hero-features div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  padding-left: 22px;
}

.feature-icon {
  grid-row: span 2;
  color: #ff9a18;
  font-size: 31px;
  line-height: 1;
}

.hero-features strong {
  font-size: 13px;
  text-transform: uppercase;
}

.hero-features small {
  color: #efefef;
  font-size: 12px;
}

.hero-meal {
  position: relative;
  z-index: 1;
  width: min(760px, 58vw);
  object-fit: contain;
  justify-self: end;
  border-radius: 0;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.72));
}

.section {
  padding: 28px clamp(20px, 7vw, 76px) 0;
  text-align: center;
}

.menu-hero {
  padding: 64px clamp(20px, 7vw, 76px) 24px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 107, 18, 0.22), transparent 28%),
    linear-gradient(135deg, #050505, #181818);
}

.menu-hero h1 {
  margin: 4px 0 10px;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: #e9e9e9;
  font-size: 16px;
  line-height: 1.5;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 850px;
  margin: 24px auto 0;
}

.menu-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 107, 18, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-section {
  padding: 42px clamp(20px, 7vw, 76px);
}

.about-content {
  display: block;
  gap: clamp(28px, 6vw, 70px);
  max-width: 960px;
  margin: 0 auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-content img {
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
  background: #050505;
}

.about-content h2 {
  margin: 4px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.about-content h3 {
  margin: 24px 0 8px;
  font-size: 22px;
}

.about-content p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.deal h2 {
  margin: 3px 0 22px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.category-grid,
.product-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1110px;
  margin: 0 auto;
}

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

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

.category-card,
.product-card,
.info-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.category-card {
  min-height: 230px;
  padding: 16px 18px 14px;
}

.category-card img {
  width: 100%;
  height: 128px;
  object-fit: contain;
  margin: 0 auto 4px;
}

.category-card h3,
.product-card h3,
.info-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
}

.category-card p,
.product-card p,
.info-grid p {
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.category-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 27px;
  padding: 0 14px;
  color: #fff;
  background: var(--orange);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.products-section {
  padding-top: 24px;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  max-width: 1110px;
  margin: 0 auto;
}

.section-row h2 {
  margin-bottom: 16px;
}

.see-all {
  position: absolute;
  right: 0;
  bottom: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 10px 12px 14px;
  text-align: left;
}

.product-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card button {
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.product-card h3 {
  margin-top: 12px;
  font-size: 18px;
}

.product-card strong {
  color: var(--orange);
  font-size: 19px;
  font-weight: 900;
}

.menu-detail {
  padding-top: 32px;
}

.menu-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1110px;
  margin: 0 auto 28px;
  text-align: left;
}

.menu-detail-grid.single-panel {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.menu-panel {
  scroll-margin-top: 112px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.menu-panel-head {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #111, #1c1c1c);
  color: #fff;
}

.menu-panel-head img {
  width: 118px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.4));
}

.menu-panel-head span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-panel-head h3 {
  margin: 2px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 18px 14px;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #efefef;
  font-size: 15px;
  font-weight: 700;
}

.price-list li > span {
  grid-column: 1;
  grid-row: 1;
}

.price-list li > small {
  grid-column: 1;
  grid-row: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
}

.mini-cart-button {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 32px;
  padding: 0 12px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.deal {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(300px, 1.05fr) minmax(180px, 0.7fr);
  align-items: center;
  gap: 20px;
  max-width: 1110px;
  min-height: 156px;
  margin: 22px auto 34px;
  padding: 18px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 72%, rgba(255, 104, 0, 0.82), transparent 28%),
    linear-gradient(90deg, #070707, #161616 58%, #320b00);
  border-radius: 8px;
  overflow: hidden;
}

.campaign-deal {
  margin-top: 34px;
}

.deal span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  background: var(--orange);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.deal h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(28px, 4vw, 36px);
  text-transform: uppercase;
}

.deal p {
  margin: 0;
  font-size: 13px;
}

.deal img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.5));
}

.deal-price {
  display: grid;
  justify-items: start;
}

.deal-price del {
  color: #ff3737;
  font-size: 25px;
  font-weight: 700;
}

.deal-price strong {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.deal-price small {
  font-size: 25px;
}

.deal-price a {
  min-height: 48px;
  margin-top: 12px;
  padding: 0 20px;
  color: var(--orange);
  background: #fff;
  box-shadow: none;
  font-size: 13px;
}

.whatsapp-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1110px;
  margin: 0 auto 28px;
  padding: 24px 28px;
  color: #fff;
  background: linear-gradient(135deg, #101010, #0b562d);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.whatsapp-strip h2 {
  margin: 3px 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
}

.whatsapp-strip p {
  margin: 0;
}

.whatsapp-strip > div > p:last-child {
  color: #e8f8ef;
  font-size: 14px;
}

.whatsapp-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  background: #20b75a;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.info-grid {
  margin-bottom: 28px;
  padding: 0 clamp(20px, 7vw, 76px);
  max-width: 1260px;
}

.info-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  text-align: left;
}

.info-grid h3 {
  font-size: 15px;
}

.info-grid p {
  margin: 4px 0 0;
  line-height: 1.45;
}

.contact-section {
  margin-top: 46px;
  padding: 76px clamp(20px, 7vw, 78px);
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 106, 15, 0.24), transparent 34%),
    linear-gradient(135deg, #070707 0%, #131313 52%, #080808 100%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-intro .eyebrow {
  color: var(--orange);
}

.contact-intro h2 {
  margin: 8px 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
}

.contact-intro p:not(.eyebrow) {
  max-width: 490px;
  margin: 0 0 28px;
  color: #d8d8d8;
  font-size: 17px;
  line-height: 1.7;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 28px;
  color: #fff;
  background: #20b75a;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(32, 183, 90, 0.28);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-whatsapp svg,
.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  min-height: 172px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-card > svg {
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--orange);
  background: rgba(255, 106, 15, 0.13);
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.contact-card strong,
.contact-card strong a {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.contact-card p {
  margin: 7px 0 0;
  color: #cfcfcf;
  font-size: 14px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 106, 15, 0.16);
  border: 1px solid rgba(255, 106, 15, 0.34);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  padding: 26px clamp(20px, 7vw, 78px);
  color: #d9d9d9;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  padding-bottom: 20px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  width: 86px;
  display: block;
}

.footer-address,
.footer-brand-copy {
  display: grid;
  gap: 5px;
}

.footer-address {
  max-width: 330px;
}

.footer-address strong {
  color: #fff;
  font-size: 13px;
}

.footer-address span,
.footer-brand-copy address {
  color: #a9a9a9;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.footer-nav,
.footer-legal,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
}

.site-footer a,
.site-footer p {
  color: #d9d9d9;
  font-size: 13px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

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

.designer-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.footer .designer-credit {
  grid-column: 1 / -1;
  width: 100%;
}

.designer-credit strong {
  display: block;
  color: #f1f1f1;
  font-size: 14px;
}

.designer-credit p {
  margin: 4px 0 6px;
  color: #a9a9a9;
  font-size: 12px;
  line-height: 1.5;
}

.designer-credit small {
  color: #858585;
  font-size: 11px;
}

.designer-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #f4f4f4;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.designer-credit a:hover {
  color: #fff;
  border-color: rgba(255, 106, 15, 0.75);
  background: rgba(255, 106, 15, 0.08);
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px clamp(20px, 7vw, 76px);
}

.legal-page h1 {
  margin: 4px 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  font-weight: 900;
}

.legal-page h2 {
  margin: 28px 0 8px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 106px;
  padding: 18px clamp(20px, 7vw, 78px);
  color: #fff;
  background: #030303;
}

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

.footer-brand img {
  width: 80px;
}

.footer p,
.footer a,
.footer address {
  color: #d9d9d9;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: clamp(18px, 4vw, 50px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 110px 1fr;
  }

  .brand img {
    width: 105px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .cart-button {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-meal {
    width: min(620px, 92vw);
    justify-self: center;
    margin-top: 28px;
  }

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

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

  .menu-detail-grid,
  .whatsapp-strip {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    text-align: center;
  }

  .contact-intro p:not(.eyebrow) {
    margin-inline: auto;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav,
  .footer-legal,
  .footer-socials {
    justify-content: center;
  }

  .footer-address {
    max-width: 520px;
    text-align: center;
  }

  .designer-credit {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content img {
    justify-self: center;
  }

  .deal {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deal-price {
    justify-items: center;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .cart-button span {
    display: none;
  }

  .cart-panel {
    width: 100%;
    padding: 20px 16px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 80px);
  }

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

  .hero-features div + div {
    border-left: 0;
    padding-left: 0;
  }

  .category-grid,
  .product-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-panel-head {
    grid-template-columns: 92px 1fr;
  }

  .menu-panel-head img {
    width: 92px;
  }

  .price-list li {
    grid-template-columns: 1fr auto;
  }

  .price-list strong {
    grid-column: 2;
    grid-row: 1;
  }

  .price-list li > small {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .price-list .mini-cart-button {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .whatsapp-strip {
    margin-inline: 18px;
    padding: 22px 18px;
  }

  .whatsapp-strip a,
  .hero-actions a {
    width: 100%;
  }

  .contact-section {
    padding: 54px 18px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 44px 1fr;
    min-height: 0;
    padding: 20px;
  }

  .contact-actions a,
  .contact-whatsapp {
    width: 100%;
    min-height: 52px;
  }

  .footer-nav,
  .footer-legal {
    gap: 14px 18px;
  }

  .designer-credit a {
    width: 100%;
    min-height: 48px;
    white-space: normal;
  }

  .section-row {
    display: block;
  }

  .see-all {
    position: static;
    display: inline-block;
    margin: -6px 0 16px;
  }
}
