/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 日式高端奢華 color palette */
  --color-cream: #f7f5f0;
  --color-white: #ffffff;
  --color-green: #2d5a3d;
  --color-green-light: #e8efe9;
  --color-green-dark: #1e3f2b;
  --color-gold: #8b6f3a;
  --color-gold-accent: #c4a265;
  --color-gold-light: #f5f0e5;
  --color-peach: #8b6f3a;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-text-muted: #888888;
  --color-border: #e0dcd6;

  /* Typography */
  --font-jp: "Zen Maru Gothic", serif;
  --font-body: "Noto Sans TC", sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1100px;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--color-green);
  color: var(--color-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.08em;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-menu a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-light);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.05em;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--color-green);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
  border-radius: 1px;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  padding-top: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-cream);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(247, 245, 240, 0.05) 0%,
    rgba(247, 245, 240, 0.2) 30%,
    rgba(247, 245, 240, 0.5) 60%,
    rgba(247, 245, 240, 0.85) 100%
  );
}

/* Scroll hint at bottom of hero */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollFade 2.5s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  opacity: 0.6;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--color-text-light);
  opacity: 0.4;
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollFade {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-light);
  letter-spacing: 0.35em;
  margin-bottom: 20px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-family: var(--font-jp);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.7);
}

.hero-jp {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--color-text);
  letter-spacing: 0.25em;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 2.2;
  margin-bottom: 44px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: var(--transition);
  min-height: 44px;
}

.hero-cta:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 90, 61, 0.25);
}

/* ========== Section Common ========== */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.15em;
}

.section-divider {
  width: 32px;
  height: 1.5px;
  background: var(--color-gold);
  margin: 20px auto 0;
}

/* ========== About ========== */
.about {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image img {
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-text h3 {
  font-family: var(--font-jp);
  font-size: 1.375rem;
  color: var(--color-green);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 2.2;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--color-green-light);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-green);
}

.feature-jp {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-top: -2px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== SVG Icon Sizes ========== */
.svg-icon {
  width: 28px;
  height: 28px;
  color: var(--color-green);
}

.svg-icon-lg {
  width: 36px;
  height: 36px;
  color: var(--color-green);
}

.svg-icon-xl {
  width: 40px;
  height: 40px;
  color: var(--color-green);
}

/* ========== Menu ========== */
.menu {
  background: var(--color-cream);
}

.order-cta-banner {
  background: linear-gradient(
    135deg,
    var(--color-green) 0%,
    var(--color-green-dark) 100%
  );
  border-radius: 4px;
  padding: 28px 36px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-cta-banner::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(196, 162, 101, 0.08);
  border-radius: 50%;
}

.order-cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -10px;
  width: 80px;
  height: 80px;
  background: rgba(196, 162, 101, 0.06);
  border-radius: 50%;
}

.order-cta-tagline {
  font-family: var(--font-jp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  position: relative;
}

.order-cta-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  position: relative;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.menu-tab {
  padding: 12px 32px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  min-height: 44px;
  letter-spacing: 0.05em;
}

.menu-tab:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.menu-tab.active {
  background: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.menu-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--color-green-light);
}

