/* ============================================
   EAT THIS — Berlin Food Blog
   Design System & Styles
   ============================================ */

/* RESET */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
body{overflow-x:hidden;max-width:100vw}
img{max-width:100%;height:auto;display:block}
iframe{max-width:100%}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font-family:inherit;border:none;background:none}
ul,ol{list-style:none}

/* DESIGN TOKENS */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F5F5F5;
  --gray-100: #E8E8E8;
  --gray-200: #D4D4D4;
  --gray-400: #888888;
  --gray-600: #555555;
  --orange: #FF3B00;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 2px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal, .reveal-left, .reveal-right, .reveal-scale,
.reveal-up, .reveal-fade,
.reveal-stagger > * {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.navbar.scrolled {
  border-bottom-color: var(--gray-100);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.navbar-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.navbar-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.navbar-links a:hover::after {
  width: 100%;
}
.navbar-links a:hover {
  color: var(--orange);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar-actions .search-trigger,
.navbar-actions .navbar-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--black);
  transition: color 0.2s;
}
.navbar-actions .search-trigger:hover,
.navbar-actions .navbar-insta:hover {
  color: var(--orange);
}
.search-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.navbar-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s !important;
}
.navbar-insta {
  display: flex;
  align-items: center;
  padding-bottom: 0 !important;
}
.navbar-insta::after {
  display: none !important;
}
.navbar-cta:hover {
  background: var(--orange) !important;
  transform: translateY(-1px);
}
.navbar-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: all 0.3s var(--ease);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.mobile-menu a:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .navbar { padding: 12px 48px; }
  .navbar-links { display: flex; }
  .hamburger { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  background-image: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

/* Hero Slider */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: opacity;
  background-color: #1a1a1a;
  background-image: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 10vh 24px 20vh;
  text-align: center;
}
.hero-logo {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto 16px;
}
.hero-tagline {
  font-size: clamp(0.65rem, 2.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content { padding: 10vh 48px 12vh; }
  .hero-logo { font-size: clamp(6rem, 18vw, 16rem); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 60px 0;
  overflow: hidden;
}
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.about-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-img-wrapper {
  width: 100%;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.about-img-caption {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
}

@media (min-width: 768px) {
  .about-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
  }
  .about-img-wrapper {
    height: 560px;
  }
  .about-img {
    height: 100%;
    object-fit: cover;
  }
}
.about-img-caption {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
}
.about-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.about-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--black);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}
.about-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0;
}
.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.about-cities {
  font-weight: 700;
  color: var(--black);
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .about-inner {
    padding: 0 48px;
    gap: 64px;
  }
  .about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
  }
  .about-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
  }
  .about-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .about-inner {
    padding: 0 24px;
  }
}

/* ============================================
   MUST EATS / EAT THIS SECTION
   ============================================ */
.must-eats-section {
  padding: 60px 0 40px;
}
.must-eats-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
}
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.must-eats-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.must-eats-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 400;
}
.must-eats-grid {
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .must-eats-section { padding: 140px 0 100px; }
  .must-eats-header { padding: 0 48px 48px; }
  .must-eats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0; }
}

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

.eat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  position: relative;
}
.eat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
  border-color: var(--gray-200);
}
.eat-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.eat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.eat-card:hover .eat-card-img img {
  transform: scale(1.08);
}
.eat-card-img img.hover-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.eat-card:hover .eat-card-img img.hover-img {
  opacity: 1;
}
.eat-card-district-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.eat-card-body {
  padding: 16px 16px 20px;
}
.eat-card-dish {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.eat-card-restaurant {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
  margin-bottom: 0;
}
.eat-card-district2 {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--black);
  padding: 2px 6px;
  margin-top: 4px;
}
.eat-card-price {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .must-eats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .must-eats-section { padding: 140px 48px 160px; }
}
@media (min-width: 1024px) {
  .must-eats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   FOOD MAP SECTION
   ============================================ */
.map-section {
  padding: 60px 0 40px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  position: relative;
  z-index: 1;
}
.map-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  text-align: center;
}
.map-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.map-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 12px;
}
.map-container {
  width: 100%;
  height: calc(100vh - 300px);
  min-height: 400px;
  background: var(--gray-50);
  position: relative;
  z-index: 1;
}

