@charset "UTF-8";

/* Global Variables */
:root {
  --primary-color: #8b4d5a;
  --accent-mint: #add8e6;
  --text-color: #4a4a4a;
  --white: #ffffff;
  --bg-gradient: linear-gradient(135deg, #fff9fa 0%, #f8f3f1 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-btn: 0 4px 15px rgba(139, 77, 90, 0.2);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  color: var(--text-color);
  line-height: 1.8;
  background-color: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.section-padding {
  padding: 100px 0;
}

.wave-divider+.section-padding,
section:has(.wave-divider.bottom)+.section-padding {
  padding-top: 30px;
}

/* Header & Navigation */
header {
  height: 90px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-weight: 700;
  color: #4a4a4a;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

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

.mobile-only {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  /* Higher than nav-links */
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  /* Slightly thicker for visibility */
  background-color: var(--text-color);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url("../images/mainvisual.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-text-content {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  z-index: 20;
  width: 100%;
}

.hero-subtext {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: block;
}

.hero-maintext {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

/* Wave Divider */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.wave-divider .shape-fill {
  fill: #f8f3f1;
}

.wave-divider.top-wave {
  background-color: transparent;
  margin-top: -180px;
  /* Pull larger wave over the hero image */
  position: relative;
  z-index: 5;
}

.wave-divider.top-wave svg {
  height: 180px;
}

.features-section .wave-divider .shape-fill {
  fill: var(--white);
}

.wave-divider.top {
  transform: rotate(180deg);
}

/* Section Headers */
.section-header {
  margin-bottom: 80px;
}

.section-header.centered {
  text-align: center;
}

.section-title-en {
  font-family: "Comic Neue", cursive;
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 0;
  opacity: 0.8;
  line-height: 1;
}

.section-dot {
  width: 100px;
  height: 10px;
  background-image: radial-gradient(circle, var(--primary-color) 3px, transparent 3px);
  background-size: 20px 100%;
  margin: 10px auto;
}

.section-header:not(.centered) .section-dot {
  margin: 10px 0;
}

.section-subtitle-jp {
  font-size: 1.2rem;
  color: #8b4d5a;
  letter-spacing: 3px;
  font-weight: 700;
}

/* Greeting Section */
.greeting {
  background-color: #f8f3f1;
}

.greeting-container {
  display: flex;
  align-items: center;
  gap: 100px;
}

.greeting-image-box {
  flex: 0.8;
}

.greeting-img {
  width: 100%;
  max-width: 480px;
  border-radius: 40px;
  box-shadow: none;
}

.greeting-content {
  flex: 1.2;
}

.greeting-text p {
  margin-bottom: 25px;
  line-height: 2.2;
}

/* Menu Section */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.menu-card {
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 550px;
  box-shadow: var(--shadow);
  position: relative;
}

.menu-card.food,
.menu-card.topping,
.menu-card.drink {
  background-color: transparent;
}

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

.menu-card-img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.menu-card-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu-card-content {
  position: relative;
  z-index: 2;
  padding: 35px 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  margin: 20px;
  border-radius: 20px;
}

.menu-item-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 700;
}

.menu-item-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  margin-top: 30px;
  align-self: center;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
}

.btn:hover {
  transform: scale(1.05);
  background-color: #a05d6a;
}

.features-section {
  position: relative;
  background-color: #fff9fa;
  z-index: 1;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgb(255, 238, 238), rgba(255, 199, 199, 0.2)), url(../images/feature_bg.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.8;
  z-index: -1;
}

.features-list-container {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 60px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  max-width: 380px;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 10px solid white;
}

.feature-image::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: radial-gradient(circle, rgba(255, 192, 203, 0.3) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.feature-content-box {
  flex: 1;
}

.feature-point-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.check-icon {
  width: 32px;
  height: 32px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon::after {
  content: "";
  width: 14px;
  height: 7px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin-top: -3px;
}

.feature-point-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.feature-point-text {
  font-size: 1.1rem;
  line-height: 2;
  color: #666;
}

/* News Section */
.news-section {
  background-color: var(--white);
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-item {
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}

.news-item:first-child {
  border-top: 1px solid #f0f0f0;
}

.news-item a {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  gap: 40px;
}

.news-date {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 700;
  min-width: 120px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
  flex: 1;
}

.news-item:hover {
  background-color: #fff9fa;
  transform: translateX(10px);
}

.news-item:hover .news-title {
  color: var(--primary-color);
}

.view-more-container {
  text-align: center;
  margin-top: 60px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline {
  background-color: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Contact Section Updated */
.contact-section {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/contact_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -1;
}

.contact-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.shop-info-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.shop-info-card.suspended {
  opacity: 0.8;
}

.shop-name {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.shop-status {
  display: inline-block;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  align-self: flex-start;
}

.shop-status.open {
  background-color: #e6f4ea;
  color: #1e8e3e;
}

.shop-status.closed {
  background-color: #fce8e6;
  color: #d93025;
}

.shop-details {
  margin-bottom: 30px;
}

.shop-details p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px dotted rgba(139, 77, 90, 0.2);
  padding-bottom: 8px;
}

.shop-details strong {
  color: var(--primary-color);
  flex-shrink: 0;
  width: 90px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -2px;
}

.pay-icon {
  height: 24px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
}

.pay-icon.card-5brand {
  height: 26px;
  background: white;
  padding: 2px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 15px 30px rgba(139, 77, 90, 0.1);
  border: 6px solid white;
  margin-top: auto;
  transition: var(--transition);
  position: relative;
}

.map-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 14px;
  box-shadow: inset 0 0 20px rgba(139, 77, 90, 0.1);
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 77, 90, 0.2);
}

.map-container iframe {
  filter: sepia(10%) hue-rotate(340deg) saturate(90%);
  transition: var(--transition);
}

.map-container:hover iframe {
  filter: sepia(0%) hue-rotate(0deg) saturate(100%);
}

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

  .contact-box {
    padding: 60px 20px;
  }
}

/* Footer Inquiry */
.footer-inquiry {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(139, 77, 90, 0.1);
}

.footer-inquiry p {
  margin-bottom: 20px;
  color: #666;
  font-size: 1.05rem;
}

.btn-inquiry {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 15px 35px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(139, 77, 90, 0.1);
}

.btn-inquiry:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 77, 90, 0.2);
}

.store-info-btn {
  display: block;
  max-width: 420px;
  margin: 40px auto 0;
  transition: var(--transition);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.store-info-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.store-info-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .contact-email {
    font-size: 1.1rem;
  }

  .store-info-btn {
    max-width: 100%;
  }
}

/* Footer */
footer {
  padding: 80px 0 40px;
  background-color: #ffffff;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #555;
  font-weight: 700;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-social {
  margin-bottom: 25px;
}

.instagram-icon {
  color: var(--primary-color);
  transition: var(--transition);
}

.instagram-icon:hover {
  transform: scale(1.15);
  color: #E1306C;
}

.copyright {
  color: #888;
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .greeting-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .greeting-content {
    display: contents;
  }

  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .section-header {
    order: 1;
    margin-bottom: 30px;
  }

  .greeting-image-box {
    order: 2;
    margin-bottom: 10px;
  }

  .greeting-text {
    order: 3;
  }

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

  .feature-point-header {
    justify-content: center;
  }

  .hero-maintext {
    font-size: 3.2rem;
  }

  .hero {
    align-items: center;
    padding-bottom: 0;
    text-align: center;
  }

  .hero-text-content {
    padding-left: 0;
  }

  .section-header .section-dot {
    margin: 10px auto;
  }

  .mobile-menu-btn {
    display: flex;
    position: fixed;
    top: calc(25px + env(safe-area-inset-top, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: linear-gradient(135deg, rgba(255, 249, 250, 0.95) 0%, rgba(248, 243, 241, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: calc(80px + env(safe-area-inset-top, 0px)) 20px calc(40px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1050;
  }

  .nav-links.active {
    display: flex;
    animation: fadeInMenu 0.4s ease forwards;
  }

  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
  }

  .nav-links.active li {
    animation: slideUpLink 0.5s ease forwards;
  }

  .nav-links li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links li:nth-child(2) {
    animation-delay: 0.15s;
  }

  .nav-links li:nth-child(3) {
    animation-delay: 0.2s;
  }

  .nav-links li:nth-child(4) {
    animation-delay: 0.25s;
  }

  .nav-links li:nth-child(5) {
    animation-delay: 0.3s;
  }

  .nav-links li:nth-child(6) {
    animation-delay: 0.35s;
  }

  .nav-links li:nth-child(7) {
    animation-delay: 0.4s;
  }

  @keyframes slideUpLink {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-only {
    display: block;
  }

  .mobile-logo img {
    height: 50px;
    margin-bottom: 10px;
  }

  .mobile-extra {
    margin-top: 20px;
    border-top: 1px dashed rgba(139, 77, 90, 0.3);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .mobile-shop-info {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }

  .mobile-shop-info strong {
    color: var(--primary-color);
    margin-right: 5px;
  }

  .mobile-contact-btn {
    font-size: 1rem !important;
    padding: 12px 30px !important;
    border-width: 1px !important;
    background: #fff;
  }

  .mobile-contact-btn::after {
    display: none;
  }

  .nav-links a:not(.mobile-contact-btn) {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
  }

  .nav-links a:not(.mobile-contact-btn)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #D0A793;
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  .nav-links a:not(.mobile-contact-btn):hover::after {
    width: 40px;
  }
}

/* SP Mode (Standard Mobile/Tablet) */
@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero {
    height: 80vh;
    /* 이미지 시인성 확보를 위해 높이 조정 */
    background-position: center center;
  }

  .hero-maintext {
    font-size: 2.8rem;
  }

  .section-title-en {
    font-size: 3rem;
  }

  .feature-point-title {
    font-size: 1.5rem;
  }

  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }

  .news-date {
    min-width: auto;
  }
}

/* Small SP Mode */
@media (max-width: 480px) {
  .hero {
    height: 75vh;
  }

  .hero-maintext {
    font-size: 2.2rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }

  .container {
    padding: 0 25px;
  }
}

/* ==================================================
   MENU PAGE STYLES
   ================================================== */
.page-menu {
  background-color: #fcfcfc;
}

.page-header {
  height: 30vh;
  min-height: 150px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  margin-top: 80px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* News Header Override */
.news-page-header {
  background-image: url("../images/news_bg.png");
}

.news-page-header::before {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: var(--font-en);
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-title-jp {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: right;
  width: 100%;
}

.page-title-jp span.highlight-bg {
  background-color: #ffffff;
  color: #4A192C;
  padding: 5px 15px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 6px;
  /* Animation */
  opacity: 0;
  transform: translateX(30px);
  animation: fadeSlideInRight 0.8s ease-out forwards;
}

.page-title-jp span.highlight-bg:nth-of-type(2) {
  animation-delay: 0.2s;
}

@keyframes fadeSlideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.intro-overlap-layout {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding-top: 50px;
}

.intro-overlap-image {
  width: 60%;
  height: 500px;
}

.intro-overlap-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.intro-overlap-text {
  background: #ffffff;
  padding: 80px 60px;
  width: 48%;
  position: absolute;
  left: 0;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.menu-intro p {
  font-size: 1.05rem;
  line-height: 2;
  color: #555;
}

.menu-section-title-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.menu-category {
  padding: 30px 0;
}

.bg-light {
  background-color: #fdfaf6;
}

.category-title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.category-desc {
  font-size: 1.05rem;
  color: #666;
}

.menu-subtitle-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}

.menu-subtitle-en {
  font-family: var(--font-en);
  font-size: 2.5rem;
  color: #555;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.menu-subtitle-jp {
  font-size: 1.05rem;
  font-weight: 700;
  color: #8B4D5A;
  opacity: 0.8;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.menu-container {
  max-width: 1050px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.menu-card {
  background: #ffffff;
  border: 1.5px solid #8B4D5A;
  border-radius: 4px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 77, 90, 0.15);
}

.menu-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.menu-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-wrap img {
  transform: scale(1.03);
}

.menu-info {
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-title-wrap {
  text-align: center;
  margin-bottom: 15px;
}

.item-name-en {
  font-family: var(--font-en);
  font-size: 1.8rem;
  color: #3E4A61;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.item-name-jp {
  font-size: 0.95rem;
  font-weight: 700;
  color: #8B4D5A;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.item-topping {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.topping-label {
  font-weight: 700;
  color: #3E4A61;
}

.item-price-wrap {
  border-top: 1px solid #8B4D5A;
  padding-top: 15px;
  margin-top: auto;
}

.item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3E4A61;
  text-align: center;
  letter-spacing: 0.05em;
}

.item-price span {
  font-size: 1rem;
  font-weight: 700;
}

/* Topping Redesign */
.topping-header-layout {
  display: flex;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 40px;
}

.topping-title-col {
  position: relative;
  padding-bottom: 15px;
  min-width: 250px;
}

.topping-main-title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  color: #A6867B;
  font-weight: 700;
  line-height: 1;
}

.topping-dot-line {
  border-bottom: 4px dotted #D0A793;
  width: 100%;
  margin: 5px 0;
}

.topping-sub-title {
  font-size: 1rem;
  color: #8B4D5A;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.topping-desc-col p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

.topping-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.topping-image-grid.centered-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 70px;
}

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

.topping-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.topping-image-grid.centered-row .topping-item {
  width: calc(25% - 22.5px);
  /* Matches 4-column grid width precisely */
}

.topping-item p {
  font-size: 0.95rem;
  color: #8B4D5A;
  font-weight: 700;
}

.topping-price-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  align-items: center;
}

.price-name {
  font-size: 1.1rem;
  color: #8B4D5A;
  font-weight: 700;
  white-space: nowrap;
}

.price-dots {
  flex-grow: 1;
  border-bottom: 2px dotted #C2A8A0;
  margin: 0 15px;
  position: relative;
  top: -5px;
}

.price-value {
  font-size: 1.15rem;
  color: #8B4D5A;
  font-weight: 700;
  white-space: nowrap;
}

/* New Drink Design */
.drink-category-block {
  margin-bottom: 60px;
}

.smoothie-block {
  display: flex;
  gap: 60px;
  align-items: center;
}

.smoothie-left {
  flex: 0 0 30%;
  max-width: 30%;
}

.smoothie-left .drink-cat-title {
  margin-bottom: 15px;
  font-size: 2.5rem;
  color: #8B4D5A;
}

.drink-image-new img {
  width: 100%;
  display: block;
}

.smoothie-right {
  flex: 1;
}

.drink-price-list .price-row {
  margin-bottom: 25px;
}

.drink-price-list .price-row:last-child {
  margin-bottom: 0;
}

.coffee-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 20px;
}

.coffee-header .drink-cat-title {
  font-size: 2.5rem;
  color: #8B4D5A;
  margin-bottom: 0;
}

.drink-note {
  font-size: 0.95rem;
  color: #555;
  font-weight: 700;
}

.coffee-price-box {
  background-color: #EFE8DF;
  padding: 50px 80px;
}

.coffee-price-box .drink-price-list {
  max-width: 800px;
  margin: 0 auto;
}

/* Utilities used in menu */
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.pt-0 {
  padding-top: 0;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 3rem;
  }

  .page-title-jp {
    font-size: 1.3rem;
    text-align: center;
  }

  .intro-overlap-layout {
    flex-direction: column;
    padding-top: 20px;
    align-items: stretch;
  }

  .intro-overlap-image {
    width: 100%;
    height: 350px;
    order: 1;
  }

  .intro-overlap-text {
    position: relative;
    width: 90%;
    margin: -40px auto 0;
    order: 2;
    padding: 40px 30px;
  }

  .menu-subtitle-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .menu-subtitle-jp {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .drink-flex {
    flex-direction: column;
  }

  .drink-section-wrapper {
    padding: 0 10px;
  }

  .smoothie-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .smoothie-left {
    width: 100%;
    max-width: 100%;
  }

  .smoothie-left .drink-cat-title {
    font-size: 2rem;
  }

  .smoothie-right {
    width: 100%;
  }

  .coffee-header {
    flex-direction: column;
    gap: 10px;
  }

  .coffee-header .drink-cat-title {
    font-size: 2rem;
  }

  .coffee-price-box {
    padding: 30px 20px;
  }

  .drink-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .drink-list li {
    font-size: 1rem;
  }

  .topping-header-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .topping-title-col::after {
    display: none;
  }

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

  .topping-image-grid.centered-row {
    flex-wrap: wrap;
  }

  .topping-image-grid.centered-row .topping-item {
    width: calc(50% - 15px);
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 20px;
  }

  .drink-price-list .price-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
  }

  .price-name {
    white-space: normal;
    line-height: 1.5;
  }

  .price-dots {
    display: none;
  }

  .price-value {
    align-self: flex-end;
  }

  .drink-price-list .price-value {
    align-self: auto;
    white-space: nowrap;
  }
}

/* Google Maps Scroll Optimization */
.map-container {
  position: relative;
  cursor: pointer;
}

.map-container iframe {
  pointer-events: none;
}

.map-container.active iframe {
  pointer-events: auto;
}

/* Contact Section Optimization (Remove backdrop-filter for smooth scroll) */
.contact-section::before {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.contact-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/*# sourceMappingURL=index.css.map */