@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&family=Poppins:wght@400;600&family=Sora:wght@600&display=swap');
/* ===== Design Tokens ===== */
:root {
  --color-bg-primary: #0b0e14;
  --color-bg-card: #11131a;
  --color-bg-overlay: rgba(17, 19, 26, 0.6);
  --color-bg-header: rgba(11, 14, 20, 0.6);
  --color-accent-pink: #e83d8c;
  --color-accent-blue: #128dff;
  --color-text-primary: #fff;
  --color-text-secondary: #b8bcc6;
  --color-text-pink: #ffd7e9;
  --color-border: rgba(255, 255, 255, 0.2);
  --color-btn-primary: rgba(232, 61, 140, 0.7);
  --color-btn-secondary: rgba(232, 61, 140, 0.2);
  --color-btn-ghost: rgba(232, 61, 140, 0.1);

  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --font-accent: 'Nunito', sans-serif;

  --radius-sm: 12px;
  --radius-lg: 40px;
  --shadow-pink: 0 2px 0 0 var(--color-accent-pink);
  --max-width: 1280px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.5;
  min-height: 100dvh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.loading {
  cursor: progress;
}

body.loading main {
  pointer-events: none;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== Layout ===== */
main {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

body.page-home main {
  padding-top: 0;
}

.page-hero-bg {
  background-image: url('../images/photos/bg-main.png');
  background-size: contain !important;
  background-repeat: repeat-x;
  background-position: center top;
  top: 0;
  bottom: auto;
  height: 980px;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .page-hero-bg {
    background-image: url('../images/photos/bg-tablet.png');
    background-size: cover !important;
    background-repeat: repeat-x;
  }

  body.page-menu .page-hero-bg {
    background-size: cover !important;
    background-repeat: no-repeat;
  }
}

@media (max-width: 767px) {
  .page-hero-bg {
    background-image: url('../images/photos/bg-phone.png');
    background-repeat: no-repeat;
  }

  body.page-menu .page-hero-bg {
    background-repeat: no-repeat;
  }
}

@media (max-width: 1023px) {
  .hero-bg {
    background-size: contain !important;
  }
}

@media (min-width: 1600px) {
  .page-hero-bg {
    background-size: contain !important;
    background-position: center top;
  }
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.50);
}

.hero-featured {
  .container {
    padding: 0;
  }
}

/* Menu pages: keep background consistent across filters and add soft dim/blur */
body.page-menu .page-hero-bg {
  background-size: cover !important;
  background-repeat: repeat-x;
  background-position: center top;
}

body.page-menu .page-hero-bg::after {
  background: rgba(11, 14, 20, 0.50);
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to bottom, transparent 0%, var(--color-bg-primary) 60%);
  z-index: 1;
}

/* Home: single background layer to avoid seams on wide screens */
body.page-home .page-hero-bg {
  display: none;
}

body.page-home .hero > .hero-bg {
  background-image: url('../images/photos/hero-bg.jpg');
  background-size: contain;
  background-position: center top;
}

@media (max-width: 1023px) {
  body.page-home .hero > .hero-bg {
    background-image: url('../images/photos/bg-tablet.png');
  }
}

@media (max-width: 767px) {
  body.page-home .hero > .hero-bg {
    background-image: url('../images/photos/bg-phone.png');
  }
}

body.page-home .hero-bg::after {
  background: rgba(11, 14, 20, 0.50);
}

body.page-home .hero--extended .hero-bg::before {
  display: block;
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 80px;
    max-width: 1440px;
  }
}

