/* ============================================
   NEON RAMEN - Restaurant Site H
   Dark Neon Futuristic Design
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0D0D0D;
  --accent-start: #FF6B35;
  --accent-end: #FBBF24;
  --accent: linear-gradient(135deg, #FF6B35, #FBBF24);
  --bg: #0D0D0D;
  --surface: #161616;
  --surface2: #1E1E1E;
  --text: #F0F0F0;
  --muted: #8A8A8A;
  --font-en: 'Sora', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --radius: 16px;
  --glow-orange: 0 0 20px rgba(255,107,53,.4), 0 0 60px rgba(255,107,53,.15);
  --glow-yellow: 0 0 20px rgba(251,191,36,.4), 0 0 60px rgba(251,191,36,.15);
}

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

body {
  font-family: var(--font-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

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

/* ── Sample Banner ── */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #FF6B35, #FBBF24);
  color: #0D0D0D;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  z-index: 99999;
  letter-spacing: .5px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 14px 0;
  transition: all .3s;
}

.header.scrolled {
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,53,.15);
  padding: 10px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0D0D;
  font-weight: 800;
  font-size: .9rem;
  font-family: var(--font-en);
  box-shadow: var(--glow-orange);
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: .6rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--muted);
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .3s;
  text-decoration: none;
}

.nav a:hover {
  color: #FF6B35;
}

.nav-cta {
  background: linear-gradient(135deg, #FF6B35, #FBBF24) !important;
  color: #0D0D0D !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: var(--glow-orange);
  transition: transform .3s, box-shadow .3s !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255,107,53,.5), 0 0 80px rgba(255,107,53,.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #FF6B35, #FBBF24);
  transition: .3s;
  display: block;
}

@media (max-width: 840px) {
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav a {
    font-size: 1.1rem;
  }
  .header-inner {
    padding: 0 20px;
  }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  text-align: center;
  background: var(--bg);
}

/* Steam / Vapor Effect */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  width: 200px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,53,.06) 0%, transparent 70%);
  filter: blur(40px);
  animation: steamRise 6s ease-in-out infinite;
  pointer-events: none;
}

.hero::before {
  left: 30%;
  animation-delay: 0s;
}

.hero::after {
  right: 25%;
  animation-delay: 3s;
  width: 150px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(251,191,36,.05) 0%, transparent 70%);
}

.steam-particle {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  filter: blur(1px);
  animation: steamParticle var(--dur) ease-out infinite;
  animation-delay: var(--delay);
  left: var(--x);
}

@keyframes steamRise {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: .3;
  }
  50% {
    transform: translateY(-80px) scale(1.3);
    opacity: .6;
  }
}

@keyframes steamParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: .6;
  }
  100% {
    transform: translateY(-400px) translateX(var(--drift)) scale(0);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-label {
  font-family: var(--font-en);
  font-size: .72rem;
  color: #FF6B35;
  letter-spacing: 6px;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  opacity: .8;
}

/* Neon Flicker Title */
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B35, #FBBF24, #FF6B35);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 8px;
  animation: neonFlicker 4s ease-in-out infinite, gradientShift 6s ease infinite;
  text-shadow: none;
  position: relative;
}

.hero h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: .5;
  animation: neonFlicker 4s ease-in-out infinite;
  animation-delay: .1s;
  pointer-events: none;
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  4% { opacity: .85; }
  6% { opacity: 1; }
  8% { opacity: .9; }
  9% { opacity: 1; }
  50% { opacity: 1; }
  52% { opacity: .88; }
  53% { opacity: 1; }
  78% { opacity: 1; }
  80% { opacity: .92; }
  82% { opacity: 1; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: 4px;
}

.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 999px;
  transition: all .3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-jp);
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  color: #0D0D0D;
  box-shadow: var(--glow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 30px rgba(255,107,53,.5), 0 0 80px rgba(255,107,53,.2);
}

.btn-outline {
  border: 1.5px solid rgba(255,107,53,.4);
  color: #FF6B35;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,107,53,.1);
  border-color: #FF6B35;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--surface);
  padding: 56px 0;
  border-top: 1px solid rgba(255,107,53,.1);
  border-bottom: 1px solid rgba(255,107,53,.1);
}

.stats-items {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: text-shadow .3s;
}

.stat-num.glow {
  filter: drop-shadow(0 0 12px rgba(255,107,53,.6));
}

.stat-unit {
  font-size: .85rem;
  -webkit-text-fill-color: #FBBF24;
}

.stat-label {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,107,53,.2);
  align-self: center;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--surface);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

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

.section-label {
  font-family: var(--font-en);
  font-size: .7rem;
  color: #FF6B35;
  letter-spacing: 5px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 2px;
}

.section-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35, #FBBF24);
  margin: 16px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255,107,53,.3);
}

