/* ================================================================
   ΚΟΡΙΝΘΙΑ LIVE — Modern Bold Food Platform Style
   ================================================================ */

:root {
  /* Primary palette — bold red */
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-light: #ff6b6b;
  --primary-gradient: linear-gradient(135deg, #e63946, #c1121f);
  --primary-soft: rgba(230, 57, 70, 0.1);

  /* Secondary — deep navy */
  --secondary: #1d3557;
  --secondary-light: #2a4a70;

  /* Accent */
  --success: #2a9d8f;
  --warning: #f4a261;
  --danger: #e63946;
  --info: #0ea5e9;

  /* Grays (Tailwind slate) */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --white: #ffffff;
  --bg: #ffffff;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;

  /* Radii */
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 25px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 35px rgba(0,0,0,0.15);
  --shadow-glow: 0 10px 35px rgba(230,57,70,0.4);

  --t: 0.3s ease;
  --container: 1200px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--primary-dark); }
button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 900; line-height: 1.2; color: var(--gray-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 900; }
h3 { font-size: 1.35rem; font-weight: 800; }
h4 { font-size: 1.1rem; font-weight: 800; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: 70px; display: flex; align-items: center;
}
.nav-wrap {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 900; color: var(--gray-900);
  transition: transform var(--t);
}
.logo:hover { transform: scale(1.03); color: var(--gray-900); }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-size: 22px; font-weight: 900;
  box-shadow: var(--shadow-glow);
}
.logo span { color: var(--primary); }

.nav-links {
  display: flex; gap: 32px; align-items: center;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  color: var(--gray-700); font-weight: 600; font-size: 15px;
  position: relative; transition: color var(--t); padding: 4px 0;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
/* Mega Menu */
.nav-links li.has-mega { position: static; }
.mega-trigger { display: inline-flex; align-items: center; gap: 4px; }
.mega-trigger svg { transition: transform var(--t); }
.nav-links li.has-mega:hover .mega-trigger svg { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: min(920px, 96vw); background: #fff;
  border: 1px solid var(--gray-200); border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 18px; display: none;
  grid-template-columns: repeat(3, 1fr); gap: 8px; z-index: 90;
  margin-top: 0;
}
/* Invisible hover bridge to prevent gap between trigger and menu */
.mega-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
  background: transparent;
}
.nav-links li.has-mega:hover .mega-menu,
.nav-links li.has-mega:focus-within .mega-menu { display: grid; }
.mega-item {
  display: flex; gap: 12px; align-items: center; padding: 12px 14px;
  border-radius: 10px; transition: all var(--t); color: var(--gray-800);
}
.mega-item:hover { background: var(--gray-50); color: var(--gray-900); }
.mega-item::after { display: none !important; }
.mega-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; font-size: 22px;
  flex-shrink: 0; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mega-item strong { display: block; font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
.mega-item small { display: block; font-size: 12px; color: var(--gray-500); font-weight: 500; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none; width: 40px; height: 40px; border-radius: var(--r-sm);
  align-items: center; justify-content: center; color: var(--gray-700);
}
.burger svg { width: 22px; height: 22px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; font-size: 15px; font-weight: 700;
  border-radius: 10px; cursor: pointer; border: 2px solid transparent;
  transition: all var(--t); white-space: nowrap; line-height: 1;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary-gradient); color: #fff;
  box-shadow: 0 4px 15px rgba(230,57,70,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 10px 35px rgba(230,57,70,0.45);
}
.btn-outline {
  background: transparent; color: var(--gray-800); border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px);
}
.btn-ghost { background: var(--gray-100); color: var(--gray-800); }
.btn-ghost:hover { background: var(--gray-200); }
.btn-dark { background: var(--gray-900); color: #fff; }
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); }
.btn-success { background: var(--success); color: #fff; }
.btn-danger  { background: var(--danger); color: #fff; }
.btn-white {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  color: #fff; border-color: rgba(255,255,255,0.3);
}
.btn-white:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ================================================================
   HERO (bold navy gradient w/ image)
   ================================================================ */
.hero {
  min-height: 80vh; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-900) 100%);
  display: flex; align-items: center; padding: 60px 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=1080&fit=crop') center/cover;
  opacity: 0.15; z-index: 0;
}
.hero-content {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--container); margin: 0 auto; padding: 0 5%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  color: #fff; margin-bottom: 20px; line-height: 1.1;
}
.hero-text h1 .highlight,
.hero-text h1 em {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: normal;
}
.hero-text p {
  font-size: 1.15rem; color: rgba(255,255,255,0.9);
  margin-bottom: 32px; line-height: 1.6;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-search {
  background: #fff; padding: 8px; border-radius: 12px;
  display: flex; gap: 6px; box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  max-width: 560px;
}
.hero-search input {
  flex: 1; border: 0; outline: 0; padding: 14px 18px;
  font-size: 15px; font-family: inherit; background: transparent; color: var(--text);
}
.hero-search .btn { padding: 14px 26px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.stat-box {
  text-align: center; padding: 18px 14px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.2);
}
.stat-box .num {
  font-size: 28px; font-weight: 900; color: var(--primary-light);
  margin-bottom: 4px; line-height: 1;
}
.stat-box .label {
  font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 90px 0; }
.section-gray { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-900) 100%);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  display: inline-block; color: var(--primary); font-weight: 800;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: 14px; }
.section-head p { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; margin: 0 auto; }