/* ===== Header ===== */
.site-header {
  background: var(--color-bg-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

@media (min-width: 1024px) {
  .header-top {
    padding: 15px 80px;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-pink);
  font-size: 18px;
}

.header-phone svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-pink);
  background: var(--color-btn-ghost);
  border: 1px solid var(--color-accent-pink);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-link img,
.logo-link svg {
  height: 40px;
  width: auto;
}

/* Hamburger */
.hamburger {
  width: 30px;
  height: 30px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text-primary);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Hamburger visible on all screen sizes (matches Figma) */

/* Main Nav — desktop: horizontal tab bar */
.main-nav {
  display: none;
  border-bottom: 1px solid var(--color-border);
  padding: 0 80px;
  gap: var(--gutter);
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  body.page-home .about-grid {
    transform: translateX(-10%);
  }
}

@media (max-width: 1023px) {
  .main-nav {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding-bottom: 0px !important;
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav::-webkit-scrollbar {
    display: none;
  }
}

.about-events-buttons {
  display: flex; 
  gap: 16px; 
  flex-direction: row; 
  align-items: center; 
  max-width: 400px;

  @media (max-width: 768px) {
    margin: 0 auto;
  }
}

.about-events-btn {
  flex: 1;
  width: auto;
  justify-content: center;
  text-align: center;
  padding: 14px 20px;
  line-height: 1.3;
  white-space: normal;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text-secondary);
  white-space: nowrap;
  border-bottom: none;
  transition: color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.nav-item.active {
  color: var(--color-text-primary);
  box-shadow: inset 0 -2px 0 var(--color-accent-pink);
}

.nav-item svg,
.nav-item .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.nav-item .icon-svg,
.pill .icon-svg,
.mobile-menu-link .icon-svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
}

.nav-item .icon-svg.icon-fish,
.pill .icon-svg.icon-fish,
.mobile-menu-link .icon-svg.icon-fish {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transform: scale(1.08);
  transform-origin: center;
}

.nav-item .icon-svg.icon-fish path,
.pill .icon-svg.icon-fish path,
.mobile-menu-link .icon-svg.icon-fish path {
  fill: currentColor !important;
}

.home-explore-section .pill .icon-svg.icon-fish {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  transform: scale(0.96);
}

.mobile-menu-link .icon-svg.icon-fish {
  transform: scale(1.2);
}

.nav-item .icon-svg.icon-snacks,
.pill .icon-svg.icon-snacks,
.mobile-menu-link .icon-svg.icon-snacks {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transform: scale(1.06);
  transform-origin: center;
}

.nav-item .icon-svg.icon-snacks path,
.pill .icon-svg.icon-snacks path,
.mobile-menu-link .icon-svg.icon-snacks path {
  fill: currentColor !important;
}

.nav-item .icon-svg *[stroke]:not([stroke="none"]),
.pill .icon-svg *[stroke]:not([stroke="none"]),
.mobile-menu-link .icon-svg *[stroke]:not([stroke="none"]) {
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 19, 26, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 15px clamp(20px, 6vw, 80px);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-overlay.open .mobile-menu-header {
  border-bottom: 0;
}

.mobile-menu-close {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
}

.mobile-menu-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 clamp(20px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-section-title {
  display: none;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 15px 0;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--color-text-secondary);
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
}

.mobile-menu-link.active {
  color: var(--color-text-pink);
  background: transparent;
}

.mobile-menu-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 1;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--color-border);
  width: 100%;
  flex-shrink: 0;
}

.mobile-menu-footer {
  padding: 10px clamp(20px, 6vw, 80px) 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-pink);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.mobile-menu-phone svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Mobile menu overlay available on all screen sizes */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 40px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 20px;
  border: 2px solid var(--color-accent-pink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-pink);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  color: var(--color-text-pink);
  text-decoration: none;
  line-height: 30px;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-btn-primary);
}

.btn-primary.hero-left {
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-sm) var(--radius-sm);
}

.btn-secondary {
  background: var(--color-btn-secondary);
}

.btn-secondary.hero-right {
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-sm);
}

.btn-ghost {
  background: var(--color-btn-ghost);
  border-width: 1px;
}

.btn svg,
.btn .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-svg {
  color: currentColor;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.hero--extended {
  padding-bottom: 0;
  justify-content: flex-start;
  padding-top: 100px;
  overflow: visible;
}

body.page-home .home-main-block {
  padding-top: 125px;
  padding-bottom: 125px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-size: cover; */
  background-position: center top;
  z-index: 0;
  overflow: hidden;
}

.hero--extended .hero-bg {
  bottom: -400px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.3);
}

.hero--extended .hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to bottom, transparent 0%, var(--color-bg-primary) 60%);
  z-index: 1;
}

.hero-featured {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 120px;
  margin-bottom: -200px;
  padding-bottom: 48px;
}

@media (max-width: 767px) {
  .hero--extended {
    padding-top: 60px;
  }
  .hero-featured {
    margin-top: 32px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
        margin-block: 190px;
}

@media (min-width: 1600px){
  .hero-content {
        margin-block: 190px;
  }
}

@media (max-width: 1023px) {
  body.page-home .home-main-block  {
    min-height: 100dvh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-content {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: unset !important;
    margin-bottom: 120px;
  }
}

.hero-logo {
  max-width: 400px;
  width: 80%;
  display: block;
}

body.page-home .hero-logo {
  width: 500px;
  height: 400px;
  max-width: none;
  object-fit: contain;
}

@media (max-width: 767px) {
  body.page-home .hero-logo {
    width: min(400px, 80vw);
    height: auto;
    max-width: 100%;
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 480px) {
  .hero-buttons {
    width: 100%;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 16px;
    width: 100%;
    max-width: 233px;
  }
  .hero-buttons .btn.hero-left {
    border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) var(--radius-sm);
  }
  .hero-buttons .btn.hero-right {
    border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) var(--radius-sm);
  }
}



/* ===== Section Headings ===== */
.section {
  padding: 40px 0;
}

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

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.section-heading .jp-text {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--color-accent-blue);
  line-height: 28px;
  text-shadow: 0 0 10px rgba(18, 141, 255, 1);

  @media (max-width: 640px) {
    text-align: center;
  }
}

@media (max-width: 1023px) {
  .section-heading .jp-text {
    font-size: 18px;
    line-height: 25.2px;
  }
}

@media (max-width: 767px) {
  .section-heading .jp-text {
    font-size: 16px;
    line-height: 22.4px;
  }
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);

    @media (max-width: 640px) {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .section-heading h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (min-width: 1024px) {
  .section-heading h2 {
    font-size: 48px;
    line-height: 57.6px;
  }
}

@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 28px;
    line-height: 33.6px;
  }
}

