:root {
  --brand: #b98d08;
  --brand-dark: #8c6800;
  --accent: #f4c514;
  --ink: #432b1e;
  --text: #5b4639;
  --muted: #876f60;
  --line: rgba(185, 141, 8, 0.22);
  --cream: #fffaf0;
  --cream-deep: #f8edda;
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(69, 45, 24, 0.09);
  --shadow-soft: 0 8px 22px rgba(69, 45, 24, 0.07);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 42px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans TC", system-ui, sans-serif;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(185, 141, 8, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 170px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  font-weight: 700;
  color: var(--ink);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--brand);
  transition: transform 180ms ease;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--ink);
}

.announcement-bar {
  border-bottom: 1px solid rgba(185, 141, 8, 0.18);
  background: #fff9ec;
  color: var(--brand-dark);
}

.announcement-inner {
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 15px;
}

.announcement-star {
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px dashed rgba(185, 141, 8, 0.28);
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 231, 195, 0.48), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 106px 56px 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.hero h1,
.section h2,
.dialog-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif TC", serif;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.25;
}

.hero-text {
  margin: 24px 0 30px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  min-height: 48px;
  padding: 12px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #c69b12, #a87d00);
  box-shadow: 0 10px 24px rgba(185, 141, 8, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(185, 141, 8, 0.28);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: #fff;
}

.btn-outline:hover {
  color: #fff;
  background: var(--brand);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 calc((100vw - min(100vw - 40px, var(--container))) / -2) 0 0;
  overflow: hidden;
  border-radius: 46% 0 0 34%;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 90px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-star {
  position: absolute;
  z-index: 3;
  color: var(--brand);
  font-size: 28px;
}

.hero-star-one {
  top: 80px;
  left: 14px;
}

.hero-star-two {
  bottom: 74px;
  left: 40px;
  font-size: 18px;
}

.sparkles {
  position: absolute;
  top: 56px;
  left: 42%;
  display: grid;
  gap: 16px;
  color: var(--brand);
}

.sparkles span:nth-child(2) {
  transform: translateX(38px);
  font-size: 13px;
}

.sparkles span:nth-child(3) {
  transform: translateX(70px);
  font-size: 24px;
}

.featured {
  background:
    radial-gradient(circle at 5% 12%, rgba(244, 197, 20, 0.08), transparent 20%),
    linear-gradient(#fff, #fff);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.heading-kicker {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.heading-kicker span {
  color: var(--accent);
}

.section-heading h2,
.about-copy h2,
.store-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.section-heading p:last-child,
.store-heading p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 67, 46, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.menu-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.menu-card-image {
  aspect-ratio: 1.12;
  overflow: hidden;
  background: var(--cream);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

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

.menu-card-body {
  padding: 18px 16px 20px;
  text-align: center;
}

.menu-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 19px;
}

.menu-card p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.menu-price {
  display: block;
  margin-top: 12px;
  color: var(--brand);
  font-size: 22px;
  font-weight: 800;
}

.menu-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 12px rgba(244, 197, 20, 0.25);
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

.about {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
}

.about::before {
  content: "☆";
  position: absolute;
  right: 5vw;
  bottom: 48px;
  color: var(--brand);
  font-size: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 68px;
}

.about-copy>p:not(.heading-kicker) {
  max-width: 570px;
  margin: 20px 0 30px;
  font-size: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-item {
  min-width: 0;
  text-align: center;
}

.feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: var(--cream);
  font-size: 27px;
  font-weight: 700;
}

.feature-item h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 15px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.speech-badge {
  position: absolute;
  top: 28px;
  right: 26px;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 2px solid var(--brand);
  border-radius: 50%;
  color: var(--brand-dark);
  background: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(69, 45, 24, 0.1);
}

.store {
  padding-top: 74px;
  background: #fff;
}

.store-panel {
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 197, 20, 0.08), transparent 25%),
    var(--cream);
  box-shadow: var(--shadow-soft);
}

.store-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(400px, 1.1fr);
  gap: 42px;
  align-items: stretch;
}

.store-details {
  padding: 8px 0;
}

.info-list {
  margin: 0 0 30px;
}

.info-list>div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(185, 141, 8, 0.18);
}

.info-list dt {
  color: var(--brand-dark);
  font-weight: 800;
}

.info-list dt span {
  color: var(--brand);
  margin-right: 5px;
}

.info-list dd {
  margin: 0;
  color: var(--ink);
}

.info-list a {
  text-decoration: underline;
  text-decoration-color: rgba(185, 141, 8, 0.35);
  text-underline-offset: 4px;
}

.map-wrap {
  overflow: hidden;
  min-height: 360px;
  border: 8px solid #fff;
  border-radius: 26px;
  background: #eadfca;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.delivery-links {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.delivery-links p {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.delivery-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.delivery-buttons a {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 700;
}

.site-footer {
  position: relative;
  margin-top: 10px;
  padding: 64px 0 28px;
  overflow: hidden;
  background: #f7ead3;
}