/* Spot Detail Bottom Sheet */
.spot-detail {
  display: none;
}

.spot-detail.open {
  transform: translateY(0);
}

.spot-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.spot-detail-close:hover {
  background: var(--black);
  color: var(--white);
}

.spot-detail-close svg {
  width: 20px;
  height: 20px;
}

/* Map Spot Overlay */
.map-spot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.map-spot-overlay.active {
  display: flex;
}

.map-spot-card {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 400px;
  border-radius: 16px 16px 0 0;
  padding: 20px;
  animation: slideUp 0.3s var(--ease);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.map-spot-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.map-spot-close svg {
  stroke: var(--black);
}

.map-spot-content {
  font-family: var(--font);
}

.map-spot-header {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.map-spot-district {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.map-spot-type {
  font-size: 11px;
  color: var(--gray-600);
}

.map-spot-name {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}

.map-spot-musteat {
  font-size: 14px;
  margin-bottom: 12px;
  padding: 10px;
  background: var(--gray-50);
  border-left: 3px solid var(--orange);
}

.map-spot-label {
  font-weight: 700;
}

.map-spot-address {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.map-spot-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.map-spot-btn:hover {
  background: var(--orange);
}

/* Leaflet Popup Styles */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.leaflet-popup-content {
  margin: 0;
  font-family: var(--font);
  min-width: 200px;
}

.leaflet-popup-close-button {
  top: 8px !important;
  right: 8px !important;
  font-size: 20px !important;
  color: var(--gray-600) !important;
}

.spot-popup {
  padding: 12px;
}

.spot-popup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.spot-popup-district {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.spot-popup-type {
  font-size: 10px;
  color: var(--gray-600);
}

.spot-popup-name {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
}

.spot-popup-musteat {
  font-size: 13px;
  margin-bottom: 8px;
  padding: 8px;
  background: var(--gray-50);
  border-left: 3px solid var(--orange);
}

.spot-popup-label {
  font-weight: 700;
}

.spot-popup-address {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.spot-popup-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  box-sizing: border-box;
}

.spot-popup-btn:hover {
  background: var(--orange);
}

.spot-detail-content {
  padding: 0;
}

/* Receipt Style */
.spot-receipt {
  background: #fff;
  font-family: 'Courier New', Courier, monospace;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.spot-receipt::before,
.spot-receipt::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    #fff 8px,
    #fff 16px
  );
}

.spot-receipt::before {
  top: -8px;
}

.spot-receipt::after {
  bottom: -8px;
}

.spot-receipt-header {
  text-align: center;
  margin-bottom: 12px;
}

.spot-receipt-district {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.spot-receipt-type {
  display: block;
  font-size: 10px;
  color: var(--gray-500);
}

.spot-receipt-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 8px 0;
  line-height: 1.1;
  text-align: center;
}

.spot-receipt-divider {
  border-bottom: 2px dashed var(--black);
  margin: 12px 0;
  position: relative;
}

.spot-receipt-musteat-box {
  text-align: center;
  padding: 8px 0;
}

.spot-receipt-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.spot-receipt-musteat {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.spot-receipt-address {
  font-size: 11px;
  color: var(--gray-500);
  margin: 12px 0 16px;
  text-align: center;
}

.spot-receipt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
}

.spot-detail-btn:hover {
  background: var(--orange);
}

/* User Location Marker */
.user-location-marker {
  background: transparent;
  border: none;
}

.user-location-dot {
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.user-location-popup {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 0;
}

.map-filters {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.map-filters::-webkit-scrollbar {
  display: none;
}

.map-filter-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--black);
  border-radius: 20px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.map-filter-btn:hover {
  background: var(--black);
  color: var(--white);
}

.map-filter-btn.active {
  background: var(--black);
  color: var(--white);
}

.map-location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.map-location-btn-fixed {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  background: var(--black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.2s;
}

.map-location-btn-fixed svg {
  stroke: var(--white);
}

.map-location-btn-fixed:hover {
  background: var(--gray-100);
}

.map-location-btn-fixed.loading svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.map-location-btn:active {
  background: var(--gray-200);
}

@media (max-width: 767px) {
  .map-filters {
    padding: 10px 12px;
  }
  
  .map-filter-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .map-container {
    height: calc(100vh - 260px);
    min-height: 300px;
  }
  
  .leaflet-popup-content-wrapper {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .leaflet-popup-content {
    margin: 0;
    min-width: 240px;
  }
  
  .spot-popup {
    padding: 16px;
  }
  }
  
  .spot-popup-type {
    font-size: 10px;
    color: var(--gray-600);
  }
  
  .spot-popup-name {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  
  .spot-popup-musteat {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  .spot-popup-label {
    font-weight: 700;
  }
  
  .spot-popup-address {
    font-size: 11px;
    color: var(--gray-600);
    margin-bottom: 8px;
  }
  
  .spot-popup-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--black);
    text-decoration: underline;
  }
}

/* Leaflet Overrides */
#foodMap {
  width: 100% !important;
  height: 500px !important;
  min-height: 500px !important;
}
.leaflet-container {
  width: 100% !important;
  height: 100% !important;
}

/* Custom Marker with Logo */
.leaflet-marker-icon {
  background: transparent !important;
  border: none !important;
}
.leaflet-marker-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s, filter 0.2s;
}
.leaflet-marker-icon:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

/* Popup */
.leaflet-popup-content-wrapper {
  border-radius: 8px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
  padding: 0 !important;
}
.leaflet-popup-content {
  margin: 0 !important;
  font-family: var(--font) !important;
}
.leaflet-popup-tip {
  box-shadow: none !important;
}
.map-popup {
  padding: 16px 20px;
  min-width: 220px;
  max-width: 260px;
}
.map-popup-district {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 8px;
}
.map-popup-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.map-popup-name {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.map-popup-musteat {
  font-size: 13px;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4;
}
.map-popup-address {
  font-size: 11px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.4;
}
.map-popup-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gray-50);
  border: 1.5px solid var(--black);
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.map-popup-btn:hover {
  background: var(--black);
  color: var(--white);
}

@media (min-width: 768px) {
  .map-section { padding: 140px 0 100px; }
  .map-header { padding: 0 48px 48px; }
  .map-container { height: 600px; }
  #foodMap { height: 600px !important; min-height: 600px !important; }
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 60px 0 40px;
}
.news-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 24px;
}
.news-header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
}
.news-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.news-all-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color 0.2s;
  white-space: nowrap;
}
.news-all-link:hover {
  color: var(--black);
}
.news-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.news-filter {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.news-filter:hover,
.news-filter.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Featured Article */
.news-featured {
  margin-bottom: 80px;
}
.news-featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.news-featured-link:hover {
  background: var(--gray-50);
}
.news-featured-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.news-featured-link:hover .news-featured-img img {
  transform: scale(1.05);
}
.news-featured-body {
  padding: 48px 24px 0;
  max-width: 900px;
}
.news-featured-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  margin-right: 10px;
  margin-bottom: 20px;
}
.news-featured-category {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 6px 0;
  margin-bottom: 20px;
}
.news-featured-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.news-featured-excerpt {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
  max-width: 700px;
}
.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-featured-meta time {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
}
.news-featured-read {
  font-size: 12px;
  color: var(--gray-400);
}

/* News Grid */
.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.news-card {
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s;
}
.news-card.hidden {
  display: none;
}
.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.news-card-link:hover {
  background: var(--gray-50);
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.news-card-link:hover .news-card-img img {
  transform: scale(1.06);
}
.news-card-body {
  padding: 24px 0 0;
}
.news-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.news-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.news-card-date {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
}
.news-card-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .news-section { padding: 180px 0 140px; }
  .news-header { padding: 0 48px 64px; }
  .news-featured-body { padding: 56px 48px 0; }
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 48px;
  }
  .news-card-headline { font-size: clamp(1.2rem, 2vw, 1.6rem); }
}
@media (min-width: 1024px) {
  .news-grid { gap: 32px; padding: 0 48px; max-width: 1400px; }
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.insta-section {
  padding: 60px 24px;
  border-top: 1px solid var(--black);
}
.insta-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.insta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.insta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.insta-follow {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.insta-follow:hover {
  color: var(--orange);
}
.insta-header-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.insta-badge-link {
  display: flex;
  align-items: center;
}
.insta-badge-img {
  width: 60px;
  height: auto;
  transition: transform 0.2s;
}
.insta-badge-link:hover .insta-badge-img {
  transform: scale(1.05);
}
.insta-embeds {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.insta-embeds .instagram-media {
  margin: 0 auto !important;
  border-radius: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}
.insta-embeds iframe {
  max-width: 100% !important;
}

@media (max-width: 767px) {
  .insta-badge-img {
    width: 80px;
  }
  .insta-label {
    font-size: 14px;
  }
  .insta-follow {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .insta-section { padding: 100px 48px; }
  .insta-embeds {
    flex-direction: row;
    gap: 32px;
  }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  padding: 80px 24px;
  border-top: 1px solid var(--black);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.newsletter-desc {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--font);
  border: 2px solid var(--black);
  border-right: none;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder {
  color: var(--gray-300);
}
.newsletter-input:focus {
  border-color: var(--orange);
}
.newsletter-btn {
  padding: 16px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.newsletter-success {
  display: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 20px;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.4s var(--ease);
}
.newsletter-success.show {
  display: block;
}

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

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 80px 24px;
  border-top: 1px solid var(--black);
  background: var(--white);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-desc {
  font-size: 15px;
  color: var(--gray-600);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
}
.pricing-card-header {
  margin-bottom: 20px;
}
.pricing-plan-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.pricing-plan-tagline {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 4px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 14px;
  color: var(--gray-400);
}
.pricing-trial {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.pricing-feature-excluded {
  color: var(--gray-300);
  text-decoration: line-through;
}
.pricing-check {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.pricing-x {
  width: 18px;
  height: 18px;
  color: var(--gray-200);
  flex-shrink: 0;
}
.pricing-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.pricing-btn-free {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.pricing-btn-free:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.pricing-btn-pro {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.pricing-btn-pro:hover {
  background: var(--black);
  border-color: var(--black);
}
.pricing-btn-ultimate {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.pricing-btn-ultimate:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Popular Badge */
.pricing-card-pro {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
}
.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Best Value Badge */
.pricing-card-ultimate {
  border-color: var(--black);
}
.pricing-best-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Tablet+ */
@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .pricing-card-pro {
    transform: scale(1.05);
    z-index: 1;
  }
  .pricing-card-free,
  .pricing-card-ultimate {
    margin-top: 20px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .pricing-section {
    padding: 120px 48px;
  }
  .pricing-card {
    padding: 40px 32px;
  }
}

@media (min-width: 768px) {
  .newsletter-section { padding: 180px 48px; }
  .newsletter-form { max-width: 520px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  display: none;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
}
.footer-brand {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 8px;
}
.footer-brand span {
  display: block;
}
.footer-brand-accent {
  color: var(--orange);
}
.footer-tagline {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--black);
  transition: all 0.3s;
}
.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer-nav-col a {
  font-size: 15px;
  color: rgba(0,0,0,0.5);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.footer-nav-col a:hover {
  color: var(--black);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}
.footer-bottom-left {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
}
.footer-bottom-right {
  display: flex;
  gap: 24px;
}
.footer-bottom-right a {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  transition: color 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-bottom-right a:hover {
  color: var(--black);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-4px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  z-index: 10002;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.cookie-consent.show {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-text {
  font-size: 14px;
  line-height: 1.5;
}
.cookie-text a {
  text-decoration: underline;
  color: var(--white);
}
.cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-accept {
  background: var(--white);
  color: var(--black);
}
.cookie-btn-accept:hover {
  background: var(--gray-200);
}
.cookie-btn-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 48px;
    gap: 80px;
  }
  .footer-nav-group {
    flex-direction: row;
    gap: 64px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 24px 48px;
  }
}
@media (min-width: 1024px) {
  .footer-brand-block {
    max-width: 360px;
  }
}

/* ============================================
   MUST EAT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), background 0.4s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal {
  background: var(--white);
  width: 90%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 10003;
}
.modal-overlay.active .modal {
  transform: scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-close:hover {
  background: var(--orange);
  transform: scale(1.1);
}
.modal-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-body {
  padding: 16px 20px 12px;
}
.modal-district {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 8px;
  margin-bottom: 8px;
}
.modal-dish {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 4px;
}
.modal-restaurant {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 6px;
  font-weight: 600;
}
.modal-address {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 10px;
  font-weight: 400;
}
.modal-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-600);
  margin-bottom: 10px;
}
.modal-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 0;
}
.modal-maps-btn:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .modal { max-height: 80vh; }
  .modal-img { height: 180px; }
  .modal-body { padding: 20px 24px 24px; }
}

/* ============================================
   NEWS ARTICLE MODAL
   ============================================ */
.news-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), background 0.4s var(--ease);
}
.news-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.news-modal {
  background: var(--white);
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.news-modal-overlay.active .news-modal {
  transform: scale(1);
  opacity: 1;
}
.news-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.news-modal-close:hover {
  background: var(--orange);
  transform: scale(1.1);
}
.news-modal-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.news-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-modal-body {
  padding: 24px 28px 32px;
}
.news-modal-category {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.news-modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.news-modal-date {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.news-modal-share {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s;
}
.share-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.share-twitter:hover {
  background: #000;
}
.share-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}
.share-native:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.news-modal-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
}
.news-modal-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin: 20px 0 8px;
}
.news-modal-content p {
  margin-bottom: 12px;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

/* Safe area for notch */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar { padding-top: calc(10px + env(safe-area-inset-top)); }
  .hero { padding-top: calc(120px + env(safe-area-inset-top)); }
}

/* ============================================
   SEARCH
   ============================================ */
.search-trigger {
  display: none;
}
@media (max-width: 767px) {
  .search-trigger {
    display: flex;
    align-items: center;
    padding: 0 !important;
    color: var(--black) !important;
  }
}
.search-trigger::after {
  display: none !important;
}
.search-trigger svg {
  width: 18px;
  height: 18px;
}

/* Search Modal */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2001;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding-top: 80px;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0,0,0,0.8);
}
.search-container {
  background: var(--white);
  width: 90%;
  max-width: 640px;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.search-overlay.active .search-container {
  transform: translateY(0);
  opacity: 1;
}
.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 2px solid var(--black);
}
.search-input-wrapper svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--font);
  background: transparent;
}
.search-input::placeholder {
  color: var(--gray-400);
}
.search-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--gray-400);
  transition: color 0.2s;
}
.search-close:hover {
  color: var(--black);
}
.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 16px 0;
}
.search-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 8px 20px;
  margin-bottom: 4px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-result-item:hover {
  background: var(--gray-50);
}
.search-result-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.search-result-content {
  flex: 1;
  min-width: 0;
}
.search-result-dish,
.search-result-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-restaurant,
.search-result-meta {
  font-size: 12px;
  color: var(--gray-400);
}
.search-result-type {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.search-no-results {
  padding: 40px 20px;
  text-align: center;
  color: var(--gray-400);
}
.search-no-results p {
  font-size: 15px;
  margin-bottom: 8px;
}
.search-no-results span {
  font-size: 13px;
}
.search-hint {
  padding: 16px 20px;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
}

@media (max-width: 767px) {
  .search-overlay {
    padding-top: 0;
    align-items: flex-end;
  }
  .search-container {
    width: 100%;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    max-height: 85vh;
  }
}

/* ============================================
   APP PAGES CONTAINER
   ============================================ */
.app-pages {
  display: flex;
  height: 100%;
}

.app-page {
  flex: 0 0 100%;
  width: 100%;
  height: calc(100vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s var(--ease-out);
  isolation: isolate;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.app-page .about-section,
.app-page .must-eats-section,
.app-page .news-section,
.app-page .map-section,
.app-page .newsletter-section {
  min-height: 100%;
}

.app-page:not([data-page="start"]) .hero,
.app-page:not([data-page="start"]) .hero-bg,
.app-page:not([data-page="start"]) .hero-overlay,
.app-page:not([data-page="start"]) .hero-content {
  display: none !important;
}

.app-page[data-page="start"] .hero {
  position: relative;
  z-index: 1;
}

.app-page[data-page="start"] {
  height: auto;
  min-height: calc(100vh - 60px - 70px);
}

/* ============================================
   APP FOOTER NAVIGATION (Mobile)
   ============================================ */
.app-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: var(--black);
  border-top: none;
  padding: 8px 0;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.app-footer-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.app-footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
}

.app-footer-item svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s var(--ease);
  stroke: rgba(255,255,255,0.6);
}

.app-footer-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
}

.app-footer-item.active {
  color: var(--orange);
}

.app-footer-item.active svg {
  stroke: var(--orange);
}

.app-footer-item:active svg {
  transform: scale(0.9);
}

@media (max-width: 767px) {
  .app-footer {
    display: block;
  }
  
  .app-page {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 70px;
    width: 100%;
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9990;
    flex: none;
  }
  
  .app-page.active {
    display: block;
    z-index: 9995;
  }
  
  .app-page[data-page="start"] .hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 130px);
    min-height: 400px;
  }
  
  .app-page[data-page="start"] .hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
  }
  
  .app-page[data-page="start"] .hero-slide {
    width: 100%;
    height: 100%;
  }
  
  .app-page[data-page="start"] .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    padding: 10vh 20px 12vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }
  
  .app-page[data-page="start"] .hero-logo {
    max-width: 520px;
    margin-bottom: 20px;
  }
  
  .app-page[data-page="start"] .hero-logo {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
  
  .app-page[data-page="start"] .hero-logo {
    max-width: 520px;
    margin-bottom: 12px;
  }
  
  .app-page[data-page="start"] .hero-tagline {
    font-size: 0.75rem;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2em;
  }
  
  .app-page[data-page="start"] .about-section {
    display: none;
  }
  
  /* Common header styles for all app pages */
  .app-page[data-page="musts"] .must-eats-header,
  .app-page[data-page="map"] .map-header,
  .app-page[data-page="newsletter"] .newsletter-inner,
  .app-page[data-page="news"] .news-header {
    padding: 16px;
    background: var(--white);
    text-align: left;
    border: none;
    margin: 0;
    display: block !important;
  }
  
  .app-page[data-page="musts"] .must-eats-title,
  .app-page[data-page="map"] .map-title,
  .app-page[data-page="news"] .news-title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    display: block !important;
  }
  
  .app-page[data-page="musts"] .section-label {
    color: var(--orange);
    margin-bottom: 6px;
    margin-top: 0;
    display: block !important;
    font-size: 10px !important;
  }
  
  .app-page[data-page="musts"] .must-eats-section {
    padding: 0;
  }
  
  .app-page[data-page="musts"] .must-eats-logo-img {
    max-width: 200px;
    display: block;
    margin: 0;
  }
  
  .app-page[data-page="musts"] .must-eats-subtitle,
  .app-page[data-page="map"] .map-subtitle,
  .app-page[data-page="news"] .news-subtitle {
    display: none;
  }

  .app-page.hidden {
    display: none;
  }
  
  .app-footer-item span {
    font-size: 9px;
  }
  
  /* Map page mobile */
  .app-page[data-page="map"] .map-section {
    padding: 0;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .app-page[data-page="map"] .map-filters {
    flex-shrink: 0;
  }
  
  .app-page[data-page="map"] .map-container {
    flex: 1;
    height: auto;
    min-height: 0;
  }
  
  .app-page[data-page="map"] .leaflet-container {
    height: 100%;
    min-height: 300px;
  }
  
  .app-page[data-page="map"] .leaflet-control-zoom {
    bottom: 110px !important;
    top: auto !important;
    right: 10px !important;
    left: auto !important;
    z-index: 500;
  }
  
  .app-page[data-page="map"] .map-location-btn-fixed {
    top: 10px;
    left: 10px;
    right: auto;
    background: var(--black);
    border: none;
  }
  
  .app-page[data-page="map"] .map-location-btn-fixed svg {
    stroke: var(--white);
  }
  
  /* News page - Magazine style */
  .app-page[data-page="news"] .news-section {
    padding: 0;
    background: var(--white);
  }
  
  .app-page[data-page="news"] .news-header {
    padding: 16px;
    background: var(--white);
    text-align: left;
  }
  
  .app-page[data-page="news"] .news-title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font);
  }
  
  .app-page[data-page="news"] .section-label {
    color: var(--orange);
    margin-bottom: 8px;
  }
  
  .app-page[data-page="news"] .news-subtitle {
    display: none;
  }
  
  .app-page[data-page="news"] .news-featured {
    margin: 0;
    padding: 0;
    background: var(--white);
  }
  
  .app-page[data-page="news"] .news-featured-img {
    height: auto;
    aspect-ratio: 16/10;
    margin: 0;
  }
  
  .app-page[data-page="news"] .news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .app-page[data-page="news"] .news-featured-body {
    padding: 16px;
  }
  
  .app-page[data-page="news"] .news-featured-badge {
    display: none;
  }
  
  .app-page[data-page="news"] .news-featured-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
  }
  
  .app-page[data-page="news"] .news-featured-headline {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font);
    line-height: 1.2;
    margin: 8px 0;
    color: var(--black);
  }
  
  .app-page[data-page="news"] .news-featured-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    font-family: var(--font);
  }
  
  .app-page[data-page="news"] .news-featured-meta {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 12px;
  }
  
  .app-page[data-page="news"] .news-grid {
    padding: 0;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .app-page[data-page="news"] .news-card {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid var(--gray-100);
    display: block;
  }
  
  .app-page[data-page="news"] .news-card-img {
    display: block;
    width: 100%;
    height: 180px;
    border: none;
    padding: 0;
    background: transparent;
  }
  
  .app-page[data-page="news"] .news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .app-page[data-page="news"] .news-card-body {
    padding: 16px;
  }
  
  .app-page[data-page="news"] .news-card-headline {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font);
    line-height: 1.3;
    color: var(--black);
  }
  
  .app-page[data-page="news"] .news-card-excerpt {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 8px;
    line-height: 1.4;
  }
  
  .app-page[data-page="news"] .news-card-top {
    margin-bottom: 6px;
  }
  
  .app-page[data-page="news"] .news-card-category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
  }
  
  .app-page[data-page="news"] .news-card-date {
    font-size: 11px;
    color: var(--gray-400);
  }
  
  .app-page[data-page="newsletter"] .newsletter-section {
    padding: 16px;
  }
  
  .app-page[data-page="newsletter"] .newsletter-inner {
    padding: 0;
    text-align: left;
  }
  
  .app-page[data-page="newsletter"] .newsletter-title {
    font-size: 1.5rem;
  }
  
  .app-page[data-page="newsletter"] .pricing-section {
    padding: 24px 16px;
  }
}

