:root {
  --yellow: #ebc200;
  --yellow-dark: #ebc200;
  --dark: #171717;
  --gray: #6b6b6b;
  --light-gray: #f4f4f4;
  --border: #ececec;
  --cream: #fff7f0;
  --gold: #ffb020;
  --white: #ffffff;
  --pink: #f72a81;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: #fff;
}
a {
  cursor: pointer;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
}
.pt-0 {
  padding-top: 0px !important;
}
/* Header */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.fp-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F72A81;
  color: var(--white);
  text-decoration: none;
  font-size: 19px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 0 0 0 rgba(247, 42, 129, 0.45);
  animation: fp-pulse 2.2s infinite;
}
@keyframes fp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 42, 129, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(247, 42, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 42, 129, 0);
  }
}
.fp-icon-btn:hover {
  background: var(--dark);
  transform: translateY(-1px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}
.logo .logo-text {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  color: var(--yellow);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo .logo-text .magic {
  color: var(--dark);
}
.logo .logo-text small {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 5px;
}

nav {
  display: flex;
  align-items: center;
}
nav > ul {
  display: flex;
  gap: 6px;
}
nav ul li {
  position: relative;
}
nav ul li > a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
}
nav ul li.active > a {
  color: var(--yellow);
  background: rgba(227, 197, 84, 0.08);
}
nav ul li > a:hover {
  color: var(--yellow);
  background: var(--light-gray);
}
nav ul li.active > a:hover {
  background: rgba(227, 197, 84, 0.12);
}
.caret {
  display: flex;
  transition: transform 0.25s;
}
.caret svg {
  display: block;
}
nav ul li:hover .caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  min-width: 250px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
}
nav ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.dropdown li a .dd-icon {
  font-size: 17px;
}
.dropdown li a:hover {
  background: var(--yellow);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.call-now-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  color: var(--dark);
  text-decoration: none;
  padding: 7px 20px 7px 7px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.call-now-btn:hover {
  border-color: var(--yellow);
  box-shadow: 0 10px 24px rgba(227, 197, 84, 0.22);
  transform: translateY(-1px);
}

.call-now-btn .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: call-pulse 2.2s infinite;
}
.call-now-btn .icon-circle svg {
  display: block;
  fill: currentColor;
}
.call-now-btn .call-text {
  line-height: 1.3;
}
.call-now-btn .call-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--gray);
  font-weight: 600;
}
.call-now-btn .call-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