.section-title-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px; flex-wrap: wrap; gap: 14px;
}
.section-title-row h2 { font-size: 2rem; font-weight: 900; }
.section-title-row > a {
  color: var(--primary); font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
}
.section-title-row > a:hover { gap: 10px; }

/* ================================================================
   MODULE GRID (homepage pillars)
   ================================================================ */
.modules-grid-v2 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.module-tile {
  position: relative; display: block; overflow: hidden;
  border-radius: 20px; aspect-ratio: 4/3;
  color: #fff; transition: all var(--t);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.module-tile:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); color: #fff; }
.module-tile-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.module-tile:hover .module-tile-bg { transform: scale(1.08); }
.module-tile-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
}
.module-tile-content {
  position: absolute; inset: 0; z-index: 2;
  padding: 22px; display: flex; flex-direction: column; justify-content: space-between;
}
.module-tile-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center; font-size: 26px;
  align-self: flex-start;
}
.module-tile-info strong {
  display: block; font-size: 1.2rem; font-weight: 900;
  color: #fff; margin-bottom: 4px; line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.module-tile-info small {
  font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.module-tile-info small::after {
  content: '→'; transition: transform var(--t);
}
.module-tile:hover .module-tile-info small::after { transform: translateX(4px); }

/* ================================================================
   LISTING (sidebar + results)
   ================================================================ */
.listing-wrap {
  max-width: var(--container); margin: 0 auto; padding: 40px 5%;
  display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start;
}
.listing-sidebar {
  background: #fff; border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: sticky; top: 86px;
  max-height: calc(100vh - 106px); overflow-y: auto;
}
.listing-sidebar::-webkit-scrollbar { width: 6px; }
.listing-sidebar::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.listing-sidebar h4 {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gray-200);
}
.listing-sidebar .filter-group { margin-bottom: 24px; }
.filter-search { position: relative; margin-bottom: 20px; }
.filter-search input {
  width: 100%; padding: 12px 14px 12px 40px; font-size: 14px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  background: var(--gray-50); outline: 0; transition: all var(--t);
}
.filter-search input:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.filter-search::before {
  content: '🔍'; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 14px; opacity: 0.6; pointer-events: none;
}
.filter-list {
  list-style: none; display: flex; flex-direction: column; gap: 2px;
  max-height: 280px; overflow-y: auto; padding-right: 4px;
}
.filter-list::-webkit-scrollbar { width: 4px; }
.filter-list::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.filter-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 9px 12px; border-radius: 8px;
  color: var(--gray-700); font-size: 14px; font-weight: 500;
  transition: all var(--t);
}
.filter-list a:hover { background: var(--gray-100); color: var(--gray-900); }
.filter-list a.active { background: var(--primary); color: #fff; font-weight: 600; }
.filter-list a .count {
  font-size: 11px; background: var(--gray-200); color: var(--gray-700);
  padding: 2px 8px; border-radius: var(--r-full); font-weight: 700; font-variant-numeric: tabular-nums;
}
.filter-list a.active .count { background: rgba(255,255,255,0.25); color: #fff; }
.filter-list a .item-icon { font-size: 16px; }
.filter-list a .item-text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.listing-results { min-width: 0; }
.results-head {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 14px; margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-200);
}
.results-head h1 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; margin-bottom: 4px; }
.results-head .count-text { color: var(--gray-600); font-size: 14px; font-weight: 500; }
.sort-select {
  padding: 10px 38px 10px 14px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23334155' stroke-width='2' viewBox='0 0 24 24'><path d='m6 9 6 6 6-6'/></svg>") no-repeat right 12px center / 14px;
  outline: 0; cursor: pointer; appearance: none; -webkit-appearance: none;
  font-family: inherit; color: var(--gray-800);
}