.section-text {
  font-size: 18px;
  line-height: 27px;
  color: var(--color-text-secondary);
  max-width: 628px;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 767px) {
  .section-text {
    margin-left: auto;
    margin-right: auto;
  }
}

main p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* ===== Category Pills ===== */
.category-pills {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  /* margin-top: 20px; */
  justify-content: center;
  margin-bottom: 40px;
}


.pill-scroller {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .pill-scroller {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 6px;
    margin: 0;
  }

  .pill-scroller::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 1023px) {
  .pill {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .category-pills::-webkit-scrollbar {
    display: none;
  }
  .pill {
    padding: 10px 32px;
  }

  .home-explore-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* #home-category-pills { */
    /* margin-top: 20px; */
  /* } */

  #home-category-pills .pill {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 32px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-accent-pink);
  box-shadow: var(--shadow-pink);
  color: var(--color-text-pink);
  background: var(--color-btn-ghost);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}

.pill .icon {
  width: 20px;
  height: 20px;
}

.pill.active {
  background: var(--color-btn-primary);
  color: var(--color-text-primary);
}

/* ===== Filter Pills ===== */
.filter-bar {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 70;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 8px;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar {
    display: none;
  }
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px !important;
  padding: 8px 24px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-accent-pink);
  box-shadow: var(--shadow-pink);
  color: var(--color-text-pink);
  background: var(--color-btn-ghost);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}

.filter-pill.active {
  background: rgba(232, 61, 140, 0.24);
  color: var(--color-text-primary);
}

.filter-pill svg,
.filter-pill .icon {
  width: 20px;
  height: 20px;
}


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

.menu-filter-bar .filter-pill,
.menu-filter-bar .filter-sort__trigger {
  min-height: 42px;
}

.filter-sort {
  display: inline-block;
  position: relative;
  border-radius: 12px;
  z-index: 120;
}

@media (max-width: 767px) {
  .menu-filter-bar .filter-sort__trigger {
    justify-content: space-between;
  }
}

.filter-sort__trigger {
  justify-content: space-between;
  touch-action: manipulation;
}

.filter-sort__trigger--category {
  justify-content: space-between;
  min-width: 150px;
}

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

.filter-sort__trigger span {
  line-height: 24px;
}

.filter-sort__chevron {
  transition: transform 0.2s ease;
}

.filter-sort.open {
  z-index: 950;
}