.section-sub {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

/* ── Menu Grid (Gradient Border Pulse) ── */
.menu-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 0 40px;
}

.menu-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface2);
  transition: transform .4s;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, #FF6B35, #FBBF24, #FF6B35, #FBBF24);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderPulse 4s ease infinite;
  opacity: .6;
  transition: opacity .4s;
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card:hover {
  transform: translateY(-6px);
}

@keyframes borderPulse {
  0%, 100% { background-position: 0% 50%; opacity: .4; }
  50% { background-position: 100% 50%; opacity: .8; }
}

.menu-card-inner {
  padding: 32px;
  position: relative;
  z-index: 1;
}

.menu-tag {
  font-family: var(--font-en);
  font-size: .65rem;
  color: #FBBF24;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.menu-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.menu-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.menu-price {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-price small {
  font-size: .75rem;
  -webkit-text-fill-color: var(--muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── SNS / Reviews ── */
.review-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 40px;
}

.review-card {
  background: var(--surface2);
  border: 1px solid rgba(255,107,53,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
}

.review-card:hover {
  border-color: rgba(255,107,53,.3);
  box-shadow: 0 0 20px rgba(255,107,53,.1);
}

.review-stars {
  color: #FBBF24;
  font-size: .9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: .88rem;
  line-height: 2;
  margin-bottom: 16px;
  color: rgba(255,255,255,.8);
}

.review-author {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .75rem;
  color: #0D0D0D;
}

.review-author-info strong {
  display: block;
  font-size: .82rem;
}

.review-author-info span {
  font-size: .72rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── Chef / About ── */
.chef-block {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  padding: 0 40px;
}

.chef-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chef-visual-inner {
  text-align: center;
  padding: 40px;
}

.chef-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0);
}

.chef-visual-label {
  font-family: var(--font-en);
  font-size: .7rem;
  color: #FF6B35;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.chef-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .3;
}

.chef-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.chef-title {
  font-size: .8rem;
  color: #FF6B35;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.chef-text {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 2.2;
  margin-bottom: 24px;
}

.chef-career {
  list-style: none;
  padding: 0;
}

.chef-career li {
  font-size: .82rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chef-career li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .chef-block {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .chef-visual {
    height: 280px;
  }
}

/* ── Neon Break ── */
.neon-break {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background: var(--surface);
}

.neon-break::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 60%);
  pointer-events: none;
}

.neon-break-text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.neon-break-text span {
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-break-text small {
  display: block;
  font-size: .82rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 8px;
  -webkit-text-fill-color: var(--muted);
}

/* ── Info / Access ── */
.info-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 40px;
}

.info-table {
  list-style: none;
}

.info-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.info-label {
  min-width: 110px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.info-value {
  font-size: .85rem;
  color: var(--muted);
}

.info-map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 1px solid rgba(255,107,53,.15);
  padding: 40px;
  text-align: center;
}

.info-map-inner {
  color: var(--muted);
}

.info-map-inner .map-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.info-map-inner p {
  font-size: .85rem;
  line-height: 1.8;
}

.info-map-inner .map-link {
  display: inline-block;
  margin-top: 16px;
  font-size: .82rem;
  color: #FF6B35;
  border-bottom: 1px solid rgba(255,107,53,.3);
  padding-bottom: 2px;
  transition: border-color .3s;
}

.info-map-inner .map-link:hover {
  border-color: #FF6B35;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── Concept Section ── */
.concept-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 40px;
}

.concept-card {
  background: var(--surface2);
  border: 1px solid rgba(255,107,53,.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all .4s;
}

.concept-card:hover {
  border-color: rgba(255,107,53,.25);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255,107,53,.08);
}

.concept-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.concept-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.concept-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .concept-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── Footer ── */
.footer {
  background: #080808;
  color: #666;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,107,53,.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B35, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: .8rem;
  line-height: 1.8;
}

.footer h4 {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer li a {
  font-size: .82rem;
  transition: color .3s;
}

.footer li a:hover {
  color: #FF6B35;
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  font-size: .75rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-bottom {
    padding: 20px 20px 0;
  }
}

/* ── Slide-in Animations ── */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .7s ease, transform .7s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .7s ease, transform .7s ease;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.slide-left.visible,
.slide-right.visible,
.slide-up.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── Drink Section ── */
.drink-strip {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 40px;
}

.drink-strip-title {
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.drink-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.drink-item {
  background: var(--surface2);
  border: 1px solid rgba(255,107,53,.1);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  transition: all .3s;
}

.drink-item:hover {
  border-color: rgba(251,191,36,.3);
}

.drink-item h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.drink-item p {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.drink-item .menu-price {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .drink-strip {
    padding: 0 20px;
  }
}