@keyframes call-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #FFFCF3 0%, var(--cream) 100%);
  padding: 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../image/hero-shade-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 720px;
  text-align: left;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(227, 197, 84, 0.15);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
  color: var(--yellow-dark);
}
.hero-badge .dash {
  width: 16px;
  height: 2px;
  background: var(--yellow-dark);
  display: inline-block;
}
.hero-content h1 {
  font-family: "Anton", sans-serif;
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  color: var(--dark);
  text-align: left;
  font-weight: 500;
}
.hero-content h1 .accent {
  color: var(--yellow-dark);
  border-right: 4px solid var(--yellow-dark);
  padding-right: 6px;
  animation: hero-caret 0.85s steps(1) infinite;
}
@keyframes hero-caret {
  0%,
  50% {
    border-color: var(--yellow-dark);
  }
  51%,
  100% {
    border-color: transparent;
  }
}
.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 26px;
  text-align: left;
  display: block;
}
.hero-checklist {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 30px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}
.hero-checklist .check {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  border-radius: 50%;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yellow-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 23, 23, 0.18);
  transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.hero-btn.ghost {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--dark);
  box-shadow: none;
}
.hero-btn.ghost:hover {
  background: var(--dark);
  color: var(--white);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.hero-stats .stat.stat-with-icon {
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero-stats .stat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}
.hero-stats .stat strong {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 20px;
  color: var(--dark);
  letter-spacing: 0.75px;
  font-weight: 500;
}
.hero-stats .stat span {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  height: 420px;
}
.hero-blob {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #E3C554 0%, #FBDA43 100%);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 30px 60px rgba(227, 197, 84, 0.4), 0 10px 25px rgba(23, 23, 23, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}
.hero-blob img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-blob img.active {
  opacity: 0.94;
}
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  z-index: 3;
}
.hero-float small {
  display: block;
  font-weight: 400;
  color: var(--gray);
  font-size: 10.5px;
}
.hero-float-rating {
  top: 10%;
  left: -8%;
}
.hero-float-fresh {
  bottom: 8%;
  right: -6%;
}

@media (max-width: 1050px) {
  .hero-visual {
    width: 340px;
    height: 340px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 50px 24px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  .hero-content h1,
  .hero-content p {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge,
  .hero-checklist,
  .hero-ctas,
  .hero-stats {
    justify-content: center;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-visual {
    width: 280px;
    height: 280px;
  }
  .hero-float {
    font-size: 11.5px;
    padding: 9px 14px;
  }
}

/* Section shared */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: "Anton", sans-serif;
  font-size: 44px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title .dash {
  width: 44px;
  height: 3px;
  background: var(--yellow);
  display: inline-block;
}
.section-sub {
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.6;
  text-align: center;
}

/* Top Categories */
.categories {
  padding: 90px 60px 100px;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 30px 20px;
  position: relative;
  padding-top: 70px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s,
    background 0.3s;
}
.cat-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 45px rgba(141, 122, 52, 0.2);
  transform: translateY(-8px);
  background: var(--yellow);
}
.cat-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: -90px auto 26px;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.cat-card:hover .cat-img-wrap img {
  transform: scale(1.1);
}
.cat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.cat-card:hover h3 {
  color: #fff;
}
.cat-card p {
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 26px;
  min-height: 48px;
  transition: color 0.3s;
}
.cat-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}
.cat-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.cat-card:hover .cat-arrow {
  background: #fff;
  color: var(--yellow);
  transform: rotate(-45deg);
}

/* Signature Creations */
.signature {
  background: var(--white);
  padding: 90px 60px;
  color: var(--dark);
}
.signature .section-title {
  color: var(--dark);
  text-align: center;
}
.signature .section-title .dash {
  background: var(--yellow);
}
.signature .section-sub {
  color: var(--gray);
}
.sig-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}
.sig-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sig-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.sig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.sig-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.sig-card:hover .sig-img img {
  transform: scale(1.08);
}
.sig-price {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--white);
  background: var(--yellow);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 5px;
}
.sig-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sig-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--dark);
}
.sig-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  min-height: 80px;
  flex: 1;
}
.sig-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--yellow);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 5px;
  transition: background 0.2s, transform 0.2s;
}
.sig-order:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .sig-grid {
    grid-template-columns: 1fr;
  }
}

/* Menu section (homepage widget) */
.menu-section {
  position: relative;
  background: var(--cream);
  padding: 60px 60px 60px;
  overflow: hidden;
}
.menu-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 0;
  background: radial-gradient(
    circle,
    rgba(141, 122, 52, 0.07) 0%,
    rgba(141, 122, 52, 0) 70%
  );
}
.menu-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 0;
  background: radial-gradient(
    circle,
    rgba(255, 176, 32, 0.1) 0%,
    rgba(255, 176, 32, 0) 70%
  );
}
.menu-section .inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.menu-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.menu-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.menu-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: #fff;
  padding: 7px;
  border-radius: 0;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.menu-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dark);
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.menu-tab .tab-icon {
  font-size: 16px;
}
.menu-tab:hover {
  background: var(--light-gray);
}
.menu-tab.active {
  background: var(--yellow);
  color: #fff;
  box-shadow: 0 8px 20px rgba(141, 122, 52, 0.3);
}
.menu-tab.active:hover {
  background: var(--yellow);
}

