/*
Theme Name: DhakaEats
Theme URI: https://dhakaeats.com
Author: DhakaEats
Description: A clean food directory theme for Dhaka restaurants.
Version: 1.0.3
License: GNU General Public License v2 or later
Text Domain: dhakaeats
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Brand */
  --fire: #1B6B3A;          /* deep green — primary */
  --gold: #2D9E5F;          /* mid green — secondary */
  --green: #1B6B3A;
  --red: #F42A41;           /* Bangladesh flag red — accent */

  /* Backgrounds — light */
  --dark: #FFFFFF;
  --charcoal: #F4F7F5;
  --mid: #ECF1ED;
  --card: #FFFFFF;
  --surface: #F0F5F1;
  --deep: #111111;

  /* Text */
  --white: #111111;
  --warm: #3B4D3E;
  --muted: #7A8F7D;
  --light: #F4F7F5;

  /* Borders */
  --border: rgba(27,107,58,0.13);

  --radius: 12px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a { color: var(--fire); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* =====================
   UTILITIES
===================== */
.hidden { display: none !important; }

/* =====================
   NAV DROPDOWN
===================== */
.oe-nav-group { position: relative; }
.oe-nav-group > .oe-nav-trigger {
  font-size: 13px; font-weight: 500; color: var(--warm);
  padding: 7px 14px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap; user-select: none;
}
.oe-nav-group > .oe-nav-trigger:hover,
.oe-nav-group.open > .oe-nav-trigger { background: var(--mid); color: var(--white); }
.oe-nav-group > .oe-nav-trigger svg { width:10px;height:10px;opacity:.6; }
.oe-nav-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--charcoal); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px; min-width: 180px; z-index: 1100;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.oe-nav-group.open .oe-nav-dropdown { display: block; }
.oe-nav-dropdown a {
  display: block; padding: 8px 12px; font-size: 13px;
  color: var(--warm); border-radius: 5px; text-decoration: none;
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.oe-nav-dropdown a:hover { background: var(--mid); color: var(--white); }
.oe-nav-sign-in {
  font-size: 12px; padding: 7px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15); color: var(--warm) !important;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.oe-nav-sign-in:hover { border-color: rgba(255,255,255,0.4); color: var(--white) !important; }
@media (max-width: 768px) {
  .oe-nav-group { width: 100%; }
  .oe-nav-dropdown { position: static; border: none; background: var(--mid); box-shadow: none; border-radius: 6px; }
  .oe-nav-group > .oe-nav-trigger { width: 100%; }
}

/* =====================
   LAYOUT
===================== */
.oe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.oe-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.oe-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.oe-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1024px) {
  .oe-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .oe-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .oe-grid-4, .oe-grid-3, .oe-grid-2 { grid-template-columns: 1fr; }
  .oe-container { padding: 0 16px; }
}

/* =====================
   HEADER / NAV
===================== */
.oe-header {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 9999;  /* Must exceed Leaflet's highest pane (popup = 700) */
}

.oe-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.oe-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--white) !important;
  text-decoration: none !important;
  flex-shrink: 0;
}

.oe-logo span { color: var(--fire); }

.oe-nav { display: flex; align-items: center; gap: 6px; }

.oe-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm);
  padding: 7px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.oe-nav a:hover { background: var(--mid); color: var(--white); }

.oe-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none !important;
  letter-spacing: 0.3px;
}

.oe-btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

.oe-btn-primary {
  background: var(--fire);
  color: #fff !important;
}

.oe-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--warm) !important;
}

.oe-btn-outline:hover { border-color: rgba(255,255,255,0.3); color: var(--white) !important; }

.oe-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--warm);
  font-size: 22px;
  padding: 6px;
}

@media (max-width: 768px) {
  .oe-nav { display: none; }
  .oe-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    gap: 4px;
    z-index: 999;
  }
  .oe-hamburger { display: block; }
}

/* =====================
   HERO
===================== */
.oe-hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
  background: var(--charcoal);
  text-align: center;
}