.filter-sort.open .filter-sort__trigger {
  background: rgba(232, 61, 140, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.filter-sort.open .filter-sort__chevron {
  transform: rotate(180deg);
}

.filter-sort__menu {
  width: max-content;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 960;
  background: rgba(17, 19, 26, 0.52);
  box-shadow: 0 2px 0 #e83d8c;
  border-radius: 0 0 12px 12px;
  outline: 1px solid #e83d8c;
  outline-offset: -1px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: top;
  transform: scaleY(0.88) translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0s linear 0.2s;
}

.filter-sort.open .filter-sort__menu,
.filter-sort__menu.is-open {
  transform: scaleY(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
  will-change: opacity, transform;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.filter-sort__option {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: transparent;
  color: var(--color-text-pink);
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  touch-action: manipulation;
}

.filter-sort__option + .filter-sort__option {
  border-top: 1px solid var(--color-border);
}

.filter-sort__option svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.filter-sort__option.active {
  background: rgba(232, 61, 140, 0.32);
  color: var(--color-text-primary);
}

.menu-empty-state {
  width: 100%;
  padding: 36px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(17, 19, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-empty-state__title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-text-pink);
}

.mobile-fb {
  display: none;
}

.mobile-fb-container {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-fb-container {
    display: block;
    position: relative;
    z-index: 1200;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mobile-fb {
    display: flex;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-page-section .filter-bar.menu-filter-bar:not(.mobile-fb) {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .mobile-fb,
  .mobile-fb-container {
    display: none !important;
  }
}

@media (max-width: 767px) {


  .filter-sort__menu {
    transition: opacity 0.14s ease, visibility 0s linear 0.14s;
    transform: none;
  }

  .filter-sort.open .filter-sort__menu,
  .filter-sort__menu.is-open {
    transition: opacity 0.14s ease;
  }
}

/* iOS-specific fixes for dropdown on mobile */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 767px) {
    .filter-sort__menu {
      /* Force overflow-y to auto for scroll to work on iOS */
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
      /* Ensure height is constrained for scroll to work */
      max-height: min(60vh, 360px) !important;
    }
  }
}

@media (max-width: 1023px) {
  .menu-filter-bar {
    position: relative;
    z-index: 980;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0;
    padding-inline: 1.2rem !important;
    min-height: 42px;
  }

  .menu-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .menu-filter-bar .filter-pill,
  .menu-filter-bar .filter-sort__trigger {
    padding: 8px 14px;
    font-size: 16px;
    line-height: 22px;
    /* Prevent flex items from shrinking too much */
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .menu-filter-bar .filter-pill,
  .menu-filter-bar .filter-sort__trigger {
    min-width: max-content;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 20px;
    gap: 8px;
  }

  .menu-filter-bar .filter-sort__trigger span,
  .menu-filter-bar .filter-pill span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-filter-bar .filter-sort__menu {
    max-height: min(60vh, 360px);
    overflow-y: auto;
  }
}

@media (min-width: 1600px) {
  .menu-page-section .container {
    max-width: 1680px;
    padding-left: 96px;
    padding-right: 96px;
  }

  .menu-page-section .menu-filter-bar {
    gap: 24px;
    margin-bottom: 32px;
  }

  .menu-page-section .menu-filter-bar .filter-pill,
  .menu-page-section .menu-filter-bar .filter-sort__trigger {
    min-height: 52px;
    padding: 10px 30px;
    font-size: 20px;
    line-height: 28px;
    gap: 12px;
  }

  .menu-page-section .menu-filter-bar .filter-pill .icon,
  .menu-page-section .menu-filter-bar .filter-sort__trigger .icon,
  .menu-page-section .menu-filter-bar .filter-pill svg,
  .menu-page-section .menu-filter-bar .filter-sort__trigger svg {
    width: 24px;
    height: 24px;
  }

  .menu-page-section .menu-filter-bar .filter-sort__option {
    padding: 10px 30px;
    font-size: 18px;
    line-height: 26px;
  }

  .menu-page-section .product-card__name {
    font-size: 24px;
    line-height: 32px;
  }

  .menu-page-section .product-card__desc {
    font-size: 15px;
    line-height: 23px;
  }

  .menu-page-section .current-price {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1760px;
    padding-left: 110px;
    padding-right: 110px;
  }

  .header-top {
    padding-left: 110px;
    padding-right: 110px;
  }

  .main-nav {
    padding-left: 110px;
    padding-right: 110px;
  }

  .header-phone {
    font-size: 20px;
  }

  .nav-item {
    font-size: 22px;
    padding: 10px 34px;
  }

  .btn,
  .pill,
  .filter-pill {
    font-size: 21px;
    line-height: 31px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading h2 {
    font-size: 58px;
    line-height: 1.1;
  }

  .section-heading .jp-text {
    font-size: 24px;
    line-height: 32px;
  }

  .section-text {
    font-size: 20px;
    line-height: 31px;
  }

  .product-card__name {
    font-size: 25px;
    line-height: 33px;
  }

  .product-card__desc {
    font-size: 15px;
    line-height: 23px;
  }

  .product-card__price .current-price {
    font-size: 24px;
  }
}

/* ===== Product Cards ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-grid.featured {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-grid.featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid.featured {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Featured Slider ===== */
.featured-slider {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  overflow-x: auto;
overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0 16px;
  margin: -10px 0 -16px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.featured-slider:active {
  cursor: grabbing;
}

.featured-slider.is-centered {
  justify-content: flex-start;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.featured-slider::-webkit-scrollbar {
  display: none;
}

.featured-slider__slide {
  flex: 0 0 370px;
  min-width: 370px;
  scroll-snap-align: start;
  display: flex;
}

.featured-slider__slide .product-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  background: #11131a;
  border-radius: 12px;
  outline: 1px solid rgba(255, 255, 255, 0.2);
  outline-offset: -1px;
}

.featured-slider__slide .product-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 216px;
}

.featured-slider__slide .product-card__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(17, 19, 26, 0) 0%, #11131a 100%);
  pointer-events: none;
}

.featured-slider__slide .product-card__image {
  width: 100%;
  height: 216px;
  object-fit: cover;
  border-bottom: 0;
}

.featured-slider__slide .product-card__image-placeholder {
  width: 100%;
  height: 216px;
  border-bottom: 0;
}

.featured-slider__slide .product-card__body {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 6px;
}

.featured-slider__slide .product-card__name {
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.featured-slider__slide .product-card__desc,
.featured-slider__slide .product-card__allergens {
  display: none;
}

.featured-slider__slide .product-card__price .current-price {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 25.2px;
}

.featured-slider__slide .product-card__price .old-price {
  font-size: 14px;
  line-height: 21px;
  color: #b8bcc6;
  text-decoration: none;
}

.featured-slider__slide .product-card__badges {
  top: 20px;
  left: 20px;
  gap: 8px;
}

.featured-slider__slide .badge {
  min-width: 69px;
  padding: 4px 20px;
  border-radius: 12px;
  font-size: 18px;
  line-height: 27px;
}

/* Tablet: 1.5 cards visible */
@media (max-width: 1023px) {
  .featured-slider__slide {
    flex: 0 0 min(370px, calc(66.666% - 12px));
    min-width: min(370px, calc(66.666% - 12px));
  }
}

/* Mobile: 1.2 cards visible */
@media (max-width: 767px) {
  .featured-slider__slide {
    flex: 0 0 calc(83.333% - 12px);
    min-width: calc(83.333% - 12px);
  }
  .featured-slider__slide .product-card__name {
    font-size: 18px;
  }
  .featured-slider__slide .product-card__price .current-price {
    font-size: 16px;
  }
}

.product-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  cursor: pointer;
}

.product-card__image-wrapper {
  position: relative;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 302/219;
  object-fit: cover;
  /* border-bottom: 1px solid var(--color-border); */
}

.product-card__image-placeholder {
  width: 100%;
  aspect-ratio: 302/219;
  background: linear-gradient(135deg, #1a1d26, #11131a);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 48px;
}

.product-card__body {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__name {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.product-card__desc {
  font-size: 14px;
  line-height: 21px;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__allergens {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
  flex-wrap: wrap;
  position: relative;
  z-index: 50;
}

.product-card__allergens-label {
  color: currentColor;
}

.product-card__allergens .allergen-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  flex-shrink: 0;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card__price .current-price {
  font-size: 18px;
  color: var(--color-text-pink);
}

.product-card__price .old-price {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

.product-card__badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.badge {
  --badge-color: #128dff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  border-radius: 12px;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: color-mix(in srgb, var(--badge-color) 60%, #fff);
  background: color-mix(in srgb, var(--badge-color) 70%, transparent);
  border: 2px solid var(--badge-color);
  box-shadow: 0px 2px 0px var(--badge-color), 0px 0px 20px color-mix(in srgb, var(--badge-color) 80%, transparent);
  overflow: hidden;
}

.badge.badge-color-blue { --badge-color: #128dff; }
.badge.badge-color-pink { --badge-color: #e83d8c; }
.badge.badge-color-green { --badge-color: #2ecc71; }
.badge.badge-color-orange { --badge-color: #ff8a00; }
.badge.badge-color-yellow { --badge-color: #f1c40f; }
.badge.badge-color-purple { --badge-color: #9b59b6; }
.badge.badge-color-red { --badge-color: #e74c3c; }
.badge.badge-color-teal { --badge-color: #1abc9c; }

/* ===== Explore Menu (Home page) ===== */
#home-menu-grid .product-card {
  padding-bottom: 20px;
}

#home-menu-grid.menu-grid-animated {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#home-menu-grid.is-loading {
  opacity: 0;
  transform: translateY(12px);
}

#home-menu-grid .product-card__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(17, 19, 26, 0) 0%, #11131a 100%);
  pointer-events: none;
}

#home-menu-grid .product-card__image {
  border-bottom: none;
}

#home-menu-grid .product-card__body {
  padding: 0 20px;
  /* gap: 20px; */
}

#home-menu-grid .product-card__name {
  font-size: 22px;
  font-weight: 600;
  text-align: left;
}

#home-menu-grid .product-card__desc,
#home-menu-grid .product-card__allergens {
  display: none;
}

#home-menu-grid .product-card__price .current-price {
  font-size: 18px;
}

#home-menu-grid .product-card__price .old-price {
  font-size: 14px;
}

/* Tablet: 2 cols */
@media (max-width: 1023px) {
  #home-menu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile: horizontal slider, 1 card visible */
@media (max-width: 767px) {
  #home-menu-grid {
    display: flex !important;
    overflow-x: auto;
overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-block: 8px;
  }
  #home-menu-grid::-webkit-scrollbar {
    display: none;
  }
  #home-menu-grid::after {
    content: '';
    flex: 0 0 1px;
  }
  #home-menu-grid .product-card {
    flex: 0 0 302px;
    scroll-snap-align: center;
    padding-bottom: 15px;
  }
  #home-menu-grid .product-card:last-child {
    margin-right: calc((100dvw - 302px) / 2);
  }
  #home-menu-grid .product-card:first-child {
    margin-left: calc((100dvw - 302px) / 2 - 20px);
  }
  #home-menu-grid .product-card__body {
    padding: 0 15px;
  }
  #home-menu-grid .product-card__name {
    font-size: 18px;
  }
  #home-menu-grid .product-card__price .current-price {
    font-size: 16px;
  }
}

/* Slider dots (mobile only) */
.slider-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .slider-dots {
    display: flex;
  }
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #b8bcc6;
  transition: width 0.3s, background 0.3s;
}

.slider-dot.active {
  width: 29px;
  background: #128dff;
}

.btn-glow {
  box-shadow: 0px 2px 0px #e83d8c, 0px 0px 20px rgba(232, 61, 140, 0.8);
  border: 2px solid #e83d8c;
}

/* ===== Info Card (Opening Times, Contact) ===== */
.info-card {
  background: var(--color-bg-overlay);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 40px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 480px) {
  .info-card {
    padding: 24px 20px;
  }
}

.info-card h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.info-card .divider {
  height: 1px;
  background: var(--color-border);
}

.flex-row {
  flex-direction: row !important;
}

.text-to-left {
  width: fit-content;

  @media (max-width: 768px){
    gap: 20px;
    
    p, span, h2 {
      text-align: justify !important;
      margin-left: 0 !important;
    }

    .section-heading {
      p, span, h2 {
        align-self: start;
      }
    }

  }
}

.text-to-center {
  justify-self: flex-start;
  @media (max-width: 1023px){
    
    p, span, h2 {
      text-align: justify !important;
    }

    .section-heading {
      p, span, h2 {
        align-self: center;
      }
    }

  }
}

.mobile-sort-start {
    @media (max-width: 1024px){
      justify-items: start !important;
    }
}

.mobile-sort-center {
    @media (max-width: 1024px){
      justify-items: center !important;
      
      .about-events-buttons {
        margin: 0 auto;
      }
    }
}

.info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
}

