/* ─── RESET & ROOT ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F0EAD8;
  --cream-bg: #F9F6F1;
  --black:    #000000;
  --dark:     #1A1A1A;
  --mid:      #4A4A4A;
  --muted:    #8E8E93;
  --border:   #EBEBEB;
  --surface:  #F5F5F5;
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 60px;
}

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
/* .site-nav only — never bare "nav" so breadcrumb nav isn't affected */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(235,235,235,0.9);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-espresso { height: 22px; width: auto; display: block; }
.nav-logo-img { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-btn {
  background: var(--black); color: white; border: none;
  border-radius: 100px; padding: 9px 18px;
  font-size: 13.5px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: opacity 0.15s, transform 0.15s;
}
.nav-btn:hover { opacity: 0.82; transform: translateY(-1px); }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--cream-bg);
  border-top: 1px solid var(--border);
  padding: 52px 40px 36px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; gap: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 200px; }
.footer-cols { display: flex; gap: 52px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--mid); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--dark); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ─── BREADCRUMB ────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
  max-width: 1280px; margin: 0 auto;
  padding: 20px 40px 0;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--dark); text-decoration: underline; }
.breadcrumb-sep { color: var(--border); user-select: none; }
.breadcrumb-current { color: var(--mid); }

/* ─── EXPLORE HERO ──────────────────────────────────────────────────────────── */
.explore-hero {
  background: var(--cream-bg);
  border-bottom: 1px solid var(--border);
  padding: 72px 60px 64px;
  overflow: hidden;
}
.explore-hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 56px;
}
.explore-hero-text { flex: 1; min-width: 0; }
.explore-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cream); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--dark);
}
.explore-hero-text h1 {
  font-size: 52px; font-weight: 800;
  letter-spacing: -1.6px; line-height: 1.08;
  color: var(--dark); margin-bottom: 18px;
}
.explore-hero-text p {
  font-size: 17px; line-height: 1.7;
  color: var(--mid); max-width: 400px;
}

/* Photo mosaic on the right side of the hero */
.explore-hero-photos {
  display: grid;
  grid-template-columns: repeat(2, 148px);
  grid-template-rows: repeat(2, 148px);
  gap: 10px;
  flex-shrink: 0;
}
.explore-hero-photos img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
/* First photo spans two rows for visual variety */
.explore-hero-photos img:first-child {
  grid-row: span 2;
  height: 100%;
}

/* ─── EXPLORE BODY ──────────────────────────────────────────────────────────── */
.explore-body {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 40px 88px;
}

/* ─── CITY PILLS — horizontal scroll, never wraps ──────────────────────────── */
.explore-cities {
  display: flex; flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.explore-cities::-webkit-scrollbar { display: none; }
.city-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13.5px; font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  background: var(--white);
}
.city-pill:hover { border-color: var(--dark); color: var(--dark); }
.city-pill-active {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}
.city-pill-active:hover { opacity: 0.88; }
.city-pill-count {
  font-weight: 400;
  opacity: 0.6;
  font-size: 12.5px;
}

/* ─── SHOP COUNT ────────────────────────────────────────────────────────────── */
.shop-count {
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ─── SHOP GRID ─────────────────────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── SHOP CARD ─────────────────────────────────────────────────────────────── */
.shop-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.18s, transform 0.18s;
}
.shop-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.shop-card-link { display: block; text-decoration: none; color: inherit; }
.shop-card-photo {
  position: relative;
  width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #F0EAD8 0%, #E2D4B8 100%);
}
.shop-card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.28s ease;
}
.shop-card:hover .shop-card-img { transform: scale(1.04); }
.shop-card-photo-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #F0EAD8 0%, #E2D4B8 100%);
  display: flex; align-items: center; justify-content: center;
}
.shop-card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px; z-index: 2;
}
.badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-new { background: var(--dark); color: var(--white); }
.shop-card-body { padding: 14px 16px 16px; }
.shop-name-row { display: flex; align-items: center; gap: 7px; margin-bottom: 4px; }
.shop-card-name { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.shop-card-location { font-size: 13px; color: var(--muted); margin-bottom: 8px; line-height: 1.4; }
.shop-multi-locations {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 500; color: var(--muted);
  margin-bottom: 8px;
}
.vibe-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.vibe-tag {
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--surface);
  font-size: 11.5px; font-weight: 500;
  color: var(--mid);
}

/* ─── VERIFIED BADGE (seal / scallop style matching the app) ────────────────── */
.verified-badge {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: default;
  line-height: 1;
}
.verified-badge svg { display: block; }
.verified-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--dark); color: var(--white);
  font-size: 12px; font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  pointer-events: none;
  z-index: 20;
  width: 240px; text-align: center;
  transition: opacity 0.15s;
  white-space: normal;
}
.verified-badge:hover .verified-tooltip,
.verified-badge:focus .verified-tooltip {
  visibility: visible; opacity: 1;
}