.menu-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Image-based menu cards */
.menu-card.has-image {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card-body {
  padding: 28px 28px;
}

.menu-card h4 {
  font-family: var(--font-jp);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  color: var(--color-text);
}

.menu-tagline {
  font-size: 0.95rem;
  color: var(--color-gold-accent);
  font-style: normal;
  letter-spacing: 0.06em;
  margin-top: 10px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.85;
}

.menu-tagline::before {
  content: "— ";
  color: var(--color-gold-accent);
  opacity: 0.6;
}

.menu-name-jp {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.menu-desc {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.menu-price {
  font-family: var(--font-jp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
}

.menu-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.menu-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ========== Gallery ========== */
.gallery {
  background: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.large img {
  height: 100%;
  min-height: 280px;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 16px 20px 18px;
  text-align: center;
  background: #fff;
}

.gallery-caption-text {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(139, 111, 58, 0.2);
  line-height: 1.6;
}

.gallery-caption-jp {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  color: var(--color-gold-accent);
  letter-spacing: 0.15em;
  font-weight: 400;
}

/* ========== Info ========== */
.info {
  background: var(--color-cream);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 44px 36px;
  text-align: center;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-card h4 {
  font-family: var(--font-jp);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.hours-table td {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--color-text);
}

.hours-table .closed td {
  color: var(--color-gold);
}

.info-address {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.map-container {
  border-radius: 4px;
  overflow: hidden;
}

/* ========== Contact ========== */
.contact {
  background: var(--color-green-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 44px 24px;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45, 90, 61, 0.1);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--color-green);
  font-weight: 500;
}

/* ========== Podcast Player ========== */
.podcast-section {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, #0f1f15 100%);
}

.podcast-section .section-label {
  color: var(--color-gold);
}

.podcast-section .section-title {
  color: #fff;
}

.podcast-section .section-divider {
  background: var(--color-gold);
}

.audio-player-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 162, 101, 0.15);
  border-radius: 4px;
  padding: 32px 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.audio-player-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 162, 101, 0.04) 0%,
    transparent
  );
}

.audio-player-card.playing {
  box-shadow:
    0 20px 60px rgba(196, 162, 101, 0.12),
    0 0 0 1px rgba(196, 162, 101, 0.25);
}

.audio-player-card:hover {
  transform: translateY(-2px);
}

.audio-player-visual {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.audio-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding-bottom: 4px;
}

.audio-waveform span {
  width: 3px;
  height: 8px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-green));
  border-radius: 1px;
  transition: height 0.15s ease;
  opacity: 0.5;
}

.audio-player-card.playing .audio-waveform span {
  opacity: 1;
  animation: wave-idle 1.5s ease-in-out infinite alternate;
}

.audio-waveform span:nth-child(1) {
  animation-delay: 0s;
}
.audio-waveform span:nth-child(2) {
  animation-delay: 0.1s;
}
.audio-waveform span:nth-child(3) {
  animation-delay: 0.2s;
}
.audio-waveform span:nth-child(4) {
  animation-delay: 0.3s;
}
.audio-waveform span:nth-child(5) {
  animation-delay: 0.4s;
}
.audio-waveform span:nth-child(6) {
  animation-delay: 0.5s;
}
.audio-waveform span:nth-child(7) {
  animation-delay: 0.4s;
}
.audio-waveform span:nth-child(8) {
  animation-delay: 0.3s;
}
.audio-waveform span:nth-child(9) {
  animation-delay: 0.2s;
}
.audio-waveform span:nth-child(10) {
  animation-delay: 0.1s;
}
.audio-waveform span:nth-child(11) {
  animation-delay: 0s;
}
.audio-waveform span:nth-child(12) {
  animation-delay: 0.1s;
}
.audio-waveform span:nth-child(13) {
  animation-delay: 0.2s;
}
.audio-waveform span:nth-child(14) {
  animation-delay: 0.3s;
}
.audio-waveform span:nth-child(15) {
  animation-delay: 0.4s;
}

@keyframes wave-idle {
  0% {
    height: 8px;
  }
  100% {
    height: 24px;
  }
}

.audio-player-info {
  flex: 1;
  min-width: 0;
  position: relative;
}

.audio-label {
  color: var(--color-gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 6px;
  font-weight: 400;
}

.audio-title {
  color: #fff;
  font-family: var(--font-jp);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.audio-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.audio-player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 260px;
  position: relative;
}

.audio-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-gold), var(--color-green));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.25);
  min-width: 56px;
  min-height: 56px;
}

.audio-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(196, 162, 101, 0.4);
}

.audio-play-btn .play-icon {
  margin-left: 3px;
}

.audio-progress-wrap {
  flex: 1;
  min-width: 0;
}

