:root {
  --pink: #e7c3d8;
  --pink-strong: #dba9c8;
  --ink: #191513;
  --muted: #766f6a;
  --cream: #fbf7f2;
  --sage: #b9c6b0;
  --coffee: #6f4e37;
  --line: rgba(25, 21, 19, 0.1);
  --shadow: 0 24px 70px rgba(85, 56, 62, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

button {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader-mark {
  width: clamp(78px, 18vw, 104px);
  height: clamp(78px, 18vw, 104px);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  animation: loaderPulse 1.3s ease-in-out infinite;
}

.loader-mark img {
  width: 82%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: logoFadeIn 0.7s ease both;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 12px 12px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 38px rgba(25, 21, 19, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 18px rgba(85, 56, 62, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.brand-mark img {
  width: 86%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: logoFadeIn 0.65s ease both;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  box-shadow: 0 10px 24px rgba(85, 56, 62, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  transform: translateY(-1px) scale(1.05);
}

.brand-name {
  overflow: hidden;
  font-size: 0.95rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 108px 18px 34px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.83) 38%, rgba(255, 255, 255, 0.18) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 26%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/wuju-hero.png");
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroFloat 13s ease-in-out infinite alternate;
}

.hero-content {
  width: min(100%, 720px);
}

.hero-logo {
  width: clamp(86px, 22vw, 142px);
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(85, 56, 62, 0.14);
  animation: logoFadeIn 0.8s 0.16s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coffee);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.6rem, 18vw, 8.6rem);
  line-height: 0.88;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 10vw, 5.4rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 24px;
  color: #524943;
  font-size: clamp(1.04rem, 4vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 36px rgba(25, 21, 19, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.hero-status {
  position: absolute;
  right: 18px;
  bottom: 20px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(25, 21, 19, 0.1);
  backdrop-filter: blur(14px);
  color: #51463f;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 7px rgba(185, 198, 176, 0.24);
}

.section {
  padding: 72px 18px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 26px;
}

.gallery-section {
  scroll-margin-top: 104px;
  padding-top: 58px;
  padding-bottom: 64px;
}

.gallery-section .section-heading {
  max-width: 1180px;
  margin-bottom: 16px;
}

.category-grid {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  min-height: 260px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f0f4;
  box-shadow: 0 16px 45px rgba(68, 42, 48, 0.08);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.category-card::before,
.menu-image {
  background-image: url("assets/wuju-menu-sheet.png");
  background-size: 300% 200%;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: var(--image-position);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(25, 21, 19, 0.56));
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(231, 195, 216, 0.8);
  box-shadow: 0 28px 72px rgba(85, 56, 62, 0.18);
  transform: translateY(-5px);
  outline: none;
}

.category-card:hover::before,
.category-card:focus-visible::before {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.category-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.category-content span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.category-content p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.menu-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.menu-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.menu-heading {
  margin-left: 0;
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0 2px 6px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  scroll-snap-align: start;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.menu-tab.active {
  border-color: transparent;
  background: var(--pink);
  color: #4a2e3a;
}

.menu-grid {
  display: grid;
  gap: 14px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 38px rgba(68, 42, 48, 0.08);
  animation: productIn 0.46s ease both;
}

.menu-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.45s ease;
}

.menu-image.has-product-image {
  background-position: center center;
  background-size: cover;
}

.menu-image.balanced-image {
  overflow: hidden;
  background-image: none;
}

.menu-image.balanced-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.menu-card img,
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.product-card-image,
.menu-card-image,
.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.product-card-image img,
.menu-card-image img,
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.special-coffee .product-image,
.special-coffee .menu-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background-image: none;
  background-repeat: no-repeat;
}

.special-coffee .product-image img,
.special-coffee .menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.dessert-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dessert-card .product-image,
.dessert-card .menu-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background-image: none;
  background-repeat: no-repeat;
}

.dessert-card .product-image img,
.dessert-card .menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.dessert-card .product-body {
  flex: 1;
}

.milkshake-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.milkshake-card .menu-image {
  height: 180px;
  flex: 0 0 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.milkshake-card .menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.milkshake-card .milkshake-placeholder {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, #ffe1ea 0%, #f7b8ca 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.milkshake-card .product-body {
  flex: 1;
}

.mocktail-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.mocktail-card .menu-image {
  height: 180px;
  flex: 0 0 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mocktail-card .menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.mocktail-card .product-body {
  flex: 1;
}

.cold-coffee-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.cold-coffee-card .menu-image {
  height: 180px;
  flex: 0 0 180px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.cold-coffee-card .menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.cold-coffee-card .product-body {
  flex: 1;
}

.product-card:hover .menu-image {
  transform: scale(1.04);
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-top strong {
  color: var(--coffee);
  white-space: nowrap;
}

.product-body p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-tile {
  margin: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-tile:first-child {
  aspect-ratio: 5 / 4;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  display: block;
}

.gallery-tile:hover {
  filter: saturate(1.06);
  transform: translateY(-4px);
}

.image-hot,
[data-category="hot"],
[data-category="classic"] {
  --image-position: 0% 0%;
}

.image-cold,
[data-category="cold"] {
  --image-position: 50% 0%;
}

.image-desserts,
[data-category="desserts"] {
  --image-position: 100% 0%;
}

.image-snacks,
[data-category="snacks"] {
  --image-position: 0% 100%;
}

.image-signature,
[data-category="signature"],
[data-category="special"] {
  --image-position: 50% 100%;
}

.image-best,
[data-category="best"],
[data-category="hot-drinks"] {
  --image-position: 100% 100%;
}

.about-section {
  display: grid;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-copy p {
  max-width: 680px;
}

.about-stats {
  display: grid;
  gap: 10px;
}

.about-stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.about-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--coffee);
  font-size: 2rem;
}

.about-stats span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-section {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
}

.map-panel {
  min-height: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(231, 195, 216, 0.7), rgba(255, 255, 255, 0.8)),
    url("assets/wuju-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--ink);
}

.map-panel span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
}

.map-panel strong {
  max-width: 380px;
  font-size: clamp(1.6rem, 7vw, 3rem);
  line-height: 0.98;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 46px 18px 104px;
  border-top: 1px solid rgba(231, 195, 216, 0.48);
  background: linear-gradient(180deg, #fff 0%, #fbf4f8 100%);
  text-align: center;
}

.footer p {
  margin-bottom: 0;
}

.footer > p {
  max-width: 420px;
  color: #6d615a;
  font-size: 0.92rem;
}

.footer-contact {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.footer-contact p {
  color: #6d615a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact span {
  display: block;
  margin-bottom: 3px;
  color: var(--coffee);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 800;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(219, 169, 200, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #4a2e3a;
  box-shadow: 0 10px 28px rgba(85, 56, 62, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible {
  background: #fff;
  box-shadow: 0 14px 34px rgba(85, 56, 62, 0.13);
  outline: none;
  transform: translateY(-2px);
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: grid;
  gap: 8px;
}

.float-button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(25, 21, 19, 0.9);
  color: #fff;
  box-shadow: 0 14px 34px rgba(25, 21, 19, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.float-button svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.float-button:hover,
.float-button:focus-visible {
  transform: translateY(-3px) scale(1.04);
  outline: none;
}

.instagram {
  background: #c4779e;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFloat {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes productIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 700px) {
  .site-header {
    inset: 18px 22px auto;
    padding: 10px 12px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #5a5049;
    font-size: 0.88rem;
    font-weight: 800;
  }

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

  .nav-links a:hover {
    color: var(--coffee);
  }

  .hero {
    padding-inline: 34px;
  }

  .hero-status {
    display: inline-flex;
  }

  .section {
    padding: 98px 34px;
  }

  .gallery-section {
    padding-top: 82px;
    padding-bottom: 84px;
  }

  .menu-image {
    height: 220px;
  }

  .menu-card img,
  .product-card img {
    height: 220px;
  }

  .product-card-image,
  .menu-card-image,
  .card-image {
    height: 220px;
  }

  .special-coffee .product-image,
  .special-coffee .menu-card-image {
    height: 220px;
  }

  .dessert-card .product-image,
  .dessert-card .menu-card-image {
    height: 220px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(210px, 22vw, 270px);
    gap: 14px;
  }

  .gallery-tile {
    aspect-ratio: auto;
  }

  .gallery-tile:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .gallery-tile:nth-child(2) {
    grid-column: span 2;
  }

  .about-section {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .about-stats {
    align-self: end;
  }

  .footer {
    padding: 52px 34px;
  }

  .footer-contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 699px) {
  .categories-section {
    display: none;
  }

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

  .gallery-tile {
    aspect-ratio: 1 / 1;
  }

  .gallery-tile:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 5 / 4;
  }

  .gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .menu-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
    overscroll-behavior-x: auto;
    scroll-snap-type: none;
    padding: 0;
  }

  .menu-tab {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    min-height: 38px;
    padding: 0 10px;
    white-space: normal;
    line-height: 1.15;
    scroll-snap-align: none;
  }

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

  .product-card,
  .dessert-card,
  .milkshake-card,
  .mocktail-card,
  .cold-coffee-card {
    min-height: 0;
    height: auto;
  }

  .menu-image,
  .product-card img,
  .product-card-image,
  .menu-card-image,
  .card-image,
  .special-coffee .product-image,
  .special-coffee .menu-card-image,
  .dessert-card .product-image,
  .dessert-card .menu-card-image,
  .milkshake-card .menu-image,
  .mocktail-card .menu-image,
  .cold-coffee-card .menu-image {
    height: 132px;
    flex-basis: 132px;
  }

  .product-body {
    gap: 8px;
    padding: 12px;
  }

  .product-top {
    flex-direction: column;
    gap: 5px;
  }

  .product-top h3 {
    font-size: 1rem;
    line-height: 1.16;
  }

  .product-top strong {
    font-size: 0.86rem;
  }

  .product-body p {
    display: -webkit-box;
    max-height: 2.7em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 0.84rem;
    line-height: 1.35;
  }
}

@media (min-width: 1020px) {
  .hero {
    padding-left: 7vw;
  }

  .menu-tabs {
    justify-content: center;
  }

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

  .category-card {
    min-height: 430px;
  }

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

  .product-card:nth-child(2) {
    transform: translateY(18px);
  }

  .product-card:nth-child(3) {
    transform: translateY(36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* FIX: All menu/product card images */
.product-card,
.menu-card {
  overflow: hidden;
}

.product-card img,
.menu-card img,
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #fff;
}

/* Prevent image containers from overflowing */
.product-card > div:first-child,
.menu-card > div:first-child,
.card > div:first-child {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
  .product-card img,
  .menu-card img,
  .card img {
    height: 180px;
  }

  .product-card > div:first-child,
  .menu-card > div:first-child,
  .card > div:first-child {
    height: 180px;
  }
}

@media (max-width: 699px) {
  .menu-image,
  .product-card img,
  .menu-card img,
  .card img,
  .product-card > div:first-child,
  .menu-card > div:first-child,
  .card > div:first-child,
  .product-card-image,
  .menu-card-image,
  .card-image,
  .special-coffee .product-image,
  .special-coffee .menu-card-image,
  .dessert-card .product-image,
  .dessert-card .menu-card-image,
  .milkshake-card .menu-image,
  .mocktail-card .menu-image,
  .cold-coffee-card .menu-image {
    height: 132px;
    flex-basis: 132px;
  }
}