.oe-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(27,107,58,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.12) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
}

.oe-hero-content { position: relative; z-index: 1; }

.oe-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(27,107,58,0.25);
}

.oe-hero h1 span { color: var(--fire); }

.oe-hero p {
  font-size: 16px;
  color: var(--warm);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* SEARCH BAR */
.oe-search-bar {
  display: flex;
  max-width: 620px;
  margin: 0 auto 24px;
  background: var(--mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  padding: 5px;
  gap: 8px;
}

.oe-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 16px;
}

.oe-search-bar input::placeholder { color: var(--muted); }

.oe-search-bar button {
  background: var(--fire);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.oe-hero-cats {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.oe-cat-pill {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--warm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.oe-cat-pill:hover, .oe-cat-pill.active {
  background: rgba(27,107,58,0.15);
  border-color: rgba(27,107,58,0.5);
  color: var(--white);
  text-decoration: none;
}

/* =====================
   DIRECTORY PAGE LAYOUT
===================== */
.oe-directory {
  padding: 40px 0 60px;
}

.oe-directory-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.oe-directory-layout > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .oe-directory-layout { grid-template-columns: 1fr; }
  .oe-sidebar { display: none; }
  .oe-sidebar.open { display: block; }
}

/* =====================
   SIDEBAR / FILTERS
===================== */
.oe-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.oe-filter-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.oe-filter-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
}

.oe-filter-reset {
  font-size: 11px;
  color: var(--fire);
  background: none;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.oe-filter-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.oe-filter-section:last-child { border-bottom: none; }

.oe-filter-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.oe-check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  cursor: pointer;
}

.oe-check-item:last-child { margin-bottom: 0; }

.oe-check-item input[type="checkbox"],
.oe-check-item input[type="radio"] {
  accent-color: var(--fire);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.oe-check-item label {
  font-size: 13px;
  color: var(--warm);
  cursor: pointer;
  transition: color 0.15s;
}

.oe-check-item:hover label { color: var(--white); }

.oe-price-btns {
  display: flex;
  gap: 6px;
}

.oe-price-btn {
  flex: 1;
  padding: 7px 4px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}

.oe-price-btn.active, .oe-price-btn:hover {
  background: rgba(27,107,58,0.15);
  border-color: var(--fire);
  color: var(--white);
}

/* =====================
   LISTING RESULTS
===================== */
.oe-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.oe-results-count {
  font-size: 13px;
  color: var(--muted);
}

.oe-results-count strong { color: var(--white); }

.oe-sort-select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--warm);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 7px 12px;
  outline: none;
}

.oe-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--warm);
  font-size: 13px;
  padding: 7px 14px;
}

@media (max-width: 900px) { .oe-mobile-filter-btn { display: flex; } }

/* =====================
   LISTING CARD
===================== */
.oe-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.oe-listing-grid > * {
  min-width: 0;
}

@media (max-width: 640px) { .oe-listing-grid { grid-template-columns: 1fr; } }

.oe-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

.oe-card:hover {
  border-color: rgba(27,107,58,0.35);
  transform: translateY(-3px);
  text-decoration: none;
}

.oe-card-img {
  height: 160px;
  background: var(--mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.oe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.oe-card:hover .oe-card-img img { transform: scale(1.04); }

.oe-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.oe-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.oe-badge-fire { background: var(--fire); color: #fff; }
.oe-badge-gold { background: var(--gold); color: #000; }
.oe-badge-reddit { background: #ff4500; color: #fff; }
.oe-badge-outline {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.oe-card-save {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  color: var(--warm);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: color 0.2s, background 0.2s;
}

.oe-card-save:hover { background: var(--fire); color: #fff; }

.oe-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

.oe-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fire);
}

.oe-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.oe-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.oe-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.oe-rating { font-weight: 700; font-size: 13px; color: var(--gold); }
.oe-review-count { font-size: 11px; color: var(--muted); }
.oe-price { font-size: 12px; font-weight: 600; color: var(--warm); }
.oe-dot { color: var(--muted); font-size: 10px; }

.oe-card-addr {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.oe-card-pills { display: flex; gap: 5px; flex-wrap: wrap; margin-top: auto; }

.oe-card-pill {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--warm);
}

.oe-open { color: var(--green); font-size: 11px; font-weight: 600; }
.oe-closed { color: #E57373; font-size: 11px; font-weight: 600; }

/* =====================
   SINGLE LISTING PAGE
===================== */
.oe-single-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
}

.oe-single-hero .oe-hero-bg { opacity: 0.7; }

.oe-single-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.oe-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,13,0.95) 0%, transparent 60%);
}

.oe-single-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 36px;
  width: 100%;
}

.oe-single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 36px 0 60px;
  align-items: start;
}