.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.audio-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  transition: height 0.2s;
}

.audio-progress:hover {
  height: 5px;
}

.audio-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-green));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}

.audio-progress-bar::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.audio-progress:hover .audio-progress-bar::after {
  opacity: 1;
}

/* ========== Cart System ========== */

/* Add to Cart Button */
.menu-card-body {
  position: relative;
  padding-bottom: 48px;
}

.btn-add-cart {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-accent);
  background: var(--color-white);
  color: var(--color-gold-accent);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  line-height: 1;
}

.btn-add-cart:hover {
  background: var(--color-gold-accent);
  color: var(--color-white);
  transform: scale(1.1);
}

.btn-add-cart:active {
  transform: scale(0.95);
}

/* Card Qty Counter (replaces + button after adding) */
.card-qty-control {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--color-green);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.card-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  min-width: 32px;
  min-height: 32px;
}

.card-qty-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.card-qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-jp);
}

/* Cart FAB */
.cart-fab {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  display: none;
  font-family: var(--font-body);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.cart-fab-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-fab-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-fab-badge {
  background: var(--color-gold-accent);
  color: var(--color-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-fab-label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cart-fab-total {
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-jp);
  letter-spacing: 0.05em;
}

.cart-fab:hover {
  background: var(--color-green-dark);
}

.cart-fab,
.cart-fab * {
  cursor: pointer;
}

/* Body padding when cart FAB is visible — prevents content from hiding behind FAB */
body.cart-fab-visible {
  padding-bottom: 72px;
}

/* LINE button shifts up when cart FAB is visible */
.floating-line-wrap.cart-active {
  bottom: 80px;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Cart Drawer - Desktop: right slide-in */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  max-height: 100vh;
  background: var(--color-white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-page {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-header h3 {
  font-family: var(--font-jp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-back {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--color-text);
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--color-text-muted);
}

.cart-empty p:first-child {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cart-empty-sub {
  font-size: 0.825rem;
}

/* Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.825rem;
  color: var(--color-text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  color: var(--color-text);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
}

.cart-qty-btn:hover {
  border-color: var(--color-gold-accent);
  color: var(--color-gold-accent);
}

.cart-qty-value {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-subtotal {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-gold);
  min-width: 56px;
  text-align: right;
  margin-left: 16px;
}

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  background: var(--color-white);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total-row span:first-child {
  font-size: 1rem;
  font-weight: 500;
}

.cart-total-amount {
  font-family: var(--font-jp);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(
    135deg,
    var(--color-gold-accent),
    var(--color-gold)
  );
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  font-family: var(--font-body);
}

.btn-checkout:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Checkout Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.required {
  color: #d44;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold-accent);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: #d44;
}

.radio-group {
  display: flex;
  gap: 16px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 8px 0;
  min-height: 44px;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold-accent);
}

.checkout-summary {
  background: var(--color-cream);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.8;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--color-gold);
}

.btn-submit-order {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 4px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  font-family: var(--font-body);
}

.btn-submit-order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-submit-order:not(:disabled):hover {
  background: var(--color-green-dark);
}

/* Order Confirmation */
.cart-confirm-body {
  text-align: center;
  padding: 48px 24px;
}

.confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.confirm-title {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.confirm-order-id {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.confirm-summary {
  background: var(--color-cream);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.8;
}

.btn-add-line {
  display: inline-block;
  padding: 12px 28px;
  background: #06c755;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  min-height: 44px;
}

.btn-add-line:hover {
  opacity: 0.9;
}

.confirm-auto-close {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Page content padding for FAB — only when cart FAB is visible */

/* ========== Cart RWD: Tablet ========== */
@media (max-width: 768px) {
  .cart-drawer {
    width: 100%;
    height: 85vh;
    max-height: none;
    top: auto;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    border-radius: 16px 16px 0 0;
  }

  .cart-drawer.open {
    transform: translateY(0);
  }

  /* Checkout: sticky submit button at bottom of scrollable area */
  .btn-submit-order {
    position: sticky;
    bottom: 0;
    z-index: 1;
    border-radius: 0;
    margin: 20px -16px 0;
    width: calc(100% + 32px);
    padding: 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  }
}

/* ========== Cart RWD: Mobile ========== */
@media (max-width: 480px) {
  .cart-fab-inner {
    padding: 14px 20px;
  }

  .cart-fab-label {
    font-size: 0.875rem;
  }

  .cart-fab-total {
    font-size: 1rem;
  }

  .cart-drawer {
    height: 90vh;
  }

  .cart-header {
    padding: 16px 16px;
  }

  .cart-body {
    padding: 12px 16px;
  }

  .cart-footer {
    padding: 16px;
  }

  .cart-item-subtotal {
    min-width: 48px;
    font-size: 0.875rem;
  }

  .btn-add-cart {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }

  .card-qty-control {
    bottom: 12px;
    right: 12px;
  }

  .card-qty-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }

  .card-qty-value {
    min-width: 20px;
    font-size: 0.8rem;
  }

  .order-cta-banner {
    padding: 20px 16px;
    margin-bottom: 32px;
  }

  .order-cta-tagline {
    font-size: 1rem;
  }

  .order-cta-sub {
    font-size: 0.75rem;
  }
}

/* ========== Product Detail Modal ========== */

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  width: calc(100% - 80px);
  max-width: 720px;
  max-height: 85vh;
  background: var(--color-white);
  z-index: 2001;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.product-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.product-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
  background: var(--color-white);
}

.product-modal-back,
.product-modal-close {
  background: none;
  border: none;
  font-size: 0.95rem;
  color: var(--color-text-light);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  font-family: var(--font-body);
}

.product-modal-back:hover,
.product-modal-close:hover {
  background: var(--color-green-light);
  color: var(--color-green-dark);
}

.product-modal-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

/* Modal inner content */
.pm-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.pm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-seasonal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-gold-accent);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.pm-body {
  padding: 40px 32px 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pm-name-jp {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.pm-name {
  font-family: var(--font-jp);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.pm-tagline {
  font-size: 1.1rem;
  color: var(--color-gold-accent);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  line-height: 1.6;
}

.pm-description {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 28px;
  text-align: left;
}

.pm-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pm-feature-pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

.pm-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.pm-cta-btn {
  display: block;
  width: 100%;
  padding: 0 24px;
  height: 56px;
  background: var(--color-green-dark);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.15s ease;
  letter-spacing: 0.06em;
}

.pm-cta-btn:hover {
  background: var(--color-green);
}

.pm-cta-btn:active {
  transform: scale(0.98);
}

/* Card clickable hint */
.menu-card.has-image {
  cursor: pointer;
}

.menu-card.has-image .menu-card-body {
  position: relative;
  padding-bottom: 56px;
}

.menu-card.has-image .menu-card-body::after {
  content: "查看詳情 →";
  position: absolute;
  bottom: 16px;
  left: 28px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
  letter-spacing: 0.04em;
}

.menu-card.has-image:hover .menu-card-body::after {
  color: var(--color-gold-accent);
}

/* Modal - tablet */
@media (max-width: 768px) {
  .pm-body {
    padding: 32px 24px 40px;
  }

  .pm-name {
    font-size: 1.6rem;
  }

  .pm-tagline {
    font-size: 1rem;
  }
}

/* Modal - tablet */
@media (max-width: 768px) {
  .product-modal {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    opacity: 1;
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    pointer-events: none;
  }

  .product-modal.open {
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Modal - mobile */
@media (max-width: 480px) {
  .product-modal {
    max-height: 95vh;
  }

  .pm-image {
    aspect-ratio: 4 / 3;
  }

  .pm-body {
    padding: 24px 20px 36px;
  }

  .pm-name {
    font-size: 1.35rem;
  }

  .pm-tagline {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .pm-description {
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 20px;
  }

  .pm-feature-pill {
    padding: 5px 14px;
    font-size: 0.78rem;
  }

  .pm-price {
    font-size: 1.3rem;
  }

  .pm-cta-btn {
    height: 52px;
    font-size: 1rem;
    border-radius: 10px;
  }

  /* Card hint always visible on mobile */
  .menu-card.has-image .menu-card-body::after {
    color: var(--color-text-muted);
  }
}

/* ========== Footer ========== */
.footer {
  background: var(--color-green-dark);
  color: var(--color-white);
  text-align: center;
  padding: 56px 24px 80px;
}

.footer-logo {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.15em;
}

.footer-jp {
  font-family: var(--font-jp);
  font-size: 0.8rem;
  color: var(--color-gold-accent);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========== Scroll Animation ========== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Hamburger Animation ========== */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ========== Tablet (768px) ========== */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-video {
    object-position: center center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(247, 245, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: flex;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

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

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

  .about-image img {
    aspect-ratio: 16/9;
  }

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

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

  .gallery-item.large {
    grid-row: auto;
  }

  .gallery-item img,
  .gallery-item.large img {
    height: 220px;
  }

  .gallery-caption {
    padding: 12px 16px 14px;
  }

  .gallery-caption-text {
    font-size: 0.85rem;
    padding-top: 10px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .audio-player-card {
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    text-align: center;
  }

  .audio-player-visual {
    width: 100%;
    height: 180px;
  }

  .audio-title {
    font-size: 1rem;
    white-space: normal;
  }

  .audio-player-controls {
    width: 100%;
    min-width: 0;
  }

  .audio-play-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .audio-play-btn svg {
    width: 24px;
    height: 24px;
  }

  /* Hours table - tablet */
  .hours-table {
    table-layout: fixed;
    word-break: break-word;
  }

  /* Footer - tablet */
  .footer {
    padding: 48px 20px;
  }

  .footer-logo {
    font-size: 1.35rem;
  }

  /* Cart FAB - tablet: uses base bottom:0 (full-width bar) */

  /* Menu card - tablet */
  .menu-tab {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* ========== Mobile (480px) ========== */
@media (max-width: 480px) {
  :root {
    --section-padding: 64px 0;
  }

  html {
    font-size: 15px;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    height: 100svh;
    min-height: 480px;
  }

  .hero-video {
    object-position: center 30%;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .hero-jp {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
  }

  .hero-tagline {
    letter-spacing: 0.15em;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-cta {
    padding: 14px 36px;
    font-size: 0.85rem;
  }

  .hero-scroll-hint {
    bottom: 20px;
  }

  .scroll-line {
    height: 24px;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-features {
    gap: 12px;
  }

  .feature {
    padding: 14px 16px;
    font-size: 0.8rem;
  }

  .menu-tabs {
    gap: 6px;
    flex-wrap: wrap;
  }

  .menu-tab {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-card {
    border-radius: 4px;
  }

  .menu-card.has-image {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding: 0;
  }

  .menu-card.has-image .menu-card-img {
    aspect-ratio: unset;
    border-radius: 4px 0 0 4px;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .menu-card.has-image .menu-card-img img {
    width: 100px;
    height: 100px;
    border-radius: 4px 0 0 0;
  }

  /* Mobile: clickable hint below image */
  .menu-card.has-image .menu-card-img::after {
    content: "查看詳情 ›";
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 32px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-gold-accent);
    letter-spacing: 0.06em;
    border-top: 1px solid var(--color-border);
    background: var(--color-gold-light);
    border-radius: 0 0 0 4px;
    pointer-events: none;
  }

  .menu-card.has-image .menu-card-body {
    padding: 12px 62px 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .menu-card.has-image .menu-card-body::after {
    display: none;
  }

  .menu-card-icon {
    margin-bottom: 0;
  }

  .menu-card h4 {
    font-size: 0.95rem;
    margin-bottom: 1px;
  }

  .menu-tagline {
    font-size: 0.78rem;
    margin-top: 6px;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .menu-name-jp {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }

  .menu-desc {
    font-size: 0.8rem;
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .menu-price {
    font-size: 1rem;
  }

  .menu-badge {
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
  }

  .menu-card.seasonal {
    padding-top: 28px;
  }

  .gallery-item img,
  .gallery-item.large img {
    height: 180px;
  }

  .gallery-caption {
    padding: 10px 14px 12px;
  }

  .gallery-caption-text {
    font-size: 0.8rem;
    padding-top: 8px;
    margin-bottom: 4px;
  }

  .gallery-caption-jp {
    font-size: 0.6rem;
  }

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

  .hours-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .map-container iframe {
    height: 200px;
  }

  .contact-card {
    padding: 20px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .contact-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .contact-card h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .contact-card p {
    font-size: 0.8rem;
    word-break: break-all;
  }

  .svg-icon-lg {
    width: 28px;
    height: 28px;
  }

  .svg-icon-xl {
    width: 32px;
    height: 32px;
  }

  /* Audio player - mobile */
  .audio-player-visual {
    height: 150px;
  }

  .audio-title {
    font-size: 0.9rem;
  }

  .audio-play-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .audio-play-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Hours table - mobile */
  .hours-table {
    table-layout: fixed;
    word-break: break-word;
  }

  .hours-table td {
    padding: 8px 6px;
    font-size: 0.8rem;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-logo {
    font-size: 1.25rem;
  }
}

/* ========== Floating LINE Button ========== */
.floating-line-wrap {
  position: fixed;
  bottom: 24px;
  right: 28px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.floating-line-wrap.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-line-label {
  background: rgba(45, 90, 61, 0.92);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 60px;
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-cursor {
  display: inline-block;
  color: var(--color-gold-accent);
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: 1px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.floating-line-btn {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: none;
  transition:
    transform 0.3s,
    filter 0.3s;
  animation: floatPulse 3s ease-in-out infinite;
  position: relative;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.floating-line-btn:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 20px rgba(6, 199, 85, 0.4));
}

.juice-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.18));
}

/* Juice Popup Panel */
.juice-popup {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  width: 180px;
  background: rgba(30, 63, 43, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: scale(0.85) translateY(8px);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 100;
}

.juice-popup.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.juice-popup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: left;
}

.juice-popup-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.juice-popup-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.juice-popup-item:first-child svg {
  fill: #06c755;
  color: #06c755;
}

/* Rotate icon when popup open */
.floating-line-wrap.popup-open .floating-line-btn {
  animation: none;
}

.floating-line-wrap.popup-open .floating-line-label {
  opacity: 0;
  pointer-events: none;
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Floating LINE - tablet */
@media (max-width: 768px) {
  .floating-line-wrap {
    bottom: 24px;
    right: 20px;
    gap: 6px;
  }

  .floating-line-btn {
    width: 72px;
    height: 72px;
  }

  .juice-icon {
    width: 72px;
    height: 72px;
  }

  .floating-line-label {
    font-size: 0.72rem;
    padding: 5px 12px;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .juice-popup {
    width: 170px;
  }

  .floating-line-wrap.cart-active {
    bottom: 76px;
  }
}

/* Floating LINE - mobile */
@media (max-width: 480px) {
  .floating-line-wrap {
    bottom: 16px;
    right: 16px;
    gap: 6px;
  }

  .floating-line-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    height: 26px;
  }

  .floating-line-btn {
    width: 52px;
    height: 52px;
  }

  .juice-icon {
    width: 44px;
    height: 44px;
  }

  .juice-popup {
    width: 160px;
    right: 0;
    border-radius: 12px;
  }

  .juice-popup-item {
    padding: 10px 12px;
    font-size: 0.8rem;
    gap: 8px;
  }

  .floating-line-wrap.cart-active {
    bottom: 72px;
  }
}
