/* ===================================================================
   Go Menu Theme — Main Stylesheet
   =================================================================== */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --primary:        #AA210F;
  --primary-dark:   #8B1A0B;
  --primary-light:  #C9392A;
  --primary-bg:     #FDF2F0;
  --secondary:      #41403C;
  --secondary-dark: #1A1917;
  --accent:         #D08856;
  --accent-dark:    #B06E3D;
  --accent-light:   #E0A878;
  --accent-bg:      #FBF5EF;
  --success:        #22C55E;
  --warning:        #F59E0B;
  --danger:         #EF4444;
  --white:          #FFFFFF;
  --light:          #EDEFEE;
  --light-2:        #E5E7E6;
  --border:         #DCDEDD;
  --border-dark:    #C8CACA;
  --text:           #2A2927;
  --text-secondary: #625F5A;
  --text-muted:     #9B9890;
  --shadow-xs:      0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;
  --transition:     0.25s cubic-bezier(0.4,0,0.2,1);
  --header-h:       70px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(170,33,15,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}
.site-logo { flex-shrink: 0; }
.header-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.primary-nav { flex: 1; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu li a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--primary);
  background: var(--primary-bg);
}
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile toggle */
.mobile-menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: var(--radius-sm); }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ──────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #2D1B4E 50%, #1A3A5C 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65,64,60,0.88) 0%, rgba(170,33,15,0.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-weight: 400;
}

/* Hero search */
.hero-search { width: 100%; max-width: 580px; margin: 0 auto 36px; }
.search-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-xl);
  gap: 12px;
}
.search-icon { color: var(--text-muted); flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn { border-radius: var(--radius-full); padding: 10px 24px; }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255,255,255,0.85);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.8px; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

/* ── Store Type Pills ──────────────────────────────────────────── */
.store-types-section { padding: 24px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.store-type-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--light);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.pill:hover { color: var(--primary); background: var(--primary-bg); border-color: var(--primary); }
.pill-active { color: var(--white) !important; background: var(--primary) !important; border-color: var(--primary) !important; }

/* ── Section Layout ────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-header.centered { justify-content: center; flex-direction: column; text-align: center; gap: 8px; }
.section-title { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--text); }
.section-desc { color: var(--text-secondary); max-width: 480px; }
.section-link { font-size: 14px; font-weight: 600; color: var(--primary); }
.section-link:hover { text-decoration: underline; }

.featured-section   { padding: 60px 0 40px; }
.all-stores-section { padding: 40px 0 60px; background: var(--light); }

/* ── Cuisine Chips ─────────────────────────────────────────────── */
.cuisine-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  background: var(--white);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip-active { background: var(--primary); color: var(--white) !important; border-color: var(--primary) !important; }