@media (max-width: 480px) {
  .info-row {
    font-size: 16px;
  }
}

.info-row svg,
.info-row .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.section--no-bottom .info-card .info-row svg,
.section--no-bottom .info-card .info-row .icon {
  color: #E83D8C;
}

.section--no-bottom .info-card .home-contact-list .info-row svg,
.section--no-bottom .info-card .home-contact-list .info-row .icon {
  color: #FFFFFF;
  filter: none !important;
}

.section--no-bottom .info-card .home-contact-list .info-row,
.section--no-bottom .info-card .home-contact-list .info-row a,
.section--no-bottom .info-card .home-contact-list .info-row span {
  color: #FFFFFF !important;
}

@media (max-width: 480px) {
  .info-row svg,
  .info-row .icon {
    width: 24px;
    height: 24px;
  }
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: space-around;
  font-size: 20px;
}

@media (max-width: 480px) {
  .hours-row {
    font-size: 16px;
    gap: 10px;
  }
}

.hours-row .dash {
  width: 45px;
  height: 1px;
  background: var(--color-text-primary);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hours-row .dash {
    width: 24px;
  }
}

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

.social-links a {
  display: flex;
  transition: opacity 0.2s;
}

.social-links svg,
.social-links img {
  width: 32px;
  height: 32px;
  color: #e83d8c;
  filter: none;
}