.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-soft); color: var(--primary-dark);
  padding: 6px 12px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 700;
}
.chip a { color: var(--primary-dark); opacity: 0.7; font-weight: 900; font-size: 16px; line-height: 1; margin-left: 2px; }
.chip a:hover { opacity: 1; }
.clear-filters { font-size: 13px; color: var(--gray-600); text-decoration: underline; font-weight: 600; }

.mobile-filters-toggle {
  display: none; background: #fff; padding: 14px 18px;
  border-radius: 10px; border: 1.5px solid var(--gray-200);
  font-weight: 700; width: 100%; margin-bottom: 14px;
  align-items: center; justify-content: space-between;
}
@media (max-width: 960px) {
  .listing-wrap { grid-template-columns: 1fr; }
  .listing-sidebar { position: static; max-height: none; display: none; }
  .listing-sidebar.open { display: block; }
  .mobile-filters-toggle { display: flex; }
}

/* ================================================================
   CARDS (menu/shop/product/service)
   ================================================================ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.item-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  transition: all var(--t); display: flex; flex-direction: column;
  cursor: pointer; border: 1px solid transparent;
}
.item-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}
.item-cover {
  height: 220px; background: var(--gray-100);
  position: relative; overflow: hidden;
}
.item-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.item-card:hover .item-cover img { transform: scale(1.08); }
.item-cover .badge-absolute { position: absolute; top: 14px; left: 14px; z-index: 2; }

.item-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.item-title {
  font-size: 19px; font-weight: 800; color: var(--gray-900);
  line-height: 1.3; letter-spacing: -0.01em;
}
.item-meta {
  display: flex; gap: 14px; font-size: 13px; color: var(--gray-600);
  flex-wrap: wrap; font-weight: 500;
}
.item-meta span { display: inline-flex; align-items: center; gap: 4px; }
.item-desc { font-size: 14px; color: var(--gray-600); line-height: 1.55; flex: 1; }
.item-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--gray-100);
  gap: 8px;
}
.rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 800; font-size: 14px; color: var(--gray-900);
  font-variant-numeric: tabular-nums;
}
.rating::before { content: '★'; color: var(--warning); }

/* Menu/product card with price */
.product-card .item-cover { height: 240px; }
.menu-price { font-size: 22px; font-weight: 900; color: var(--primary); }

/* Event cards */
.event-card { position: relative; }
.event-date {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: #fff; border-radius: 10px;
  padding: 10px 12px; text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15); min-width: 56px;
}
.event-date strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.event-date small { font-size: 11px; text-transform: uppercase; font-weight: 800; color: var(--gray-700); letter-spacing: 0.05em; }

/* ================================================================
   SHOP LAYOUT (psinodino-style 3-column order page)
   ================================================================ */