/* ─── SHOP DETAIL PAGE ──────────────────────────────────────────────────────── */
.shop-detail-hero {
  width: 100%; height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #F0EAD8 0%, #E2D4B8 100%);
}
.shop-detail-hero img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.shop-detail-wrap {
  max-width: 820px; margin: 0 auto;
  padding: 0 40px 88px;
}
.shop-detail-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.shop-detail-title-block { flex: 1; min-width: 0; }
.shop-detail-name {
  font-size: 38px; font-weight: 800;
  letter-spacing: -0.9px; line-height: 1.1;
  color: var(--dark); margin-bottom: 10px;
}
.shop-detail-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.shop-detail-address { font-size: 14px; color: var(--mid); line-height: 1.55; }
.shop-detail-tagline {
  font-size: 16px; color: var(--mid);
  line-height: 1.55; margin-top: 8px;
  font-style: italic;
}
.shop-detail-city-tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  background: var(--surface);
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  color: var(--mid);
  text-decoration: none;
}
.shop-detail-city-tag:hover { background: var(--border); color: var(--dark); }
.directions-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  border-radius: 100px; padding: 13px 24px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer; border: none; font-family: 'Inter', sans-serif;
}
.directions-btn:hover { opacity: 0.82; transform: translateY(-1px); }
.shop-detail-section { margin-bottom: 40px; }
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.shop-info-list { display: flex; flex-direction: column; gap: 14px; }
.shop-info-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--mid); line-height: 1.55;
}
.shop-info-icon { flex-shrink: 0; color: var(--muted); margin-top: 1px; }
.shop-info-row a { color: var(--dark); text-decoration: none; }
.shop-info-row a:hover { text-decoration: underline; }
.shop-amenities { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--mid); background: var(--white);
}
.vibe-description {
  font-size: 16px; line-height: 1.75;
  color: var(--mid);
}
.signature-drinks-list { display: flex; flex-direction: column; gap: 14px; }
.signature-drink-card {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  gap: 16px;
  background: var(--white);
}
.drink-info { flex: 1; min-width: 0; }
.drink-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.drink-type {
  font-size: 11.5px; font-weight: 500; color: var(--muted);
  text-transform: capitalize; letter-spacing: 0.02em; margin-bottom: 5px;
}
.drink-desc { font-size: 13px; color: var(--mid); line-height: 1.55; }
.drink-price { font-size: 15px; font-weight: 600; color: var(--dark); flex-shrink: 0; }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.photo-gallery img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px; display: block;
}

/* ─── MAP EMBED ─────────────────────────────────────────────────────────────── */
.map-embed { border-radius: 12px; overflow: hidden; }
.map-embed iframe { border-radius: 12px; }

/* ─── OTHER LOCATIONS ───────────────────────────────────────────────────────── */
.other-locations-list { display: flex; flex-direction: column; gap: 12px; }
.other-location-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.other-location-row:hover { background: var(--surface); }
.other-location-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.other-location-address { font-size: 13px; color: var(--muted); margin-top: 2px; }
.other-location-arrow { color: var(--muted); flex-shrink: 0; }

/* ─── RELATED SHOPS ─────────────────────────────────────────────────────────── */
.related-shops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ─── SHOP CTA ──────────────────────────────────────────────────────────────── */
.shop-cta {
  background: var(--cream-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  text-align: center;
  margin-top: 52px;
}
.shop-cta h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.shop-cta p {
  font-size: 15px; color: var(--mid);
  margin-bottom: 20px; line-height: 1.65;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--black); color: white;
  border-radius: 100px; padding: 13px 26px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: opacity 0.15s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.82; transform: translateY(-1px); }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .related-shops-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .explore-hero { padding: 60px 40px 52px; }
  .explore-hero-photos { grid-template-columns: repeat(2, 120px); grid-template-rows: repeat(2, 120px); }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer { padding: 40px 20px 28px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { flex-wrap: wrap; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .breadcrumb { padding: 16px 24px 0; }
  .explore-hero { padding: 52px 24px 44px; }
  .explore-hero-inner { flex-direction: column; gap: 32px; }
  .explore-hero-text h1 { font-size: 36px; }
  .explore-hero-text p { max-width: none; }
  .explore-hero-photos { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; width: 100%; max-width: 320px; }
  .explore-hero-photos img { height: 120px; }
  .explore-hero-photos img:first-child { grid-row: span 1; height: 120px; }
  .explore-body { padding: 36px 24px 60px; }
  .shop-detail-wrap { padding: 0 24px 60px; }
  .shop-detail-hero { height: 240px; }
  .shop-detail-name { font-size: 28px; }
  .shop-detail-header { flex-direction: column; gap: 16px; }
  .shop-cta { padding: 24px 20px; }
  .related-shops-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; }
  .explore-hero-photos { display: none; }
}
@media (max-width: 480px) {
  .site-nav { padding: 0 16px; }
  footer { padding: 32px 16px 24px; }
  .footer-cols { gap: 20px; }
  .explore-hero { padding: 48px 18px 40px; }
  .explore-hero-text h1 { font-size: 30px; }
  .shop-detail-hero { height: 200px; }
}