/* ── Store Cards ───────────────────────────────────────────────── */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.stores-grid-featured {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.store-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.store-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.store-card-featured { border: 2px solid var(--primary); }

.store-card-image-link { display: block; }
.store-card-image {
  height: 200px;
  background: var(--light-2) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  background-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.store-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
}
.store-card-image:not([style*="background-image"]) {
  background: linear-gradient(135deg, #AA210F 0%, #8B1A0B 100%);
}

.card-badge {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.card-badge-featured { left: 12px; background: var(--accent); color: var(--secondary); }
.card-badge-status { right: 12px; }
.badge-open { background: var(--success); color: var(--white); }
.badge-closed { background: rgba(0,0,0,0.55); color: var(--white); }

.card-logo {
  position: absolute;
  bottom: -18px;
  left: 16px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  border: 3px solid var(--white);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.card-logo img { width: 100%; height: 100%; object-fit: cover; }

.store-card-body {
  padding: 28px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.store-card-type { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.store-card-type .divider { margin: 0 4px; }
.store-card-title { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.store-card-title a { color: var(--text); }
.store-card-title a:hover { color: var(--primary); }
.store-card-tagline { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

.store-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.store-card-address,
.store-card-items {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.store-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  transition: gap var(--transition);
}
.store-card-cta:hover { gap: 10px; color: var(--primary-dark); }

/* View toggle */
.store-view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--light);
  transition: all var(--transition);
}
.view-btn:hover { color: var(--primary); background: var(--primary-bg); }
.view-btn-active { color: var(--primary); background: var(--primary-bg); }

/* List view */
.stores-grid.list-view { grid-template-columns: 1fr; }
.stores-grid.list-view .store-card { flex-direction: row; }
.stores-grid.list-view .store-card-image-link { width: 220px; flex-shrink: 0; }
.stores-grid.list-view .store-card-image { height: 100%; min-height: 150px; }

/* ── How It Works ──────────────────────────────────────────────── */
.how-it-works-section { padding: 80px 0; background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--light);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.step-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon-1 { background: linear-gradient(135deg, #FDF2F0, #F5D0CB); color: var(--primary); }
.step-icon-2 { background: linear-gradient(135deg, #FBF5EF, #F2DFC8); color: var(--accent-dark); }
.step-icon-3 { background: linear-gradient(135deg, #FFF7ED, #FED7AA); color: var(--accent); }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.how-cta { text-align: center; display: flex; gap: 12px; justify-content: center; }

/* ── Archive page ──────────────────────────────────────────────── */
.archive-header { padding: 48px 0 32px; background: linear-gradient(135deg, var(--secondary) 0%, #1A3A5C 100%); color: var(--white); }
.archive-title { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; }
.archive-desc { opacity: 0.75; margin-top: 8px; }
.archive-body { padding: 36px 24px 60px; }

.archive-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-left, .filter-right { display: flex; gap: 10px; flex-wrap: wrap; }
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  min-width: 260px;
}
.search-box svg { color: var(--text-muted); flex-shrink: 0; }
.search-box input { border: none; outline: none; background: transparent; font-size: 14px; width: 100%; }
.filter-select {
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.filter-select:focus { border-color: var(--primary); }
.results-info { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ── Single Store Page ─────────────────────────────────────────── */
.store-hero { background: var(--secondary); }
.store-banner {
  height: 260px;
  background: linear-gradient(135deg, var(--secondary), #2D1B4E) center/cover no-repeat;
  position: relative;
}
.store-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }

.store-identity {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 20px 0 28px;
  flex-wrap: wrap;
}
.store-logo-wrap { flex-shrink: 0; margin-top: -50px; }
.store-logo-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.store-logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-transform: uppercase;
}

.store-identity-info { flex: 1; min-width: 200px; }
.store-badges { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-open    { background: #DCFCE7; color: #15803D; }
.badge-closed  { background: #FEE2E2; color: #B91C1C; }
.badge-featured { background: linear-gradient(135deg, var(--accent), #F97316); color: var(--white); }

.store-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.store-tagline { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 4px; }
.store-meta-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.meta-tag {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.meta-tag:hover { background: rgba(255,255,255,0.25); color: var(--white); }
.meta-tag-cuisine { background: rgba(170,33,15,0.3); border-color: rgba(170,33,15,0.5); }

.store-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }

/* Store info bar */
.store-info-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.info-bar-grid {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.info-bar-item svg { color: var(--primary); flex-shrink: 0; }
.text-closed { color: var(--danger); font-weight: 600; }
.hours-toggle {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-left: 4px;
}

.all-hours-panel {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.hours-today { font-weight: 700; color: var(--primary); }
.hours-day { color: var(--text); font-weight: 500; }
.hours-time { color: var(--text-secondary); }

/* Menu layout */
.store-menu-section { padding: 40px 0 60px; background: var(--light); }
.menu-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

/* Category sidebar */
.menu-sidebar-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sticky-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.category-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.cat-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.cat-nav-item:hover { background: var(--light); color: var(--text); }
.cat-nav-active { background: var(--primary-bg) !important; color: var(--primary) !important; font-weight: 600; }
.cat-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--light-2);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}
.cat-nav-active .cat-count { background: var(--primary); color: var(--white); }

/* QR code */
.menu-qr {
  text-align: center;
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.menu-qr p { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; font-weight: 600; }
.store-qr { text-align: center; }
.store-qr img { margin: 0 auto 6px; border-radius: var(--radius-sm); }
.store-qr p { font-size: 11px; color: var(--text-muted); }

.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: var(--light);
  border-radius: var(--radius);
  word-break: break-all;
}

/* Menu main */
.menu-main { min-width: 0; }
.menu-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}
.menu-search-bar svg { color: var(--text-muted); flex-shrink: 0; }
.menu-search-bar input { flex: 1; border: none; outline: none; font-size: 14px; background: transparent; color: var(--text); }

.menu-category-section { margin-bottom: 44px; }
.menu-category-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

/* Menu items grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* Menu item card */
.menu-item-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-item-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: transparent; }
.menu-item-featured { border-color: var(--accent); }
.menu-item-unavailable { opacity: 0.55; }

.menu-item-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-item-card:hover .menu-item-image img { transform: scale(1.04); }
.item-unavailable-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-item-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.menu-item-name { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; flex: 1; }
.menu-item-price { flex-shrink: 0; text-align: right; }
.price-current { font-size: 1rem; font-weight: 800; color: var(--primary); display: block; }
.price-old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; display: block; }
.menu-item-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; flex: 1; }

.menu-item-footer { margin-top: auto; }
.menu-item-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.item-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-veg     { background: #DCFCE7; color: #15803D; }
.badge-vegan   { background: #D1FAE5; color: #065F46; }
.badge-spicy   { background: #FEF3C7; color: #B45309; }
.badge-calories { background: var(--light); color: var(--text-muted); }

.menu-item-allergens { font-size: 11px; color: var(--text-muted); margin-top: 6px; line-height: 1.4; }

/* Empty states */
.empty-menu {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.empty-menu svg { margin: 0 auto 20px; opacity: 0.3; }
.empty-menu h3 { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 8px; }
.empty-menu p { font-size: 14px; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.empty-state svg { margin: 0 auto 20px; opacity: 0.3; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-secondary); }

/* Store about */
.store-about-section { padding: 60px 0; background: var(--white); }
.store-about { max-width: 800px; }
.store-about h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 20px; }
.store-description { font-size: 15px; line-height: 1.8; color: var(--text-secondary); }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.75); margin-top: auto; }
.footer-top { padding: 60px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
}
.footer-brand {}
.footer-logo { height: 38px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }

.footer-col-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links li a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.footer-contact li svg { flex-shrink: 0; color: var(--primary-light); }
.footer-contact li a { color: rgba(255,255,255,0.65); }
.footer-contact li a:hover { color: var(--white); }

.footer-app-cta { margin-top: 20px; padding: 16px; background: rgba(255,255,255,0.06); border-radius: var(--radius); }
.footer-app-cta p { font-size: 13px; margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 13px; }
.footer-copy a { color: rgba(255,255,255,0.65); }
.footer-copy a:hover { color: var(--white); }
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── Pagination ────────────────────────────────────────────────── */
.pagination-wrap { margin-top: 40px; display: flex; justify-content: center; }
.page-numbers {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.page-numbers a,
.page-numbers span {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.page-numbers a:hover { color: var(--primary); border-color: var(--primary); }
.page-numbers .current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ── 404 ───────────────────────────────────────────────────────── */
.error-404 { text-align: center; padding: 100px 24px; }
.error-code { font-size: 7rem; font-weight: 800; color: var(--primary); line-height: 1; font-family: 'Poppins', sans-serif; }
.error-404 h1 { font-size: 1.6rem; margin: 16px 0 12px; }
.error-404 p { color: var(--text-secondary); margin-bottom: 32px; }
.error-404 .btn + .btn { margin-left: 12px; }

/* ── Generic page / content ────────────────────────────────────── */
.content-area { padding: 60px 24px; }
.page-header { margin-bottom: 32px; }
.page-title { font-size: 2rem; font-weight: 700; }
.page-body { max-width: 800px; font-size: 16px; line-height: 1.8; }
.page-body h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.page-body p { margin-bottom: 16px; color: var(--text-secondary); }

/* ── Loading spinner ───────────────────────────────────────────── */
.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 60px;
  grid-column: 1 / -1;
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Toast notification ────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--secondary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.toast-success { border-left: 4px solid var(--success); }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .menu-layout { grid-template-columns: 220px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .primary-nav,
  .header-actions .btn-outline { display: none; }
  .mobile-menu-toggle { display: flex; }

  .primary-nav.is-open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
  }
  .primary-nav.is-open .nav-menu { flex-direction: column; gap: 4px; }
  .primary-nav.is-open .nav-menu li a { font-size: 16px; padding: 12px 16px; }

  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }

  .stores-grid { grid-template-columns: 1fr; }
  .stores-grid-featured { grid-template-columns: 1fr; }
  .stores-grid.list-view .store-card { flex-direction: column; }
  .stores-grid.list-view .store-card-image-link { width: 100%; }

  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { order: 2; }
  .menu-main { order: 1; }
  .sticky-sidebar { position: static; }
  .category-nav { flex-direction: row; flex-wrap: wrap; gap: 6px; overflow-x: auto; }
  .cat-nav-item { white-space: nowrap; }

  .store-identity { flex-direction: column; align-items: flex-start; }
  .store-actions { width: 100%; }
  .store-actions .btn { flex: 1; justify-content: center; }

  .info-bar-grid { flex-direction: column; align-items: flex-start; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .archive-filters { flex-direction: column; }
  .filter-left, .filter-right { width: 100%; }
  .search-box { min-width: unset; width: 100%; }

  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats .stat-sep { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .search-wrap { flex-direction: column; border-radius: var(--radius-lg); padding: 12px; }
  .search-btn { width: 100%; justify-content: center; }
  .search-input { text-align: center; }
  .store-card-image { height: 170px; }
  .menu-items-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE — Marketing Sections
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Shared section utilities ──────────────────────────────────────────── */
.hp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.hp-section-label {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.hp-section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.hp-section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.hp-section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Button extras ──────────────────────────────────────────────────────── */
.btn-xl {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-full);
}
.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}
.btn-outline-dark {
  color: var(--text);
  border-color: var(--border-dark);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--light);
  color: var(--text);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary-bg);
  color: var(--primary-dark);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── Header CTA ─────────────────────────────────────────────────────────── */
.header-cta { margin-left: auto; padding-right: 12px; }
.header-cta .btn { font-size: 13px; padding: 8px 18px; }

/* ── HP Hero ─────────────────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, var(--primary-bg) 55%, var(--accent-bg) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hp-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(170,33,15,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hp-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(208,136,86,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hp-hero__overlay { display: none; }
.hp-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  color: var(--primary);
  border: 1px solid rgba(170,33,15,0.2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.hp-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hp-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hp-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hp-hero__trust-line {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 52px;
}
.hp-hero__trust-line strong { color: var(--text-secondary); }

/* Trust bar */
.hp-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.hp-trust-item:last-child { border-right: none; }
.hp-trust-item svg { opacity: 0.65; flex-shrink: 0; color: var(--primary); }

/* ── HP How It Works ─────────────────────────────────────────────────────── */
.hp-hiw {
  padding: 100px 0;
  background: var(--white);
}
.hp-hiw__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.hp-hiw__connector {
  padding-top: 56px;
  flex-shrink: 0;
}
.hp-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 16px;
}
.hp-step__num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.hp-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.hp-step__icon--1 { background: var(--primary-bg); color: var(--primary); }
.hp-step__icon--2 { background: var(--accent-bg); color: var(--accent-dark); }
.hp-step__icon--3 { background: var(--light-2); color: var(--secondary); }
.hp-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.hp-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── HP Benefits ─────────────────────────────────────────────────────────── */
.hp-benefits {
  padding: 100px 0;
  background: var(--light);
}
.hp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.hp-benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.hp-benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ic);
  color: var(--is);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.hp-benefit-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.hp-benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── HP Testimonials ─────────────────────────────────────────────────────── */
.hp-testimonials {
  padding: 100px 0;
  background: var(--white);
}
.hp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.hp-testi-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.hp-testi-card--featured {
  background: var(--primary);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.hp-testi-card__stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hp-testi-card--featured .hp-testi-card__stars { color: #FFE066; }
.hp-testi-card blockquote {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.hp-testi-card--featured blockquote { color: rgba(255,255,255,0.9); }
.hp-testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hp-testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.hp-testi-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.hp-testi-card--featured .hp-testi-card__author strong { color: var(--white); }
.hp-testi-card__author span {
  font-size: 12px;
  color: var(--text-muted);
}
.hp-testi-card--featured .hp-testi-card__author span { color: rgba(255,255,255,0.65); }

/* ── HP Pricing ──────────────────────────────────────────────────────────── */
.hp-pricing {
  padding: 100px 0;
  background: var(--light);
}
.hp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.hp-plan {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.hp-plan:hover { box-shadow: var(--shadow-md); }
.hp-plan__header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hp-plan__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.hp-plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.hp-plan__amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hp-plan__period { font-size: 13px; color: var(--text-muted); }
.hp-plan__annual {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.hp-plan__tagline { font-size: 13px; color: var(--text-secondary); }
.hp-plan__features {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.hp-plan__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.hp-plan__features li svg { flex-shrink: 0; }
.hp-plan .btn { margin: 0 28px 28px; width: calc(100% - 56px); }
.hp-pricing__note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-muted);
}
.hp-pricing__note a { color: var(--primary); }

/* ── HP Callout Banner ───────────────────────────────────────────────────── */
.hp-callout {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.hp-callout__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 48px 56px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hp-callout__icon { font-size: 3rem; flex-shrink: 0; }
.hp-callout__text { flex: 1; min-width: 280px; }
.hp-callout__text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.hp-callout__text p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.7;
}
.hp-callout__text strong { color: var(--white); }
.hp-callout__btn { flex-shrink: 0; white-space: nowrap; }

/* ── HP FAQ ──────────────────────────────────────────────────────────────── */
.hp-faq {
  padding: 100px 0;
  background: var(--white);
}
.hp-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hp-faq__item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.hp-faq__item[open] { border-color: var(--primary); }
.hp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.hp-faq__q::-webkit-details-marker { display: none; }
.hp-faq__q:hover { color: var(--primary); }
.hp-faq__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.hp-faq__item[open] .hp-faq__arrow { transform: rotate(180deg); color: var(--primary); }
.hp-faq__a {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
  animation: faqFadeIn 0.2s ease;
}
.hp-faq__a p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-top: 16px;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HP Final CTA ────────────────────────────────────────────────────────── */
.hp-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}
.hp-final-cta__inner { max-width: 640px; margin: 0 auto; }
.hp-final-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hp-final-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hp-final-cta__btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hp-final-cta__note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

/* ═══ Homepage Responsive ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hp-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-pricing__grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hp-testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hp-testi-card--featured { transform: scale(1); }
}

@media (max-width: 768px) {
  .hp-hero { padding: 72px 0 56px; }
  .hp-hiw__steps { flex-direction: column; align-items: center; gap: 32px; }
  .hp-hiw__connector { display: none; }
  .hp-step { max-width: 100%; }
  .hp-benefits__grid { grid-template-columns: 1fr; }
  .hp-callout__inner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .hp-trust-bar { gap: 0; }
  .hp-trust-item { padding: 8px 14px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hp-trust-item:last-child { border-bottom: none; }
  .header-cta { display: none; }
}

@media (max-width: 480px) {
  .hp-hero__title { font-size: 1.9rem; }
  .hp-hero__ctas { flex-direction: column; align-items: center; }
  .hp-final-cta__btns { flex-direction: column; align-items: center; }
  .hp-plan .btn { margin: 0 20px 20px; width: calc(100% - 40px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONVERSION UPGRADE — New sections
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero split layout ──────────────────────────────────────────────────── */
.hp-hero__inner { text-align: center; }
.hp-hero__inner--split {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
  padding-bottom: 60px;
}
.hp-hero__copy { flex: 1; min-width: 0; }
.hp-hero__inner--split .hp-hero__pill { display: inline-flex; }
.hp-hero__inner--split .hp-hero__ctas { justify-content: flex-start; }
.hp-hero__inner--split .hp-hero__trust-line { text-align: left; }
.hp-hero__visual {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-hero__img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* ── Dotted background shape ─────────────────────────────────────────────── */
.hp-vis-dots {
  position: absolute;
  inset: 8% 4% 8% 4%;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background-image: radial-gradient(circle, #AA210F 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.13;
  z-index: 0;
}

/* ── "It's Free!" dashed badge ───────────────────────────────────────────── */
.hp-free-badge {
  position: absolute;
  top: 10px;
  right: 0px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hp-free-badge__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hp-free-badge__text {
  position: relative;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #AA210F;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Dotted blob backgrounds ─────────────────────────────────────────────── */
.hp-vis-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hp-vis-blob--1 {
  width: 240px;
  height: 195px;
  top: -10px;
  right: 5px;
  background-image: radial-gradient(circle, rgba(170,33,15,0.22) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 62% 38% 52% 48% / 58% 44% 56% 42%;
}
.hp-vis-blob--2 {
  width: 175px;
  height: 155px;
  bottom: 15px;
  left: 0;
  background-image: radial-gradient(circle, rgba(208,136,86,0.22) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 42% 58% 38% 62% / 52% 40% 60% 48%;
}
.hp-vis-blob--3 {
  width: 110px;
  height: 90px;
  top: 48%;
  left: 32%;
  background-image: radial-gradient(circle, rgba(65,64,60,0.10) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  border-radius: 55% 45% 65% 35% / 45% 65% 35% 55%;
}

/* ── SVG dashed connector line ───────────────────────────────────────────── */
.hp-vis-dash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

/* ── MacBook (Silver) ────────────────────────────────────────────────────── */
.hp-mac {
  position: absolute;
  left: 0;
  top: 22px;
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.16));
}
.hp-mac__lid {
  width: 312px;
  height: 196px;
  background: linear-gradient(170deg, #E4E6E8 0%, #D8DADC 100%);
  border-radius: 8px 8px 2px 2px;
  padding: 5px 5px 2px;
  border: 1px solid #BFC1C3;
  border-bottom: none;
  position: relative;
}
.hp-mac__cam {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #7A7A7A;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}
.hp-mac__screen {
  width: 100%;
  height: 100%;
  background: #F4F5F7;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hp-mac__base {
  width: 344px;
  height: 20px;
  background: linear-gradient(180deg, #D2D4D6 0%, #C6C8CA 100%);
  border-radius: 0 0 8px 8px;
  margin-left: -16px;
  border: 1px solid #B4B6B8;
  border-top: 2px solid #B0B2B4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-mac__hinge-bar {
  width: 55px;
  height: 3px;
  background: #A8AAAC;
  border-radius: 2px;
}

/* MacBook screen — admin dashboard */
.hp-mac__topbar {
  background: #1C1C1E;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hp-mac__tb-dots {
  display: flex;
  gap: 4px;
}
.hp-mac__tb-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hp-mac__tb-url {
  flex: 1;
  background: #2C2C2E;
  border-radius: 4px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.5px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
.hp-mac__tb-live {
  font-size: 7px;
  color: #4ADE80;
  font-weight: 700;
  flex-shrink: 0;
}
.hp-mac__sidebar-row {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.hp-mac__sidebar {
  width: 52px;
  background: #F0F1F3;
  border-right: 1px solid #E2E4E6;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.hp-mac__nav-item {
  height: 20px;
  background: #E0E2E4;
  border-radius: 4px;
}
.hp-mac__nav-item--active {
  background: var(--primary);
  opacity: 0.8;
}
.hp-mac__main {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.hp-mac__stats-row {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.hp-mac__stat-chip {
  flex: 1;
  background: white;
  border: 1px solid #E4E6E8;
  border-radius: 5px;
  padding: 4px 5px;
  text-align: center;
}
.hp-mac__stat-num {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hp-mac__stat-lbl {
  display: block;
  font-size: 6px;
  color: #888;
  margin-top: 1px;
}
.hp-mac__cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  flex: 1;
}
.hp-mac__card {
  background: white;
  border-radius: 6px;
  border: 1px solid #E8EAEC;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.hp-mac__card-photo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}
.hp-mac__card-body { padding: 5px 5px 6px; }
.hp-mac__card-name {
  font-size: 7px;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-mac__card-price {
  font-size: 8px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3px;
}
.hp-mac__card-avail {
  font-size: 6px;
  background: #F0FDF4;
  color: #16A34A;
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px solid #BBF7D0;
  display: inline-block;
}

/* ── Samsung Galaxy S25 ──────────────────────────────────────────────────── */
.hp-s25 {
  position: absolute;
  right: 8px;
  bottom: -5px;
  z-index: 4;
  width: 150px;
  height: 320px;
  background: linear-gradient(170deg, #1E1E22 0%, #14141A 100%);
  border-radius: 26px;
  padding: 7px 6px;
  box-shadow:
    0 0 0 1px #2A2A30,
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 32px 72px rgba(0,0,0,0.50),
    0 8px 20px rgba(0,0,0,0.25);
}
/* S25 side buttons */
.hp-s25::before {
  content: '';
  position: absolute;
  right: -2px;
  top: 70px;
  width: 2px;
  height: 36px;
  background: #2C2C32;
  border-radius: 0 2px 2px 0;
}
.hp-s25::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 60px;
  width: 2px;
  height: 24px;
  background: #2C2C32;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 32px 0 #2C2C32;
}
.hp-s25__punch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #0A0A0E;
  border-radius: 50%;
  z-index: 6;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.04);
}
.hp-s25__screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* S25 screen content */
.hp-s25__hdr {
  background: var(--primary);
  padding: 14px 10px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.hp-s25__hdr-name {
  font-size: 9px;
  font-weight: 700;
  color: white;
}
.hp-s25__hdr-open {
  font-size: 6.5px;
  background: rgba(255,255,255,0.22);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}
.hp-s25__tabs {
  display: flex;
  border-bottom: 1px solid #EEE;
  padding: 0 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.hp-s25__tab {
  font-size: 7.5px;
  padding: 6px 7px;
  color: #999;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.hp-s25__tab--on {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.hp-s25__list {
  flex: 1;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.hp-s25__item {
  display: flex;
  gap: 0;
  background: #F8F9FA;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #EEE;
}
.hp-s25__photo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
}
.hp-s25__info {
  flex: 1;
  padding: 5px 7px;
  min-width: 0;
}
.hp-s25__name {
  font-size: 8px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-s25__desc {
  font-size: 6.5px;
  color: #AAA;
  margin-bottom: 3px;
}
.hp-s25__price {
  font-size: 9px;
  font-weight: 800;
  color: var(--primary);
}
.hp-s25__qr {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  background: #FDF2F0;
  border-top: 1px solid rgba(170,33,15,0.12);
  flex-shrink: 0;
}
.hp-s25__qr-t {
  font-size: 6.5px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.hp-s25__qr-s {
  font-size: 6px;
  color: #AAA;
}

/* ── Floating badges ─────────────────────────────────────────────────────── */
.hp-vis-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  white-space: nowrap;
  border: 1px solid var(--border);
  z-index: 10;
}
.hp-vis-badge--top {
  top: -8px;
  left: 140px;
}
.hp-vis-badge--bot {
  bottom: 40px;
  left: -10px;
}

/* ── Pain strip ──────────────────────────────────────────────────────────── */
.hp-pain {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.hp-pain__inner {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}
.hp-pain__left { flex: 1; }
.hp-pain__label {
  display: inline-block;
  background: var(--accent-bg);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.hp-pain__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hp-pain__sub {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hp-pain__right { flex: 1; padding-top: 8px; }
.hp-pain__problems {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.hp-pain__problems li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.hp-pain__x {
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.hp-pain__solution {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-bg);
  border: 1px solid rgba(170,33,15,0.25);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: var(--radius);
}

/* ── Stats strip ─────────────────────────────────────────────────────────── */
.hp-stats-strip {
  background: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.hp-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hp-stat-block {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.hp-stat-block:last-child { border-right: none; }
.hp-stat-block__num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.hp-stat-block__label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Feature groups ──────────────────────────────────────────────────────── */
.hp-features {
  padding: 100px 0;
  background: var(--light);
}
.hp-feature-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.hp-feature-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.hp-feature-group:hover { box-shadow: var(--shadow-md); }
.hp-feature-group__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.hp-feature-group__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.hp-feature-group__header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.hp-feature-group__header p {
  font-size: 13px;
  color: var(--text-secondary);
}
.hp-feature-group__list {
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hp-feature-group__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.hp-feature-group__list li svg { margin-top: 2px; flex-shrink: 0; }
.hp-features__differentiator {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.hp-features__differentiator p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.hp-features__differentiator strong { color: var(--text); }

/* ── Pricing upgrades ────────────────────────────────────────────────────── */
.hp-pricing__stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hp-pricing__stage {
  text-align: center;
}
.hp-pricing__stage span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}
.hp-pricing__stage p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.hp-plan__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0 28px 8px;
}
.hp-plan__not-included {
  margin: 0 28px 20px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px dashed var(--border-dark);
}
.hp-plan__not-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hp-plan__not-included ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-plan__not-included li {
  font-size: 12.5px;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}
.hp-plan__not-included li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
}
.hp-plan__pro-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 10px 28px 0;
  font-style: italic;
}

/* ── Responsive overrides for new sections ───────────────────────────────── */
@media (max-width: 1024px) {
  .hp-hero__inner--split { flex-direction: column; text-align: center; gap: 40px; }
  .hp-hero__inner--split .hp-hero__ctas { justify-content: center; }
  .hp-hero__inner--split .hp-hero__trust-line { text-align: center; }
  .hp-hero__visual { padding: 20px; width: 100%; }
  .hp-hero__img { max-width: 480px; margin: 0 auto; }
  .hp-phone { margin: 0 auto; }
  .hp-phone__badge--update { right: -5px; top: 5px; }
  .hp-phone__badge--qr { left: -10px; }
  .hp-feature-groups { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .hp-stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stat-block:nth-child(2) { border-right: none; }
  .hp-stat-block:nth-child(3) { border-right: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .hp-pain__inner { flex-direction: column; gap: 40px; }
  .hp-stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-pricing__stages { display: none; }
}
@media (max-width: 480px) {
  .hp-phone { width: 210px; }
  .hp-phone__badge { font-size: 10px; padding: 5px 10px; }
  .hp-phone__badge--qr { display: none; }
  .hp-stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .hp-stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  .hp-stat-block:last-child { border-bottom: none; }
}