/* Home about-grid: on mobile, show about text first, then info card */
@media (max-width: 1023px) {
  .section--no-bottom .about-grid {
    display: flex;
    align-items: start;
    flex-direction: row;
    gap: 40px;
  }
}


@media (max-width: 640px) {
  .section--no-bottom .about-grid {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 40px;
  }
}

/* ===== Home About + Map layout ===== */
.home-map {
  width: 100dvw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  margin-top: -330px;
  position: relative;
  z-index: 0;
  /* margin-bottom: 30px; */
}

@media (min-width: 1024px) {
  .home-map {
    position: relative;
    z-index: 0;
  }
  .about-grid > .info-card {
    position: relative;
    z-index: 1;
  }

}
@media (max-width: 640px){
    .home-map {
      margin-top: -120px;
    }
}

.about-grid {
  position: relative;
  z-index: 1;
}

.home-map__img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* ===== About Page Sections ===== */
body.page-about #about,
body.page-about #pickup,
body.page-about #delivery,
body.page-about #events,
body.page-about #dine-drink {
  scroll-margin-top: 80px;
}

@media (max-width: 1023px) {
  body.page-about #about,
  body.page-about #pickup,
  body.page-about #delivery,
  body.page-about #events,
  body.page-about #dine-drink {
    scroll-margin-top: 80px;
  }
}

.about-grid {
  display: grid;
  justify-items: end;
  grid-template-columns: 1fr;
  gap: var(--gutter);
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.about-grid.reverse {
  direction: ltr;
}

@media (min-width: 1024px) {
  .about-grid.reverse {
    direction: rtl;
  }
  .about-grid.reverse > * {
    direction: ltr;
  }
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}

.about-images .main-img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 628/216;
  object-fit: cover;
}

.about-images .sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}

.about-images .sub-images img {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 302/166;
  object-fit: cover;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(15px, 1.45vw, 18px);
}

.feature-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent-pink);
}

/* Pickup / Delivery combined section */
.combined-section {
  background: var(--color-bg-overlay);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.combined-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1023px) {
  .combined-inner > *:first-child {
    order: 2;
  }
  .combined-inner > *:last-child {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .combined-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.combined-inner.reverse {
  direction: ltr;
}

@media (max-width: 1023px) {
  .combined-inner.reverse > *:first-child {
    order: 2;
  }
  .combined-inner.reverse > *:last-child {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .combined-inner.reverse {
    direction: rtl;
  }
  .combined-inner.reverse > * {
    direction: ltr;
  }
}

.combined-inner img {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.delivery-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}

@media (max-width: 480px) {
  .delivery-buttons {
    grid-template-columns: 1fr;
  }
}

/* Events section */
.event-types {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.event-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(15px, 1.45vw, 18px);
}

.event-type svg,
.event-type .icon {
  width: 24px;
  height: 24px;
}

/* Dine & Drink */
.dine-grid {
  display: grid;

  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .dine-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-content: center;
  }

}

.dine-image {
  width: 100%;
  /* max-width: 412px; */
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.dine-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
  align-items: start;
}

.dine-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(15px, 1.45vw, 18px);
  color: var(--color-accent-pink);
}

.dine-links svg,
.dine-links .icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent-pink);
}

/* About page — tablet (768–1023px) */
@media (min-width: 630px) and (max-width: 1023px) {
  .dine-grid {
    align-items: start;
    grid-template-columns: 336px 1fr;
  }

  .dine-image {
    max-width: 336px;
    aspect-ratio: 336/435;
  }
}

@media (max-width:630px){
  .dine-grid {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: start;
  }
}