@media (max-width: 900px) { .oe-single-layout { grid-template-columns: 1fr; } }

/* =====================
   REVIEWS
===================== */
.oe-review-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

.oe-review-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.oe-form-group { margin-bottom: 16px; }

.oe-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.oe-form-group input,
.oe-form-group textarea,
.oe-form-group select {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.oe-form-group input:focus,
.oe-form-group textarea:focus,
.oe-form-group select:focus {
  border-color: rgba(27,107,58,0.5);
}

.oe-form-group textarea { resize: vertical; min-height: 100px; }

.oe-star-rating { display: flex; gap: 6px; margin-bottom: 4px; }
.oe-star-rating input { display: none; }
.oe-star-rating label {
  font-size: 26px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s;
}
.oe-star-rating label:hover,
.oe-star-rating label:hover ~ label,
.oe-star-rating input:checked ~ label { color: var(--gold) !important; }
.oe-star-rating { flex-direction: row-reverse; }
.oe-star-rating label:hover,
.oe-star-rating label:hover ~ label { color: var(--gold); }

/* =====================
   SUBMIT LISTING FORM
===================== */
.oe-submit-page {
  padding: 60px 0;
  max-width: 720px;
  margin: 0 auto;
}

.oe-submit-page h1 {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.oe-submit-page h1 span { color: var(--fire); }
.oe-submit-page > p { color: var(--warm); margin-bottom: 36px; }

.oe-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}

.oe-form-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--warm);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.oe-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .oe-form-row { grid-template-columns: 1fr; } }

.oe-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.oe-checkbox-grid .oe-check-item label { font-size: 13px; }

/* =====================
   MAP VIEW
===================== */
#oe-map {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.oe-map-toggle {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.oe-map-toggle button {
  flex: 1;
  padding: 8px 16px;
  background: none;
  border: none;
  color: var(--warm);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.oe-map-toggle button.active {
  background: var(--fire);
  color: #fff;
}

/* =====================
   SIDEBAR INFO CARD (single listing)
===================== */
.oe-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.oe-info-card-map {
  height: 180px;
  background: linear-gradient(135deg, #1a1f2e, #1e2535);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.oe-order-btn {
  display: block;
  margin: 16px;
  background: linear-gradient(135deg, var(--fire), #c42d00);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(27,107,58,0.25);
  transition: opacity 0.2s, transform 0.2s;
}

.oe-order-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.oe-info-rows { padding: 4px 16px 16px; }

.oe-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--warm);
}

.oe-info-row:last-child { border-bottom: none; }
.oe-info-row .icon { width: 20px; text-align: center; flex-shrink: 0; }
.oe-info-row strong { color: var(--white); display: block; }
.oe-info-row a { color: var(--gold); }

/* =====================
   SECTION HEADINGS
===================== */
.oe-section { padding: 56px 0; }
.oe-section-alt { background: var(--charcoal); }

.oe-section-head {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.oe-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 1.5px;
  line-height: 1;
}

.oe-section-head h2 span { color: var(--fire); }
.oe-section-head p { font-size: 13px; color: var(--muted); margin-top: 4px; }

.oe-view-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--fire);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* =====================
   STATS BAR