.shop-layout {
  display: grid; grid-template-columns: 220px 1fr 360px;
  min-height: calc(100vh - 70px);
}
.shop-cats {
  background: #fff; border-right: 1px solid var(--gray-200);
  padding: 20px 0; position: sticky; top: 70px;
  height: calc(100vh - 70px); overflow-y: auto;
}
.shop-cats-title {
  font-size: 11px; font-weight: 800; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0 16px 14px;
}
.cat-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; color: var(--gray-600);
  font-size: 14px; font-weight: 500;
  border-left: 3px solid transparent; transition: all 0.2s;
  cursor: pointer;
}
.cat-link:hover { background: var(--gray-50); color: var(--gray-900); }
.cat-link.active {
  background: rgba(230,57,70,0.05); color: var(--primary);
  border-left-color: var(--primary); font-weight: 700;
}
.cat-link .icon { width: 20px; font-size: 15px; }
.cat-link .num {
  margin-left: auto; font-size: 11px;
  background: var(--gray-200); color: var(--gray-600);
  padding: 2px 8px; border-radius: 10px; font-weight: 700;
}
.cat-link.active .num { background: var(--primary); color: #fff; }

.shop-main { padding: 24px; overflow-y: auto; background: var(--gray-50); }

.shop-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px; padding: 28px; margin-bottom: 28px;
  color: #fff; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
  box-shadow: 0 6px 24px rgba(230,57,70,0.3);
}
.shop-banner h1 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.shop-banner p { opacity: 0.9; font-size: 14px; }
.shop-banner-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.shop-banner-stats .stat { text-align: center; }
.shop-banner-stats .stat-value { font-size: 22px; font-weight: 800; color: #fff; }
.shop-banner-stats .stat-label { font-size: 11px; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.05em; }

.menu-section { margin-bottom: 36px; scroll-margin-top: 90px; }
.menu-section-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}
.menu-section-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #ff6b6b);
  display: grid; place-items: center; color: #fff; font-size: 20px;
}
.menu-section-title { font-size: 20px; font-weight: 800; color: var(--gray-900); }

.menu-products {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.menu-product {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s; display: flex; flex-direction: column;
}
.menu-product:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.menu-product-img {
  height: 150px; background: var(--gray-100); position: relative;
}
.menu-product-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-product-img .placeholder {
  height: 100%; display: grid; place-items: center; font-size: 52px;
  background: linear-gradient(135deg, #fef2f2, #fff);
}
.menu-product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.menu-product-name { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.menu-product-desc { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.menu-product-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto;
}
.menu-product-price { font-size: 18px; font-weight: 900; color: var(--primary); }
.menu-add-btn {
  background: var(--primary); color: #fff; border: 0; padding: 8px 14px;
  border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.menu-add-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
.menu-add-btn:disabled { background: var(--gray-300); cursor: not-allowed; }

/* Cart Panel */
.cart-panel {
  background: #fff; border-left: 1px solid var(--gray-200);
  position: sticky; top: 70px; height: calc(100vh - 70px);
  display: flex; flex-direction: column;
}
.cart-panel-header {
  padding: 18px 18px; border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 10px;
}
.cart-panel-header .icon { color: var(--primary); font-size: 20px; }
.cart-panel-header h2 { font-size: 18px; font-weight: 800; color: var(--gray-900); flex: 1; }
.cart-count-badge {
  background: var(--primary); color: #fff; font-size: 12px; font-weight: 800;
  padding: 3px 10px; border-radius: 20px;
}
.cart-panel-items { flex: 1; overflow-y: auto; padding: 14px 18px; }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--gray-400); }
.cart-empty .icon { font-size: 48px; margin-bottom: 12px; display: block; }
.cart-empty p { font-size: 14px; }
.cart-line {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
}
.cart-line-qty {
  width: 26px; height: 26px; background: var(--primary); color: #fff;
  border-radius: 6px; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.cart-line-price { font-size: 13px; font-weight: 700; color: var(--gray-800); }
.cart-line-del { background: 0; border: 0; color: var(--gray-400); cursor: pointer; padding: 4px; }
.cart-line-del:hover { color: var(--primary); }

.cart-panel-footer {
  padding: 16px 18px; background: var(--gray-50); border-top: 1px solid var(--gray-200);
}
.cart-summary { margin-bottom: 14px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13px; color: var(--gray-600); }
.cart-summary-row.total { border-top: 1px solid var(--gray-200); padding-top: 10px; margin-top: 10px; font-size: 17px; font-weight: 900; color: var(--gray-900); }
.cart-summary-row.total span:last-child { color: var(--primary); }
.cart-checkout-btn {
  width: 100%; padding: 14px; background: var(--primary-gradient);
  color: #fff; border: 0; border-radius: 10px; font-weight: 800;
  font-size: 15px; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(230,57,70,0.3); font-family: inherit;
}
.cart-checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230,57,70,0.45); }

@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 200px 1fr; }
  .cart-panel { display: none; }
  .cart-mobile-btn {
    display: flex !important; position: fixed; bottom: 20px; right: 20px;
    z-index: 90; background: var(--primary-gradient); color: #fff;
    border: 0; border-radius: var(--r-full); padding: 14px 20px; font-weight: 800;
    box-shadow: 0 10px 30px rgba(230,57,70,0.4); align-items: center; gap: 8px;
  }
}
@media (max-width: 720px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-cats { position: static; height: auto; border-right: 0; border-bottom: 1px solid var(--gray-200); display: flex; overflow-x: auto; padding: 14px; gap: 8px; }
  .shop-cats-title { display: none; }
  .cat-link { flex-shrink: 0; border-left: 0; border-bottom: 2px solid transparent; padding: 8px 14px; border-radius: 10px; background: var(--gray-50); }
  .cat-link.active { border-left: 0; border-bottom-color: transparent; background: var(--primary); color: #fff; }
  .cat-link.active .num { background: #fff; color: var(--primary); }
}
.cart-mobile-btn { display: none; }

/* ================================================================
   BADGES
   ================================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 800; line-height: 1.4;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.badge-primary { background: var(--primary-soft); color: var(--primary-dark); }
.badge-success { background: rgba(42,157,143,0.12); color: #1d6a5f; }
.badge-warning { background: rgba(244,162,97,0.18); color: #9a5a1e; }
.badge-info    { background: rgba(14,165,233,0.12); color: #075985; }
.badge-dark    { background: var(--gray-900); color: #fff; }
.badge-featured { background: var(--primary-gradient); color: #fff; box-shadow: 0 4px 12px rgba(230,57,70,0.3); }

/* ================================================================
   FORMS
   ================================================================ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-weight: 700; font-size: 14px;
  margin-bottom: 8px; color: var(--gray-800);
}
.form-control, .form-select, textarea.form-control {
  width: 100%; padding: 12px 16px; font-size: 15px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  background: #fff; color: var(--gray-900); font-family: inherit;
  transition: all var(--t); outline: 0;
}
.form-control:focus, .form-select:focus, textarea.form-control:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft);
}
textarea.form-control { min-height: 110px; resize: vertical; line-height: 1.5; }
.form-help { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ================================================================
   AUTH
   ================================================================ */
.auth-wrap {
  min-height: calc(100vh - 70px); display: grid; place-items: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--gray-50) 0%, #fff 100%);
}
.auth-card {
  width: 100%; max-width: 460px; background: #fff;
  padding: 44px; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--gray-100);
}
.auth-card h2 { font-size: 1.9rem; font-weight: 900; margin-bottom: 8px; }
.auth-card .auth-subtitle { color: var(--gray-600); margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--gray-600); }