/* About page — tablet + mobile (< 1024px) */
@media (max-width: 1023px) {
  #about .section-text,
  #pickup .section-text,
  #delivery .section-text,
  #events .section-text,
  #dine-drink .section-text {
    font-size: 16px;
    line-height: 24px;
  }

  .feature-item {
    font-size: 16px;
  }

  .event-type {
    font-size: 16px;
  }

  .dine-links a {
    font-size: 16px;
  }

  #events .about-grid {
    text-align: center;
  }

  #events .section-heading {
    align-items: center;
  }

  #events .event-types {
    justify-content: center;
  }

  #events .about-grid > div:last-child {
    justify-self: center;
  }

  #events .about-grid > div:first-child > div:last-child {
    justify-content: center;
  }
}

/* About page — mobile (< 768px) */
@media (max-width: 767px) {
  .combined-section {
    padding: 20px;
    gap: 48px;
  }

  .combined-inner {
    gap: 24px;
  }

  #events .about-grid > div:first-child > div:last-child {
    /* flex-direction: column; */
    align-items: center;
  }
/* 
  .dine-grid {
    display: flex;
    align-items: start;
    flex-direction: column-reverse;
 */

  /* } */

  .dine-image {
    max-width: 100%;
  }
}

@media (max-width: 480px){
  #events .about-grid > div:first-child > div:last-child {
    flex-direction: column;
    width: 100%;
    max-width: unset !important;
    align-items: center;

    a {
      width: 100% !important;
    }
  }
}

/* ===== Allergens Page ===== */
.allergens-card {
  background: var(--color-bg-overlay);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 30px 40px;
  position: relative;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.allergen-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.allergen-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.allergen-item svg,
.allergen-item img,
.allergen-item .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .allergens-card {
    padding: 20px;
  }
  .allergen-item {
    font-size: 16px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 30px 80px;
  }
}

/* ===== Background overlay (for pages with bg image) ===== */
.page-bg {
  position: fixed;
  inset: 0;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.84);
}

/* ===== Utility ===== */
.section--no-bottom { padding-bottom: 0; }
.text-center { text-align: center; }
.text-pink { color: var(--color-text-pink); }
.text-blue { color: var(--color-accent-blue); }
.text-muted { color: var(--color-text-secondary); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== Animations & Transitions ===== */

/* Scroll reveal — elements start hidden, appear on scroll */
.reveal-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-hidden.revealed {
  opacity: 1;
  transform: translateY(0px);
}


/* Staggered card reveal */
.reveal-card {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-card.reveal-delay-0 { transition-delay: 0ms; }
.reveal-card.reveal-delay-1 { transition-delay: 80ms; }
.reveal-card.reveal-delay-2 { transition-delay: 160ms; }
.reveal-card.reveal-delay-3 { transition-delay: 240ms; }

/* Card enter animation (for AJAX-loaded cards) */
.card-enter {
  animation: cardFadeIn 0.4s ease both;
}

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

/* Product card hover — disabled */

/* Lazy loaded images fade in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].img-loaded,
img:not([loading="lazy"]) {
  opacity: 1;
}

/* Header shrink on scroll */
.site-header {
  transition: background 0.3s ease, padding 0.3s ease;
}

.header-scrolled {
  background: rgba(11, 14, 20, 0.9) !important;
  backdrop-filter: blur(20px);
}

.header-scrolled .header-top {
  padding-top: 10px;
  padding-bottom: 10px;
  transition: padding 0.3s ease;
}

/* Button & pill ripple effect */
.pill, .btn {
  position: relative;
  overflow: hidden;
}

/* Pill active transition */
.pill {
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.pill:active {
  transform: scale(0.95);
}

/* Nav item styling */
.nav-item {
  transition: color 0.2s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
}

/* Info card subtle entrance */
.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Link hover glow */
a {
  transition: color 0.2s ease;
}

/* Social icons */
.social-links a {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Mobile menu links entrance */
.mobile-menu-overlay.open .mobile-menu-link {
  animation: slideInLeft 0.3s ease both;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(3) { animation-delay: 0.11s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(4) { animation-delay: 0.14s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(5) { animation-delay: 0.17s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(6) { animation-delay: 0.20s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(7) { animation-delay: 0.23s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(8) { animation-delay: 0.26s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(9) { animation-delay: 0.29s; }
.mobile-menu-overlay.open .mobile-menu-link:nth-child(10) { animation-delay: 0.32s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero content entrance */
.hero-content {
  animation: heroFadeIn 0.8s ease both;
}

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

/* Category pills container - smooth scroll indicator */
.category-pills {
  scroll-behavior: smooth;
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-btn-primary);
  border: 1px solid var(--color-accent-pink);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(232, 61, 140, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767px) {
  .scroll-top {
    bottom: 20px;
    left: 20px;
    right: auto;
    width: 40px;
    height: 40px;
  }
  .scroll-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Order FAB ===== */
.order-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  height: 48px;
  padding: 0 20px;
  border-radius: 24px;
  background: var(--color-accent-pink);
  border: none;
  color: #fff;
  font-family: var(--font-btn);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow:
    0 0 12px rgba(232, 61, 140, 0.5),
    0 0 24px rgba(232, 61, 140, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.3);
  animation: order-glow 2s ease-in-out infinite;
}

@keyframes order-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(232, 61, 140, 0.5), 0 0 24px rgba(232, 61, 140, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3); }
  50%      { box-shadow: 0 0 20px rgba(232, 61, 140, 0.7), 0 0 40px rgba(232, 61, 140, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3); }
}

.order-fab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .order-fab {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .order-fab span {
    display: none;
  }
  .order-fab svg {
    width: 22px;
    height: 22px;
  }
}

/* ===== Order Modal ===== */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.order-modal {
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  width: 90%;
  max-width: 380px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s;
}

.order-modal-overlay.active .order-modal {
  transform: translateY(0) scale(1);
}

.order-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.order-modal-close svg {
  width: 22px;
  height: 22px;
}

.order-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.order-modal-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Product Modal ===== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 16px;
}

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

.product-modal-overlay.active .product-modal {
  opacity: 1;
  transform: none;
}

.product-modal {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  border-radius: 18px;
  max-width: 900px;
  width: min(900px, 100%);
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center center;
}

.product-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  backdrop-filter: blur(8px);
}

.product-modal__close span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  display: inline;
}

.product-modal__image-wrap {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #1a1d26, #0b0e14);
  overflow: hidden;
  min-height: 240px;
}

.product-modal__image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.product-modal__image-wrap img.is-hidden {
  display: none;
}

.product-modal-overlay.active .product-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-modal__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.product-modal__body h3 {
  font-size: 28px;
  line-height: 1.25;
  color: #fff;
}

.product-modal__body p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-secondary);
  max-height: none;
  overflow: visible;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.product-modal__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.product-modal__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-pink);
}

.product-modal__allergens {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.product-modal__allergens .allergen-icon {
  width: 22px;
  height: 22px;
}

.product-modal__allergens .allergen-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232, 61, 140, 0.16);
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 13px;
}

.product-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.product-modal__footer .btn {
  padding: 10px 16px;
}

@media (max-width: 767px) {
  .product-modal__body h3 {
    font-size: 22px;
  }
  .product-modal__body p {
    font-size: 15px;
  }
  .product-modal {
    border-radius: 14px;
    grid-template-columns: 1fr;
  }
  .product-modal__close span {
    display: inline;
  }
}

@media (min-width: 768px) {
  .product-modal {
    grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  }
  .product-modal__image-wrap {
    min-height: 100%;
    height: 100%;
  }
}
/* ===== Icon helper ===== */
.header-phone .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===== 404 Page ===== */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  gap: 20px;
}

.page-404 h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  color: var(--color-accent-pink);
}

.page-404 p {
  font-size: 20px;
  color: var(--color-text-secondary);
}

/* ===== Global Loader ===== */
.global-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 14, 20, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 9999;
}