/* ============================================
   LOGIN MODAL
   ============================================ */
.login-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.login-modal.active {
  display: flex;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.login-modal-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
}

.login-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.login-modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
}

.login-modal-close:hover {
  background: var(--gray-200);
}

.login-logo {
  margin-bottom: 16px;
}

.login-logo img {
  width: 180px;
  height: auto;
  margin: 0 auto;
}

.login-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 8px;
}

.login-subtitle {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.5;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font);
  background: var(--white);
  transition: border-color 0.2s;
}

.login-field input:focus {
  outline: none;
  border-color: var(--orange);
}

.login-field input::placeholder {
  color: var(--gray-400);
}

.login-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

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

.login-btn-primary:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}

.login-btn-primary svg {
  transition: transform 0.2s;
}

.login-btn-primary:hover svg {
  transform: translateX(4px);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--gray-400);
  font-size: 0.85rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.login-btn-google {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  margin-bottom: 12px;
}

.login-btn-google:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.login-btn-apple {
  background: var(--black);
  color: var(--white);
  margin-top: 4px;
}

.login-btn-apple:hover {
  background: var(--gray-800);
}

.login-terms {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.login-terms a {
  color: var(--black);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .login-modal-content {
    width: 95%;
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .login-logo img {
    width: 100px;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
}