/* ================================================================
   ALERTS
   ================================================================ */
.alert {
  padding: 14px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 500; margin-bottom: 16px;
  border-left: 4px solid;
}
.alert-success { background: #ecfdf5; color: #065f46; border-color: var(--success); }
.alert-danger  { background: #fef2f2; color: #991b1b; border-color: var(--danger); }
.alert-warning { background: #fffbeb; color: #92400e; border-color: var(--warning); }
.alert-info    { background: #f0f9ff; color: #075985; border-color: var(--info); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: 50px 0 40px;
  background: linear-gradient(135deg, var(--gray-50) 0%, #fff 100%);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: 8px; }
.page-hero p { color: var(--gray-600); font-size: 1rem; }

/* ================================================================
   DASHBOARD
   ================================================================ */
.dash-wrap {
  max-width: var(--container); margin: 0 auto; padding: 32px 5%;
  display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start;
}
.dash-sidebar {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200); padding: 22px;
  box-shadow: var(--shadow-sm); position: sticky; top: 86px;
}
.dash-user {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); margin-bottom: 14px;
}
.dash-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-gradient); color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 20px;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav a {
  padding: 10px 12px; border-radius: 8px; color: var(--gray-700);
  font-size: 14px; font-weight: 600; transition: all var(--t);
}
.dash-nav a:hover { background: var(--gray-100); color: var(--gray-900); }
.dash-nav a.active { background: var(--primary-gradient); color: #fff; box-shadow: 0 4px 12px rgba(230,57,70,0.25); }
.dash-nav-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-400); margin: 16px 0 4px 12px;
}
.dash-main { min-width: 0; }
.dash-head { margin-bottom: 24px; }
.dash-head h1 { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; }
.dash-card {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200); padding: 24px;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px; margin-bottom: 24px;
}
.stat-card {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--gray-200); padding: 22px;
  display: flex; gap: 14px; align-items: center; box-shadow: var(--shadow-sm);
}
.stat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--primary-gradient); color: #fff;
  display: grid; place-items: center; font-size: 24px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230,57,70,0.25);
}
.stat-num { font-size: 1.6rem; font-weight: 900; color: var(--gray-900); line-height: 1.1; }
.stat-label { font-size: 12px; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.dash-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dash-table thead { background: var(--gray-50); }
.dash-table th {
  text-align: left; padding: 14px 16px; font-weight: 800;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600);
}
.dash-table td { padding: 14px 16px; border-top: 1px solid var(--gray-100); }
.dash-table tr:hover { background: var(--gray-50); }