.global-loader.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-loader__spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-accent-pink);
  animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Inline style replacements */
.lang-switch-mobile {
  align-self: flex-start;
}

.menu-page-section-top {
  padding-top: 40px;
}

.allergens-section {
  padding-top: 40px;
}

.allergens-intro {
  font-size: 20px;
  line-height: 28px;
}

.home-explore-top-sm {
  padding-top: 4em;
}

.home-explore-top-lg {
  padding-top: 8em;

  @media (max-width: 943px){
    margin-top: 11em;
  }
}

.home-menu-cta {
  margin-top: 40px;
}

.home-hours-column {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hours-line {
  white-space: nowrap;
}

.home-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-about-text-wrap {
  justify-self: start;
  margin-top: 13px;
}

.home-about-text {
  margin-top: 25px;
}

.about-pickup-section {
  position: relative;
  z-index: 2;
}

.about-mb-16 {
  margin-bottom: 16px;
}

.about-mb-24 {
  margin-bottom: 24px;
}

.about-mb-32 {
  margin-bottom: 32px;
}

.about-event-types {
  margin-bottom: 40px;
}

.about-pickup-image {
  aspect-ratio: 599 / 304;
  object-fit: cover;
}

.about-delivery-image {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 556 / 304;
  object-fit: cover;
}

.about-events-image {
  width: 100%;
  border-radius: var(--radius-sm);
  aspect-ratio: 628 / 371;
  object-fit: cover;
}

.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.about-info-text {
  font-size: clamp(15px, 1.55vw, 20px);
}

.about-divider-line {
  width: 45px;
  height: 1px;
  background: #fff;
  flex-shrink: 0;
}

.about-hours-column {
  font-size: clamp(15px, 1.55vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-hours-line {
  white-space: nowrap;
}

.about-how-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  margin-bottom: 24px;
}

.menu-grid-empty-message {
  padding: 40px 0;
  font-size: 20px;
  width: 100%;
}

.card-delay-0 { animation-delay: 0ms; }
.card-delay-1 { animation-delay: 60ms; }
.card-delay-2 { animation-delay: 120ms; }
.card-delay-3 { animation-delay: 180ms; }
.card-delay-4 { animation-delay: 240ms; }
.card-delay-5 { animation-delay: 300ms; }
.card-delay-6 { animation-delay: 360ms; }
.card-delay-7 { animation-delay: 420ms; }
