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

/* ── HIDE TEXT CARET (insertion point) ONLY — cursor stays normal ── */
* {
  caret-color: transparent;
}

:root {
  --black: #000000;
  --white: #ffffff;
}

html {
  height: 100%;
}

body {
  background-color: #000;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 0;
}

/* ── WRAPPER ── */
.menu-wrapper {
  width: 100%;
  max-width: 860px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-wrapper .content {
  flex: 1;
}

/* ── CONTENT ── */
.content {
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.header {
  text-align: center;
  margin-bottom: 36px;
}

.coffeeshop-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.8vw, 18px);
  letter-spacing: 0.35em;
  color: var(--white);
  margin-bottom: 10px;
}

.solo-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── MENU SECTIONS ── */
.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-weight: 900;
  font-size: clamp(18px, 3vw, 28px);
  font-style: normal;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

/* ── MENU ITEMS ── */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.item-name {
  font-weight: 800;
  font-size: clamp(13px, 1.8vw, 17px);
  flex: 1;
  line-height: 1.4;
}

.item-name em {
  font-weight: 700;
  font-style: italic;
  opacity: 0.8;
}

.item-price {
  font-weight: 800;
  font-size: clamp(13px, 1.8vw, 17px);
  white-space: nowrap;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
}

/* ── PAGE FOOTER (Keep it chill etc.) ── */
.footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 2px solid rgba(255,255,255,0.15);
}

.order-text {
  font-weight: 900;
  font-size: clamp(14px, 2.2vw, 22px);
  letter-spacing: 0.3em;
  color: var(--white);
}

/* ── SIDENAV ── */
.sidenav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.burger {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.2s;
}

.burger:hover {
  background: rgba(255,255,255,0.1);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-links {
  list-style: none;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  max-width: 0;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.35s ease, opacity 0.3s ease, max-height 0.35s ease;
  white-space: nowrap;
  margin-left: 10px;
}

.sidenav:hover .nav-links,
.sidenav.open .nav-links {
  max-width: 200px;
  max-height: 300px;
  opacity: 1;
  pointer-events: all;
}

.nav-links li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, padding-left 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-links li:last-child a {
  border-bottom: none;
}

.nav-links li a:hover {
  background: rgba(255,255,255,0.1);
  padding-left: 26px;
}

/* ── GLOBAL LANGUAGE SWITCHER ── */
#global-lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

#gls-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  padding: 9px 14px;
  cursor: pointer;
  user-select: none;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

#gls-trigger:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.95);
}

.gls-abbr {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0.6;
  width: 20px;
  flex-shrink: 0;
}

.gls-label {
  flex: 1;
}

.gls-arrow {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
  margin-left: 4px;
}

#global-lang-switcher.open .gls-arrow {
  transform: rotate(180deg);
}

#gls-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  max-height: 320px;
  overflow-y: auto;
}

#global-lang-switcher.open #gls-dropdown {
  display: block;
}

.gls-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}

.gls-option:last-child { border-bottom: none; }

.gls-option:hover,
.gls-option.selected {
  background: rgba(255,255,255,0.1);
}

/* ── HOME PAGE ── */
.hours-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 8px;
}

.hours-card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.hours-card-time {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
}

.hours-card-days {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  text-transform: uppercase;
}

.section-title-spaced {
  margin-top: 28px;
}

.nav-page-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(13px, 2vw, 16px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.nav-link-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}

.nav-link-btn .arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  margin-left: 8px;
}

.nav-link-btn:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.map-block {
  margin-top: 4px;
}

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.address-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.address-btn {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}

.address-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

/* ── ABOUT PAGE ── */
.about-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 20px 24px;
}

.about-card-title {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.about-card-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.highlight-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 16px 12px;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.rules-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}

/* ── HOUSE RULES ── */
.rules-section {
  display: none;
}

.rules-section.active {
  display: block;
}

.rule {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.rule:last-child {
  border-bottom: none;
}

.rule-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rules-footer {
  text-align: center;
  margin-top: 28px;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
}

.rules-page-footer {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
}

/* ── ITEM NOTE ── */
.item-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 2px;
  padding-left: 2px;
}

/* ── REVIEWS CAROUSEL ── */
.reviews-section {
  margin-top: 40px;
  margin-bottom: 8px;
}

.reviews-title {
  margin-bottom: 20px;
}

.reviews-track-wrapper {
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-card {
  min-width: 100%;
  padding: 28px 28px 24px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: #f5c518;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin: 0;
  font-style: italic;
}

.review-author {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.review-dot.active {
  background: rgba(255,255,255,0.8);
  transform: scale(1.25);
}

/* ── SITE FOOTER — always at the bottom ── */
.site-footer {
  width: 100%;
  max-width: 860px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 20px 0 32px;
  align-self: center;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.site-footer-logo {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.2);
}

.site-footer-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
}

.site-footer-sep {
  opacity: 0.3;
}

.site-footer-phone {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-phone:hover {
  color: rgba(255,255,255,0.7);
}

/* ── ACTIVE NAV LINK ── */
.nav-links li a.nav-active {
  background: rgba(255,255,255,0.12);
  border-left: 3px solid #fff;
  padding-left: 17px;
  color: #fff;
}

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, border-color 0.2s;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
#back-to-top:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

/* ── OPEN/CLOSED STATUS ── */
.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 0;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.open {
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76,175,80,0.6);
  animation: pulse-green 2s ease-in-out infinite;
}
.status-dot.closed {
  background: #ef5350;
  box-shadow: 0 0 8px rgba(239,83,80,0.4);
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(76,175,80,0.6); }
  50% { box-shadow: 0 0 16px rgba(76,175,80,0.9); }
}
.status-text {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-text.open { color: #4caf50; }
.status-text.closed { color: #ef5350; }

/* ── PHONE CALL BUTTON ── */
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 16px;
}
.call-btn:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.5);
}
.call-btn svg { flex-shrink: 0; }

/* ── REVIEW LINK ── */
.review-link-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.review-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.review-link-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

/* ── SCROLL REVEAL ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── FAQ ── */
.faq-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  user-select: none;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255,255,255,0.04);
}
.faq-toggle {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.4;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ── COOKIE NOTICE ── */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-notice.show { transform: translateY(0); }
#cookie-notice button {
  padding: 8px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
#cookie-notice button:hover {
  background: rgba(255,255,255,0.2);
}