===================== */
.oe-stats-bar {
  background: var(--fire);
  padding: 16px 0;
}

.oe-stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.oe-stat { text-align: center; }

.oe-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.oe-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* =====================
   NEIGHBOURHOOD CARDS
===================== */
.oe-hood-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none !important;
  display: block;
}

.oe-hood-card:hover {
  border-color: rgba(27,107,58,0.35);
  transform: translateY(-3px);
}

.oe-hood-icon { font-size: 28px; margin-bottom: 8px; }

.oe-hood-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.oe-hood-count { font-size: 11px; color: var(--muted); }

/* =====================
   PAGINATION
===================== */
.oe-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.oe-page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.oe-page-btn.active, .oe-page-btn:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
  text-decoration: none;
}

/* =====================
   FOOTER
===================== */
.oe-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.oe-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .oe-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .oe-footer-grid { grid-template-columns: 1fr; }
}

.oe-footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 12px;
}

.oe-footer-logo span { color: var(--fire); }
.oe-footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.oe-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.oe-footer-col ul { list-style: none; }
.oe-footer-col li { margin-bottom: 8px; }
.oe-footer-col a { font-size: 13px; color: var(--warm); text-decoration: none; transition: color 0.2s; }
.oe-footer-col a:hover { color: var(--white); }

.oe-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