@media (max-width: 900px) {
  .dash-wrap { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
}

/* ============================================
   DASHBOARD — PREMIUM SaaS STYLE
   ============================================ */
.dash-greeting {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px; margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--gray-200);
}
.dash-greeting .dash-date {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 4px;
}
.dash-greeting h1 { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; }
.dash-greeting p { font-size: 14px; }
.dash-greeting-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* KPI Cards */
.kpi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.kpi-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 20px; transition: all var(--t);
}
.kpi-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow); transform: translateY(-2px); }
.kpi-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px;
}
.kpi-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center; font-size: 20px;
}
.kpi-trend {
  font-size: 12px; font-weight: 700; padding: 3px 8px;
  border-radius: var(--r-full);
}
.kpi-trend.up { background: rgba(42,157,143,.12); color: #1d6a5f; }
.kpi-trend.down { background: rgba(230,57,70,.1); color: var(--primary-dark); }
.kpi-badge {
  font-size: 10px; font-weight: 800; padding: 3px 8px;
  border-radius: var(--r-full); background: var(--gray-100);
  color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em;
}
.kpi-badge.urgent { background: var(--primary); color: #fff; }
.kpi-value {
  font-size: 1.9rem; font-weight: 900; color: var(--gray-900);
  line-height: 1.1; margin-bottom: 4px; font-variant-numeric: tabular-nums;
}
.kpi-label { font-size: 14px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.kpi-sub { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.kpi-sub a { color: var(--primary); font-weight: 700; }

/* Dashboard Grid 2-col */
.dash-grid-2 {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .dash-grid-2 { grid-template-columns: 1fr; } }
.dash-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px; gap: 12px;
}
.dash-card-header h3 { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.dash-link { color: var(--primary); font-weight: 700; font-size: 13px; }
.dash-link:hover { color: var(--primary-dark); }

/* Chart */
.chart-total { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.chart-bars {
  display: flex; gap: 10px; align-items: flex-end;
  height: 180px; padding-top: 20px;
}
.chart-bar-wrap {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 6px; position: relative; height: 100%;
}
.chart-bar-tooltip {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; color: var(--gray-700);
  white-space: nowrap; opacity: 0; transition: opacity var(--t);
  background: var(--gray-900); color: #fff; padding: 4px 8px; border-radius: 6px;
}
.chart-bar-wrap:hover .chart-bar-tooltip { opacity: 1; }
.chart-bar {
  width: 100%; background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 6px 6px 0 0; min-height: 8px; transition: all .3s;
}
.chart-bar-wrap:hover .chart-bar { transform: scaleY(1.03); filter: brightness(1.1); }
.chart-bar-label { font-size: 10px; font-weight: 600; color: var(--gray-500); }

/* Mini shop tiles */
.mini-shop {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--gray-100); color: var(--gray-800);
  transition: all var(--t);
}
.mini-shop:last-child { border-bottom: 0; }
.mini-shop:hover { color: var(--primary); padding-left: 4px; }
.mini-shop-logo { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.mini-shop-info { flex: 1; min-width: 0; }
.mini-shop-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); }
.mini-shop-info small { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.mini-shop-stat { text-align: right; }
.mini-shop-stat strong { display: block; font-size: 17px; font-weight: 900; color: var(--primary); }
.mini-shop-stat small { font-size: 10px; color: var(--gray-500); text-transform: uppercase; font-weight: 700; letter-spacing: .05em; }

/* Activity Rows */
.activity-row {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.activity-row:last-child { border-bottom: 0; }
.activity-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; font-size: 17px; flex-shrink: 0;
}
.activity-info { flex: 1; min-width: 0; }
.activity-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--gray-900); }
.activity-info small { font-size: 11px; color: var(--gray-500); font-weight: 500; }
.activity-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.activity-amount { font-size: 14px; font-weight: 800; color: var(--gray-900); font-variant-numeric: tabular-nums; }

/* Empty State */
.empty-state { text-align: center; padding: 32px 20px; }
.empty-state p { font-size: 14px; color: var(--gray-500); }

/* Onboarding Card */
.onboarding-card {
  background: linear-gradient(135deg, #fff 0%, var(--gray-50) 100%);
  border: 2px dashed var(--gray-300); border-radius: 20px;
  padding: 50px 30px; text-align: center; margin-bottom: 24px;
}
.onboarding-card .onboarding-icon { font-size: 64px; margin-bottom: 14px; }
.onboarding-card h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.onboarding-card p { font-size: 14px; color: var(--gray-600); max-width: 500px; margin: 0 auto 20px; }

/* Quick Links */
.quick-links-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px; margin-top: 20px;
}
.quick-link {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
  color: var(--gray-800); font-size: 14px; font-weight: 600;
  transition: all var(--t);
}
.quick-link:hover { border-color: var(--primary); color: var(--primary); transform: translateX(4px); }
.quick-link .ql-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gray-100);
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
}
.quick-link:hover .ql-icon { background: rgba(230,57,70,.1); }