.footer-wave {
  position: absolute;
  top: -54px;
  left: -3%;
  width: 106%;
  height: 92px;
  border-radius: 50%;
  background: #fff;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

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

.footer-brand p,
.footer-inner>p {
  margin: 8px 0 0;
  color: #6f5949;
  font-size: 13px;
}

.source-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8a7a68;
  font-size: 12px;
}

.source-brand img {
  width: 110px;
  max-height: 40px;
  object-fit: contain;
}

.menu-dialog {
  width: min(820px, calc(100% - 30px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.menu-dialog::backdrop {
  background: rgba(45, 30, 20, 0.64);
  backdrop-filter: blur(5px);
}

.dialog-card {
  position: relative;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
  padding: 44px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(20, 12, 7, 0.3);
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dialog-heading {
  margin-bottom: 28px;
  padding-right: 54px;
}

.dialog-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.full-menu-list {
  display: grid;
  gap: 12px;
}

.full-menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.full-menu-row h3 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 16px;
}

.full-menu-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.full-menu-row strong {
  color: var(--brand);
  font-size: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 180px 1fr auto;
  }

  .brand {
    width: 145px;
  }

  .main-nav {
    gap: 28px;
  }

  .hero-inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-copy {
    padding-right: 28px;
  }

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

  .about-grid {
    gap: 44px;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-layout {
    grid-template-columns: 1fr;
  }
}

.swipe-hint {
  display: none;
}

.menu-scroll-btn {
  display: none;
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 84px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: var(--cream);
  }

  .main-nav a::after {
    display: none;
  }

  .social-links {
    display: none;
  }

  .announcement-inner {
    min-height: 44px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
  }

  .announcement-divider,
  .announcement-inner strong {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 64px 0 42px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    min-height: 440px;
  }

  .hero-image-wrap {
    inset: 0 -14px 0 -14px;
    border-radius: 42px 42px 0 0;
  }

  .hero-image-wrap::before {
    display: none;
  }

  .sparkles {
    top: 22px;
    left: 64%;
  }

  .menu-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 78vw);
    gap: 14px;
    overflow-x: auto;
    padding: 5px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .menu-card {
    scroll-snap-align: start;
  }

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

  .about-copy {
    order: 1;
  }

  .about-media {
    order: 2;
  }

  .feature-list {
    margin-top: 28px;
  }

  .about-media img {
    min-height: 330px;
  }

  .store-panel {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .store-layout {
    gap: 28px;
  }

  .info-list>div {
    grid-template-columns: 102px 1fr;
  }

  .info-list>.is-hidden {
    display: none;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 300px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .source-brand {
    justify-content: flex-start;
    margin-top: 16px;
    font-size: 12px;
  }

  .source-brand img {
    width: 110px;
    max-height: 40px;
    object-fit: contain;
    opacity: 0.62;
    filter: grayscale(0);
  }

  .site-footer {
    text-align: center;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .source-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    text-align: center;
  }

  .source-brand img {
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 520px) {
  .section {
    padding: 62px 0;
  }

  .hero-actions,
  .store-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 340px;
  }

  .heading-kicker {
    font-size: 21px;
  }

  .feature-list {
    gap: 20px 8px;
  }

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

  .speech-badge {
    top: 18px;
    right: 16px;
    width: 108px;
    height: 108px;
    font-size: 15px;
  }

  .about-media img {
    min-height: 285px;
  }

  .info-list>div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dialog-card {
    padding: 28px 20px;
  }

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

  .swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
  }

  .menu-slider {
    position: relative;
  }

  .menu-slider::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 18px;
    width: 42px;
    pointer-events: none;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.94));
  }

  .menu-scroll-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(185, 141, 8, 0.25);
    border-radius: 50%;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 6px 18px rgba(93, 67, 46, 0.18);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
  }

  .menu-scroll-prev {
    left: -4px;
  }

  .menu-scroll-next {
    right: -4px;
  }

  .menu-scroll-btn:disabled {
    visibility: hidden;
  }
}

/* 左右滑動區塊 */
.menu-slider {
  position: relative;
}

/* 桌機先隱藏提示與箭頭 */
.swipe-hint,
.menu-scroll-btn {
  display: none;
}

@media (max-width: 780px) {

  .swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #9a815f;
    font-size: 14px;
    font-weight: 500;
  }

  .menu-slider {
    position: relative;
  }

  .menu-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 28px 20px;
    scrollbar-width: none;
  }

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

  .menu-card {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: start;
  }

  .menu-scroll-btn {
    position: absolute;
    z-index: 10;
    top: 50%;
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    color: #ffffff;
    background: #b68d0a;
    box-shadow: 0 6px 18px rgba(74, 52, 38, 0.22);

    font-family: Arial, sans-serif;
    font-size: 30px;
    line-height: 1;

    transform: translateY(-50%);
    cursor: pointer;
  }

  .menu-scroll-prev {
    left: 4px;
  }

  .menu-scroll-next {
    right: 4px;
  }

  .menu-scroll-btn:disabled {
    opacity: 0;
    pointer-events: none;
  }
}

/* 暫時隱藏首頁與完整菜單價格 */
.menu-price,
.full-menu-row strong {
  display: none !important;
}