/* =====================
   ADMIN NOTICES / ALERTS
===================== */
.oe-notice {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.oe-notice-success { background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.3); color: #81C784; }
.oe-notice-error { background: rgba(27,107,58,0.1); border: 1px solid rgba(27,107,58,0.25); color: #EF9A9A; }
.oe-notice-info { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3); color: var(--gold); }

/* =====================
   UTILITIES
===================== */
.oe-text-fire { color: var(--fire); }
.oe-text-gold { color: var(--gold); }
.oe-text-muted { color: var(--muted); }
.oe-text-warm { color: var(--warm); }
.oe-mt-8 { margin-top: 8px; }
.oe-mt-16 { margin-top: 16px; }
.oe-mt-24 { margin-top: 24px; }
.oe-mb-16 { margin-bottom: 16px; }
.oe-mb-24 { margin-bottom: 24px; }
.oe-hidden { display: none !important; }
.oe-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* =====================
   DHAKAEATS LIGHT THEME OVERRIDES
   White bg · Black text · Deep green accents
===================== */

/* Header — white with green accent border */
.oe-header {
  background: #ffffff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 1px 12px rgba(27,107,58,0.07);
}
.oe-nav.open { background: #ffffff; }
.oe-nav-dropdown {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

/* Logo — black with green accent */
.oe-logo { color: #111111 !important; }
.oe-logo span { color: var(--fire); }

/* Nav links */
.oe-nav a { color: #3B4D3E; }
.oe-nav a:hover { background: var(--mid); color: #111111; }
.oe-nav-group > .oe-nav-trigger { color: #3B4D3E; }
.oe-nav-group > .oe-nav-trigger:hover,
.oe-nav-group.open > .oe-nav-trigger { background: var(--mid); color: #111111; }
.oe-nav-dropdown a { color: #3B4D3E; }
.oe-nav-dropdown a:hover { background: var(--mid); color: #111111; }
.oe-nav-sign-in {
  border-color: rgba(27,107,58,0.25) !important;
  color: #3B4D3E !important;
}
.oe-nav-sign-in:hover { border-color: var(--fire) !important; color: var(--fire) !important; }
.oe-hamburger { color: #3B4D3E; }

/* Hero — green field with red circle glow, Bangladesh flag energy */
.oe-hero { background: var(--charcoal); }
.oe-hero-bg {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(27,107,58,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 40%, rgba(27,107,58,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 40%, rgba(27,107,58,0.05) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(27,107,58,0.012) 40px, rgba(27,107,58,0.012) 41px);
}
.oe-hero h1 { color: #111111; text-shadow: none; }
.oe-hero h1 span { color: var(--red); }   /* Red hero accent — flag circle */
.oe-hero p { color: var(--warm); }

/* Search bar — red button */
.oe-search-bar {
  background: #ffffff;
  border: 1.5px solid rgba(27,107,58,0.2);
  box-shadow: 0 2px 16px rgba(27,107,58,0.08);
}
.oe-search-bar input { color: #111111; }
.oe-search-bar input::placeholder { color: #7A8F7D; }
.oe-search-bar button { background: var(--fire); }

/* Category pills */
.oe-cat-pill {
  background: rgba(27,107,58,0.06);
  border-color: rgba(27,107,58,0.15);
  color: var(--warm);
}
.oe-cat-pill:hover, .oe-cat-pill.active {
  background: rgba(27,107,58,0.12);
  border-color: var(--fire);
  color: var(--fire);
}

/* Stats bar — Bangladesh flag red */
.oe-stats-bar { background: var(--fire); }

/* Section alt */
.oe-section-alt { background: var(--charcoal); }
.oe-section-head h2 { color: #111111; }
.oe-section-head h2 span { color: var(--red); }
.oe-section-head p { color: var(--muted); }
.oe-view-all { color: var(--red); }

/* Cards */
.oe-card {
  background: #ffffff;
  border-color: rgba(27,107,58,0.12);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.oe-card:hover {
  border-color: rgba(27,107,58,0.35);
  box-shadow: 0 6px 24px rgba(27,107,58,0.10);
}
.oe-card-img { background: var(--mid); }
.oe-card-cat { color: var(--fire); }
.oe-card-name { color: #111111; }
.oe-card-addr { color: var(--muted); }
.oe-card-pill {
  background: var(--mid);
  border-color: rgba(27,107,58,0.13);
  color: var(--warm);
}
.oe-card-save {
  background: rgba(255,255,255,0.85);
  color: var(--warm);
  border: 1px solid rgba(27,107,58,0.15);
}
.oe-card-save:hover { background: var(--fire); color: #fff; border-color: var(--fire); }

/* Stars & ratings */
.oe-stars { color: #E8A020; }
.oe-rating { color: #1B6B3A; }
.oe-review-count { color: var(--muted); }
.oe-price { color: var(--warm); }

/* Sidebar filters */
.oe-sidebar {
  background: #ffffff;
  border-color: rgba(27,107,58,0.13);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.oe-filter-header { border-bottom-color: rgba(27,107,58,0.1); }
.oe-filter-section { border-bottom-color: rgba(27,107,58,0.08); }
.oe-filter-header h3 { color: #111111; }
.oe-filter-reset { color: var(--fire); }
.oe-filter-label { color: var(--muted); }
.oe-check-item label { color: var(--warm); }
.oe-check-item:hover label { color: #111111; }
.oe-check-item input[type="checkbox"],
.oe-check-item input[type="radio"] { accent-color: var(--fire); }
.oe-price-btn {
  background: var(--mid);
  border-color: rgba(27,107,58,0.13);
  color: var(--warm);
}
.oe-price-btn.active, .oe-price-btn:hover {
  background: rgba(27,107,58,0.1);
  border-color: var(--fire);
  color: var(--fire);
}

/* Sort / results */
.oe-sort-select {
  background: #ffffff;
  border-color: rgba(27,107,58,0.18);
  color: var(--warm);
}
.oe-results-count { color: var(--muted); }
.oe-results-count strong { color: #111111; }
.oe-mobile-filter-btn {
  background: #ffffff;
  border-color: rgba(27,107,58,0.18);
  color: var(--warm);
}

/* Neighbourhood cards */
.oe-hood-card {
  background: #ffffff;
  border-color: rgba(27,107,58,0.12);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.oe-hood-card:hover { border-color: var(--fire); box-shadow: 0 4px 16px rgba(27,107,58,0.10); }
.oe-hood-name { color: #111111; }
.oe-hood-count { color: var(--muted); }

/* Pagination */
.oe-page-btn {
  background: #ffffff;
  border-color: rgba(27,107,58,0.15);
  color: var(--warm);
}
.oe-page-btn.active, .oe-page-btn:hover {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
}

/* Single listing hero */
.oe-single-hero { background: var(--charcoal); }
.oe-single-hero-overlay {
  background: linear-gradient(to top, rgba(244,247,245,0.97) 0%, transparent 60%);
}
.oe-single-hero .oe-hero-bg { opacity: 0.5; }

/* Info card */
.oe-info-card {
  background: #ffffff;
  border-color: rgba(27,107,58,0.13);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.oe-info-card-map {
  background: linear-gradient(135deg, #e8f2ec, #d4eadc);
}
.oe-info-row { color: var(--warm); border-bottom-color: rgba(27,107,58,0.07); }
.oe-info-row strong { color: #111111; }
.oe-info-row a { color: var(--fire); }
.oe-order-btn {
  background: linear-gradient(135deg, var(--fire), #134f2b);
  box-shadow: 0 4px 18px rgba(27,107,58,0.30);
}

/* Primary button — red CTA */
.oe-btn-primary { background: var(--fire) !important; color: #fff !important; }

/* Buttons */
.oe-btn-outline {
  border-color: rgba(27,107,58,0.25);
  color: var(--fire) !important;
}
.oe-btn-outline:hover { border-color: var(--fire); color: var(--fire) !important; }

/* Review form */
.oe-review-form {
  background: #ffffff;
  border-color: rgba(27,107,58,0.13);
}
.oe-review-form h3 { color: #111111; }
.oe-form-group label { color: var(--muted); }
.oe-form-group input,
.oe-form-group textarea,
.oe-form-group select {
  background: var(--mid);
  border-color: rgba(27,107,58,0.15);
  color: #111111;
}
.oe-form-group input:focus,
.oe-form-group textarea:focus,
.oe-form-group select:focus { border-color: var(--fire); }

/* Form cards */
.oe-form-card {
  background: #ffffff;
  border-color: rgba(27,107,58,0.13);
}
.oe-form-card h2 { color: var(--warm); border-bottom-color: rgba(27,107,58,0.1); }

/* Open/closed status */
.oe-open { color: #1B6B3A; }
.oe-closed { color: #C0392B; }

/* Map toggle */
.oe-map-toggle {
  background: #ffffff;
  border-color: rgba(27,107,58,0.15);
}
.oe-map-toggle button { color: var(--warm); }
.oe-map-toggle button.active { background: var(--fire); color: #fff; }

/* Footer */
.oe-footer {
  background: #111111;
  border-top: none;
}
.oe-footer-logo { color: #ffffff; }
.oe-footer-logo span { color: var(--red); }
.oe-footer-desc { color: rgba(255,255,255,0.5); }
.oe-footer-col h4 { color: rgba(255,255,255,0.35); }
.oe-footer-col a { color: rgba(255,255,255,0.6); }
.oe-footer-col a:hover { color: #ffffff; }
.oe-footer-bottom { color: rgba(255,255,255,0.35); border-top-color: rgba(255,255,255,0.08); }

/* Card cuisine category — red */
.oe-card-cat { color: var(--red); }

/* Notices */
.oe-notice-success { background: rgba(27,107,58,0.07); border-color: rgba(27,107,58,0.25); color: #1B6B3A; }
.oe-notice-error { background: rgba(192,57,43,0.07); border-color: rgba(192,57,43,0.25); color: #C0392B; }
.oe-notice-info { background: rgba(45,158,95,0.07); border-color: rgba(45,158,95,0.25); color: var(--fire); }

/* Badges */
.oe-badge-fire { background: var(--fire); color: #fff; }
.oe-badge-gold { background: var(--gold); color: #fff; }
.oe-badge-outline {
  background: rgba(255,255,255,0.9);
  border-color: rgba(27,107,58,0.2);
  color: #111111;
  backdrop-filter: blur(4px);
}