/* Shop tiles */
.shops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.shop-tile { padding: 22px; }
.shop-tile-head { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.shop-tile-logo { width: 54px; height: 54px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.shop-tile-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 14px; background: var(--gray-50); border-radius: 10px; margin-bottom: 14px;
}
.shop-tile-stats > div { text-align: center; }
.shop-tile-stats strong { display: block; font-size: 15px; color: var(--gray-900); font-weight: 800; }
.shop-tile-stats small { display: block; font-size: 11px; color: var(--gray-600); }
.shop-tile-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.shop-tile-actions .btn { padding: 7px 12px; font-size: 12px; }

/* ================================================================
   ROLE TABS
   ================================================================ */
.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.role-tabs input[type="radio"] { display: none; }
.role-tabs .role-tab { cursor: pointer; }
.role-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  padding: 18px 12px; border: 2px solid var(--gray-200); border-radius: 12px;
  background: #fff; transition: all var(--t); height: 100%;
}
.role-card .role-icon { font-size: 28px; margin-bottom: 4px; }
.role-card strong { font-size: 14px; font-weight: 800; color: var(--gray-900); }
.role-card small { font-size: 11px; color: var(--gray-600); line-height: 1.3; }
.role-tabs input:checked + .role-card {
  border-color: var(--primary); background: var(--primary-soft);
  box-shadow: 0 0 0 4px rgba(230,57,70,0.08);
}
@media (max-width: 560px) {
  .role-tabs { grid-template-columns: 1fr; }
  .role-card { flex-direction: row; text-align: left; padding: 14px; }
  .role-card .role-icon { margin: 0 12px 0 0; }
}

/* Star rating */
.star-rating { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-rating input { display: none; }
.star-rating label { font-size: 32px; color: var(--gray-300); cursor: pointer; transition: color var(--t); }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--warning); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--gray-900); color: rgba(255,255,255,0.7);
  padding: 70px 0 30px; margin-top: 100px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
}
.site-footer h4 {
  color: #fff; font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; }
.site-footer a:hover { color: var(--primary-light); }
.footer-brand {
  font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 14px;
}
.footer-brand span { color: var(--primary); }
.footer-about { font-size: 14px; line-height: 1.7; max-width: 380px; color: rgba(255,255,255,0.6); }
.footer-bottom {
  text-align: center; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.4);
}

/* ================================================================
   UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--gray-600); }
.text-danger { color: var(--danger); }
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}
.d-flex{display:flex}.align-center{align-items:center}.justify-between{justify-content:space-between}
.gap-1{gap:8px}.gap-2{gap:16px}.gap-3{gap:24px}
.flex-wrap{flex-wrap:wrap}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px;
    border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-md); gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-search { margin: 0 auto; }
  .hero-stats { max-width: 520px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-search { flex-direction: column; padding: 12px; }
  .hero-search input { padding: 14px; }
  .hero-search .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
}