/* Page banner (menu.html / contact.html) */
.page-banner {
  position: relative;
  background: linear-gradient(180deg, #FFFCF3 0%, var(--cream) 100%);
  padding: 70px 60px;
  text-align: center;
  color: var(--dark);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../image/hero-shade-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.page-banner .crumb,
.page-banner h1,
.page-banner p {
  position: relative;
  z-index: 2;
}
.page-banner .crumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
}
.page-banner .crumb a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}
.page-banner .crumb a:hover {
  text-decoration: underline;
}
.page-banner h1 {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.page-banner p {
  color: var(--gray);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Menu page (menu.html full listing) */
.menu-page {
  background: var(--cream);
  padding: 90px 60px 110px;
}
.menu-page .inner {
  max-width: 900px;
  margin: 0 auto;
}
.menu-cat-block {
  padding-top: 35px;
  padding-bottom: 35px;
}
.menu-cat-block:last-child {
  margin-bottom: 0;
}
.menu-cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--dark);
  scroll-margin-top: 100px;
}
.menu-cat-head .cat-icon {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 0;
}
.menu-cat-head h2 {
  font-family: "Anton", sans-serif;
  font-size: 27px;
  letter-spacing: 0.4px;
}
.menu-cat-head .count {
  margin-left: auto;
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-grid {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu-page .menu-grid {
  max-width: 100%;
}
.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 24px 20px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  overflow: hidden;
}
.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.menu-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
  border-color: transparent;
}
.menu-item:hover::before {
  transform: scaleY(1);
}
.menu-item .thumb {
  position: relative;
  width: 84px;
  height: 84px;
  flex-shrink: 0;
}
.menu-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.menu-item .thumb .cat-tag {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.menu-item .item-body {
  flex: 1;
  min-width: 0;
}
.menu-item .item-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.menu-item .desc {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
}
.menu-item .item-side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.menu-item .price {
  color: var(--yellow);
  font-weight: 700;
  font-size: 15.5px;
  white-space: nowrap;
}
.menu-item .item-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 20px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.menu-item .item-order:hover {
  background: var(--yellow);
  transform: translateY(-1px);
}

.menu-cta {
  text-align: center;
  margin-top: 54px;
}
.menu-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 16px 34px;
  border-radius: 5px;
  box-shadow: 0 14px 30px rgba(141, 122, 52, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-cta a:hover {
  background: linear-gradient(135deg, #E3C554 0%, #FBDA43 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(141, 122, 52, 0.32);
}

/* Testimonials */
.testimonials {
  position: relative;
  padding: 60px 60px 60px;
  overflow: hidden;
  background: var(--cream);
}
.testi-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.testimonials .section-title .dash {
  background: var(--pink);
}

.testi-carousel {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.testi-card {
  flex: 0 0 calc((100% - 10px) / 2);
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: left;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(247, 42, 129, 0.28);
}
.testi-card .testi-text {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  min-height: 80px;
  transition: color 0.3s;
}
.testi-card .testi-text::before,
.testi-card .testi-text::after {
  color: var(--pink);
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 0;
  vertical-align: -8px;
  transition: color 0.3s;
}
.testi-card .testi-text::before {
  content: "\201C";
  margin-right: 5px;
}
.testi-card .testi-text::after {
  content: "\201D";
  margin-left: 5px;
}
.testi-card:hover .testi-text {
  color: rgba(255, 255, 255, 0.92);
}
.testi-card:hover .testi-text::before,
.testi-card:hover .testi-text::after {
  color: #fff;
}
.testi-card .testi-product {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 42, 129, 0.1);
  padding: 6px 14px 6px 6px;
  border-radius: 30px;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.testi-card .testi-product img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.testi-card .testi-product span {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.3;
  transition: color 0.3s;
}
.testi-card:hover .testi-product {
  background: rgba(255, 255, 255, 0.18);
}
.testi-card:hover .testi-product span {
  color: #fff;
}
.testi-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testi-card-foot .testi-foot-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.testi-card .testi-stars {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 1px;
  margin-top: 10px;
}
.testi-card .avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testi-card .testi-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--dark);
  transition: color 0.3s;
}
.testi-card:hover .testi-name {
  color: #fff;
}
.testi-card .testi-role {
  font-size: 12px;
  color: var(--gray);
  transition: color 0.3s;
}
.testi-card:hover .testi-role {
  color: rgba(255, 255, 255, 0.75);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}
.testi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  color: var(--dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.testi-arrow:hover {
  background: var(--yellow);
  color: #fff;
  border-color: var(--yellow);
}
.testi-dots {
  display: flex;
  gap: 9px;
}
.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 20px;
  background: #e6c9bd;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active {
  background: var(--yellow);
  transform: scale(1.25);
}

.testi-view-all {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.testi-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 30px;
  background: var(--yellow);
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.testi-view-all a:hover {
  background: var(--dark);
  color: #fff;
}

@media (max-width: 900px) {
  .testi-card {
    flex: 0 0 100%;
  }
}

/* Foodpanda promo */
.fp-promo {
  position: relative;
  background: linear-gradient(180deg, #ffe3b0 0%, #ffc94d 100%);
  padding: 20px 60px 0;
}
.fp-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.fp-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  flex: 0 0 auto;
  flex-wrap: wrap;
  margin-left: 5%;
}
.fp-visual-phone {
  transform: translateY(-25%);
}

/* Foodpanda phone mockup */
.phone-frame {
  width: 190px;
  background: #171717;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 327/588;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.fp-text {
  max-width: 820px;
  margin-top: -5%;
}
.fp-text h2 {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.fp-text p {
  color: #4a3418;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.fp-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.fp-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.fp-badge.outline {
  background: #fff;
  color: var(--dark);
}
.fp-badge .badge-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-badge .badge-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.fp-badge .badge-text {
  line-height: 1.25;
}
.fp-badge .badge-text small {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fp-badge .badge-text strong {
  font-size: 15px;
}
.fp-badge:hover {
  transform: translateY(-2px);
}
.fp-wave {
  display: block;
  width: 100%;
  height: 60px;
}

/* Contact page */
.contact-page {
  background: var(--white);
  padding: 90px 60px 110px;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 34px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.contact-card .c-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin: 0 auto 18px;
}
.contact-card .c-icon svg {
  display: block;
  fill: currentColor;
}
.contact-card h3 {
  font-size: 15.5px;
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-card p,
.contact-card a {
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.65;
  text-decoration: none;
  display: block;
}
.contact-card a:hover {
  color: var(--yellow);
}

.contact-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 60px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 5px;
  transition: background 0.2s, transform 0.2s;
}
.contact-btn.solid {
  background: var(--yellow);
  color: #fff;
}
.contact-btn.solid:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}
.contact-btn.ghost {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--border);
}
.contact-btn.ghost:hover {
  background: var(--light-gray);
}

/* Footer */
footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 60px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta .cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-cta .bell {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.footer-cta .cta-left h4 {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-cta .cta-left small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  margin-top: 4px;
  font-weight: 400;
}
.footer-cta .cta-btns {
  display: flex;
  gap: 14px;
}
.footer-cta .cta-btns a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 5px;
  transition: opacity 0.2s;
}
.footer-cta .cta-btns a.solid {
  background: var(--yellow);
  color: #fff;
}
.footer-cta .cta-btns a.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.footer-cta .cta-btns a:hover {
  opacity: 0.85;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding: 0px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}
.footer-logo .logo-text {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: #F5D943;
}
.footer-logo .logo-text .magic {
  color: #fff;
}
.footer-logo .logo-text small {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}
.footer-grid .f-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff;
}
.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}
.footer-grid a:hover {
  color: var(--yellow);
}
.footer-grid li {
  margin-bottom: 4px;
}
.footer-timings span, .footer-contacts span {
  font-weight: 600;
  color: #fff;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom .social {
  display: flex;
  gap: 14px;
}
.footer-bottom .social a {
  width: 36px;
  height: 36px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-bottom .social a:hover {
  background: var(--yellow);
}
.footer-bottom .social a svg {
  display: block;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-inner {
    padding: 16px 24px;
  }
  nav > ul {
    gap: 2px;
  }
  .menu-item {
    flex-wrap: wrap;
  }
  .menu-item .item-side {
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  .fp-inner {
    flex-direction: column;
    text-align: center;
  }
  .fp-text {
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .logo .logo-text small {
    display: none;
  }
  .logo .logo-text {
    font-size: 18px;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .call-now-btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 20px 20px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  header.nav-open nav {
    display: block;
  }
  nav > ul {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li > a {
    width: 100%;
    padding: 14px 8px;
  }
  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--border);
    margin: 2px 0 6px;
    transform: none;
  }
  nav ul li.dropdown-open .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .hero-ctas a {
    width: 220px;
    text-align: center;
    display: block;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-visual {
    display: none;
  }
  .hero-content h1 {
     font-size: 24px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .signature {
    padding: 60px 30px;
  }
  .categories,
  .menu-section,
  .testimonials {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-title {
    font-size: 32px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-banner {
    padding: 50px 24px;
  }
  .page-banner h1 {
    font-size: 32px;
  }
  .menu-page {
    padding: 60px 20px 80px;
  }
  .menu-tab {
    width: 100%;
  }
  .menu-cat-head h2 {
    font-size: 22px;
  }
  .contact-page {
    padding: 60px 20px 80px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .fp-visual {
    display: none;
  }
  .fp-promo {
    padding: 30px 60px 30px;
  }
  .fp-text h2 {
    font-size: 26px;
  }
  .fp-badge {
    width: 100%;
    height: 55px;
  }
  .menu-tabs-wrap {
    justify-content: center;
    margin-bottom: 36px;
  }
  .menu-tabs {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
  .menu-tab {
    padding: 10px 16px;
    font-size: 12.5px;
  }
  .testi-card-foot {
    margin-top: 15px;
  }
  .testi-card .testi-product {
    margin-top: 20px;
  }
  .testi-card .testi-product span {
    font-weight: 500;
    line-height: 1.5;
  }
  .testi-card .testi-role {
    font-size: 10px;
  }

}
