/* ===== city-pages.css — Shared styles for all city landing pages ===== */
/* These variables must match the parent site design tokens */

:root {
  --background: hsl(0, 0%, 4%);
  --foreground: hsl(43, 30%, 90%);
  --card: hsl(0, 0%, 7%);
  --card-hover: hsl(0, 0%, 9%);
  --border: hsl(0, 0%, 13%);
  --muted-foreground: hsl(43, 10%, 60%);
  --gold: hsl(43, 56%, 52%);
  --gold-light: hsl(43, 66%, 62%);
  --secondary: hsl(0, 0%, 10%);
  --radius: 0.75rem;
  --input-bg: hsl(0, 0%, 9%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== Utility ===== */
.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: hsla(0, 0%, 4%, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid hsla(0, 0%, 16%, 0.5);
  box-shadow: 0 10px 40px hsla(0, 0%, 4%, 0.2);
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 210px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-img {
    height: 200px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.3s;
  position: relative;
}

.nav-btn:hover {
  background: var(--secondary);
}

.nav-btn svg {
  width: 18px;
  height: 18px;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.nav-btn:hover svg {
  color: var(--foreground);
}

.nav-btn.account-btn {
  display: none;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-foreground);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn {
  display: flex;
}

.menu-btn svg {
  width: 20px;
  height: 20px;
}

/* Search Dropdown */
.search-dropdown {
  position: absolute;
  right: 0;
  top: 3rem;
  width: 18rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: hsla(0, 0%, 7%, 0.95);
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: none;
}

.search-dropdown.open {
  display: block;
}

.search-dropdown input {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: hsla(0, 0%, 12%, 0.5);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s;
}

.search-dropdown input::placeholder {
  color: var(--muted-foreground);
}

.search-dropdown input:focus {
  border-color: hsla(43, 56%, 52%, 0.5);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  border-top: 1px solid hsla(0, 0%, 16%, 0.5);
  background: hsla(0, 0%, 4%, 0.95);
  backdrop-filter: blur(24px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background: var(--secondary);
  color: var(--foreground);
}

/* ===== Desktop Navbar ===== */
@media (min-width: 768px) {
  .navbar-inner {
    height: 5rem;
    padding: 0 2rem;
  }

  .nav-links {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* ===== Cart Sidebar (matches existing site) ===== */
.cart-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  backdrop-filter: blur(4px);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--card);
  border-left: 1px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.cart-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
}

.cart-header-left h2 {
  font-size: 1.1rem;
  margin: 0;
}

.cart-count-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 0.5rem;
}

.cart-close:hover {
  color: var(--foreground);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* ===== Buttons ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 163, 74, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: var(--card);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Breadcrumb ===== */
.city-breadcrumb {
  padding: 5.5rem 1rem 0;
  max-width: 80rem;
  margin: 0 auto;
}

.city-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.city-breadcrumb a {
  color: var(--muted-foreground);
  text-decoration: none;
}

.city-breadcrumb a:hover {
  color: var(--gold);
}

/* ===== City Hero ===== */
.city-hero {
  padding: 3rem 1rem 4rem;
  background: linear-gradient(160deg, hsl(0, 0%, 6%) 0%, hsl(0, 0%, 4%) 100%);
  border-bottom: 1px solid var(--border);
}

.city-hero-inner {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: hsla(43, 56%, 52%, 0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid hsla(43, 56%, 52%, 0.25);
  margin-bottom: 1.25rem;
}

.city-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .city-hero h1 {
    font-size: 3rem;
  }
}

.city-hero-subtitle {
  color: var(--muted-foreground);
  font-size: 1rem;
  max-width: 46rem;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

.city-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.city-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* ===== Highlights Strip ===== */
.city-highlights {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 1rem;
}

.city-highlights-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .city-highlights-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-highlights-inner {
    grid-template-columns: repeat(5, 1fr);
  }
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.highlight-card p {
  font-size: 0.775rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin: 0;
}

/* ===== Sections ===== */
.city-section {
  padding: 3.5rem 1rem;
}

.city-section.alt-bg {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.city-section-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.city-section-inner h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.city-section-intro {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.city-link {
  color: var(--gold);
  text-decoration: none;
}

.city-link:hover {
  text-decoration: underline;
}

/* ===== Product Cards ===== */
.city-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .city-products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.city-product-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.city-product-card:hover {
  border-color: hsla(43, 56%, 52%, 0.4);
  transform: translateY(-2px);
}

.city-product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.city-product-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== Neighbourhood Tags ===== */
.neighbourhood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.neighbourhood-tag {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ===== Compliance ===== */
.compliance-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: transparent;
}

.compliance-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.compliance-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.compliance-block p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}

.faq-item summary:hover {
  background: var(--card-hover);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== Nearby Cities ===== */
.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.city-pill {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.city-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: hsla(43, 56%, 52%, 0.08);
}

/* ===== Final CTA Section ===== */
.city-cta-section {
  padding: 4rem 1rem;
  background: linear-gradient(160deg, hsl(0, 0%, 6%) 0%, hsl(0, 0%, 4%) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.city-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.city-cta-section p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: var(--card);
  padding-bottom: 0;
  overflow: hidden;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact a svg {
  width: 16px;
  height: 16px;
}

.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
}

.compliance-banner {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid hsla(0, 0%, 16%, 0.5);
  background: hsla(0, 0%, 12%, 0.3);
}

.compliance-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.compliance-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsla(43, 56%, 52%, 0.1);
}

.compliance-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.compliance-inner .title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.compliance-inner .text {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.compliance-inner .text a {
  color: var(--gold);
}

.compliance-inner .text a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid hsla(0, 0%, 16%, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Mobile: center footer brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  align-self: start;
}

.footer-brand .logo {
  justify-content: center;
}

.footer-brand .footer-contact {
  align-items: center;
}

.footer-col {
  text-align: center;
}

.footer-col ul {
  align-items: center;
}

/* Desktop: left-align footer brand */
@media (min-width: 768px) {
  .footer-inner {
    padding: 2rem 2rem 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand .logo {
    justify-content: flex-start;
  }

  .footer-brand .footer-contact {
    align-items: flex-start;
  }

  .footer-col {
    text-align: left;
  }

  .footer-col ul {
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: start;
  }
}

/* ===== Sticky Bar ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: hsla(0, 0%, 4%, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

.sticky-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: background 0.2s;
}

.sticky-call:hover {
  background: hsla(43, 56%, 52%, 0.12);
}

.sticky-checkout {
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
}

/* Bottom padding for sticky bar */
body {
  padding-bottom: 4.5rem;
}