/*
Theme Name:  Mawasem SA
Theme URI:   https://mawasem.sa
Description: ثيم مواسم.sa — الدليل السياحي الشامل للمملكة العربية السعودية
Version:     1.2.2
Author:      Ahmed Al-Shammari
Text Domain: mawasem
Domain Path: /languages
Requires WP: 6.0
Requires PHP: 8.0
*/

/* ═══════════════════════════════════════════════
   CSS VARIABLES — الهوية الجديدة (فاتح + ذهبي)
   ═══════════════════════════════════════════════ */
:root {
  /* الألوان الأساسية */
  --primary:        #B8860B;
  --primary-dark:   #8B6508;
  --primary-light:  #D4A017;
  --primary-bg:     #FFF8E7;

  /* الخلفيات — فاتحة */
  --bg-page:        #F5F3EE;
  --bg-white:       #FFFFFF;
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #FAFAFA;
  --bg-section:     #F0EDE6;
  --bg-dark:        #1A1A1A;

  /* النصوص */
  --text-primary:   #1A1A1A;
  --text-secondary: #444444;
  --text-muted:     #888888;
  --text-light:     #BBBBBB;

  /* الحدود */
  --border:         #E8E3D8;
  --border-hover:   #B8860B;
  --border-focus:   #B8860B;

  /* الحالات */
  --color-live:     #16a34a;
  --color-today:    #B8860B;
  --color-sold:     #dc2626;
  --color-soon:     #7c3aed;
  --crowd-low:      #16a34a;
  --crowd-med:      #d97706;
  --crowd-high:     #dc2626;

  /* الخطوط */
  --font-primary:   'Cairo', sans-serif;
  --font-display:   'Playfair Display', serif;

  /* الشكل */
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-full:    999px;

  /* الظلال */
  --shadow-sm:      0 1px 4px rgba(0,0,0,.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.12);
  --shadow-hover:   0 12px 40px rgba(0,0,0,.15);

  --transition:     0.22s ease;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; direction:rtl; }
body {
  font-family: var(--font-primary);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a   { color: var(--primary); text-decoration:none; transition: all var(--transition); }
a:hover { opacity:.85; }

/* ═══════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════ */
.maw-container { max-width:1200px; margin:0 auto; padding:0 1.5rem; }
.maw-section   { padding:3rem 0; }
.maw-section-header {
  display:flex; justify-content:space-between; align-items:baseline; margin-bottom:1.8rem;
}
.maw-section-title {
  font-size:22px; font-weight:800; color:var(--text-primary); position:relative; padding-bottom:10px;
}
.maw-section-title::after {
  content:''; position:absolute; bottom:0; right:0; width:40px; height:3px;
  background:var(--primary); border-radius:2px;
}
.maw-view-all {
  font-size:13px; font-weight:600; color:var(--primary);
  border-bottom:1px solid var(--primary); padding-bottom:1px;
}
.maw-view-all:hover { opacity:.75; }

/* ═══════════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════════ */
.maw-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.maw-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.maw-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.maw-events-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media(max-width:1024px) {
  .maw-grid-3,.maw-events-grid { grid-template-columns:repeat(2,1fr); }
  .maw-grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px) {
  .maw-grid-3,.maw-grid-2,.maw-grid-4,.maw-events-grid { grid-template-columns:1fr; }
  .maw-container { padding:0 1rem; }
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.maw-header {
  background:#fff;
  border-bottom:1px solid var(--border);
  height:64px;
  position:sticky; top:0; z-index:200;
  box-shadow: var(--shadow-sm);
}
.maw-header-inner {
  display:flex; align-items:center; justify-content:space-between; height:100%;
}
.maw-logo { display:flex; align-items:center; gap:8px; text-decoration:none; }
.maw-logo-mark {
  width:36px; height:36px; border-radius:50%;
  background:var(--primary); display:flex; align-items:center;
  justify-content:center; font-size:15px; font-weight:800; color:#fff;
}
.maw-logo-text { font-size:18px; font-weight:800; color:var(--text-primary); }
.maw-logo-text span { color:var(--primary); }
.maw-nav-list { display:flex; gap:1.5rem; list-style:none; }
.maw-nav-list a { font-size:13px; color:var(--text-secondary); font-weight:600; padding:4px 0; }
.maw-nav-list a:hover,.maw-nav-list .current-menu-item>a { color:var(--primary); opacity:1; }
.maw-header-actions { display:flex; gap:8px; align-items:center; }
.maw-lang-btn {
  background:none; border:1.5px solid var(--border); color:var(--text-muted);
  font-size:11px; font-family:var(--font-primary); padding:5px 12px;
  border-radius:var(--radius-full); cursor:pointer; transition:all var(--transition); font-weight:600;
}
.maw-lang-btn:hover { border-color:var(--primary); color:var(--primary); }
.maw-fav-btn {
  display:flex; align-items:center; gap:5px;
  background:none; border:1.5px solid var(--border); color:var(--text-muted);
  font-size:11px; font-weight:600; padding:5px 12px;
  border-radius:var(--radius-full); cursor:pointer; transition:all var(--transition); text-decoration:none;
}
.maw-fav-btn:hover { border-color:#e84393; color:#e84393; opacity:1; }
.maw-fav-count {
  background:var(--primary); color:#fff; font-size:9px; font-weight:800;
  min-width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:0 2px;
}
.maw-search-toggle {
  width:34px; height:34px; border-radius:50%;
  background:var(--bg-section); border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:14px; transition:all var(--transition);
}
.maw-search-toggle:hover { border-color:var(--primary); background:var(--primary-bg); }

/* ═══════════════════════════════════════════════
   HERO — فاتح
   ═══════════════════════════════════════════════ */
.maw-hero-slim {
  background: linear-gradient(135deg, #FFF8E7 0%, #F5F0E8 50%, #EDE8DD 100%);
  border-bottom:1px solid var(--border);
  padding:3rem 0 2.5rem;
  position:relative; overflow:hidden;
}
.maw-hero-slim::before {
  content:''; position:absolute; top:-50px; left:-50px;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle, rgba(184,134,11,.08) 0%, transparent 70%);
}
.maw-hero-slim::after {
  content:''; position:absolute; bottom:-80px; right:10%;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(184,134,11,.06) 0%, transparent 70%);
}
.maw-hero-slim-content { position:relative; z-index:1; }
.maw-hero-slim-title {
  font-size:42px; font-weight:900; line-height:1.15; margin-bottom:.5rem;
  color:var(--text-primary);
}
.maw-hero-slim-title em {
  color:var(--primary); font-style:italic;
  font-family:var(--font-display); font-weight:400; font-size:46px;
}
.maw-hero-slim-sub { font-size:15px; color:var(--text-muted); font-weight:400; }

/* ═══════════════════════════════════════════════
   CITY CIRCLES — محسّن
   ═══════════════════════════════════════════════ */
.maw-cities-section {
  background:var(--bg-white); padding:2rem 0;
  border-bottom:1px solid var(--border);
}
.maw-city-circles {
  display:flex; gap:1.8rem; overflow-x:auto;
  padding-bottom:8px; scrollbar-width:none;
}
.maw-city-circles::-webkit-scrollbar { display:none; }
.maw-city-circle {
  display:flex; flex-direction:column; align-items:center; gap:8px;
  text-decoration:none; flex-shrink:0; transition:transform .2s;
}
.maw-city-circle:hover { transform:translateY(-4px); opacity:1; }
.maw-city-circle-img {
  width:88px; height:88px; border-radius:50%; overflow:hidden;
  border:3px solid var(--border); transition:border-color .2s;
  box-shadow:var(--shadow-sm);
}
.maw-city-circle:hover .maw-city-circle-img { border-color:var(--primary); box-shadow:var(--shadow-md); }
.maw-city-circle-img img { width:100%; height:100%; object-fit:cover; display:block; }
.maw-city-circle-placeholder {
  width:100%; height:100%; background:var(--bg-section);
  display:flex; align-items:center; justify-content:center; font-size:30px;
}
.maw-city-circle-name {
  font-size:12px; font-weight:700; color:var(--text-secondary);
  text-align:center; max-width:88px; white-space:nowrap;
  overflow:hidden; text-overflow:ellipsis; transition:color .2s;
}
.maw-city-circle:hover .maw-city-circle-name { color:var(--primary); }

/* ═══════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════ */
.maw-simple-filter {
  background:var(--bg-white); border-bottom:1px solid var(--border);
  padding:.9rem 0; position:sticky; top:64px; z-index:90;
  box-shadow:var(--shadow-sm);
}
.maw-simple-filter-inner { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.maw-chip {
  background:none; border:1.5px solid var(--border); color:var(--text-muted);
  font-family:var(--font-primary); font-size:12px; font-weight:600;
  padding:6px 16px; border-radius:var(--radius-full); cursor:pointer;
  transition:all .15s; white-space:nowrap;
}
.maw-chip:hover { border-color:var(--primary); color:var(--primary); background:var(--primary-bg); }
.maw-chip.active { background:var(--primary); border-color:var(--primary); color:#fff; }

/* ═══════════════════════════════════════════════
   EVENT CARD — مثل المسافر وبوكينج
   ═══════════════════════════════════════════════ */
.maw-ecard {
  display:block; text-decoration:none;
  background:var(--bg-card); border-radius:var(--radius-lg);
  overflow:hidden; border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:transform .25s, box-shadow .25s, border-color .25s;
  color:var(--text-primary);
}
.maw-ecard:hover {
  transform:translateY(-5px); box-shadow:var(--shadow-hover);
  border-color:var(--border-hover); opacity:1;
}
.maw-ecard-img { position:relative; height:195px; overflow:hidden; background:var(--bg-section); }
.maw-ecard-img img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .4s ease;
}
.maw-ecard:hover .maw-ecard-img img { transform:scale(1.05); }
.maw-ecard-no-img {
  width:100%; height:100%; background:linear-gradient(135deg,#f0ebe0,#e8e0d0);
  display:flex; align-items:center; justify-content:center; font-size:44px; opacity:.5;
}
.maw-ecard-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}

/* Status badge */
.maw-status {
  position:absolute; top:10px; right:10px;
  font-size:9px; font-weight:800; letter-spacing:.6px; text-transform:uppercase;
  padding:4px 10px; border-radius:var(--radius-full);
  display:flex; align-items:center; gap:4px;
  backdrop-filter:blur(8px);
}
.maw-status-dot { width:5px; height:5px; border-radius:50%; }
.maw-status.live     { background:rgba(22,163,74,.15);  color:#15803d; border:1px solid rgba(22,163,74,.3); }
.maw-status.today    { background:rgba(184,134,11,.15); color:#92650a; border:1px solid rgba(184,134,11,.3); }
.maw-status.sold_out { background:rgba(220,38,38,.15);  color:#b91c1c; border:1px solid rgba(220,38,38,.3); }
.maw-status.upcoming { background:rgba(124,58,237,.15); color:#6d28d9; border:1px solid rgba(124,58,237,.3); }
.maw-status.live .maw-status-dot     { background:#16a34a; animation:maw-pulse 1.5s infinite; }
.maw-status.today .maw-status-dot    { background:#B8860B; }
.maw-status.sold_out .maw-status-dot { background:#dc2626; animation:maw-pulse 1s infinite; }
.maw-status.upcoming .maw-status-dot { background:#7c3aed; }
@keyframes maw-pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.7);} }

/* card body */
.maw-ecard-body { padding:1rem 1.2rem 1.2rem; }
.maw-ecard-meta { display:flex; flex-direction:column; gap:3px; margin-bottom:7px; }
.maw-ecard-date-inline { font-size:11px; color:var(--primary); font-weight:700; }
.maw-ecard-city-inline { font-size:11px; color:var(--text-muted); font-weight:500; }
.maw-ecard-title { font-size:15px; font-weight:800; color:var(--text-primary); line-height:1.35; margin-bottom:6px; }
.maw-ecard-excerpt {
  font-size:12px; color:var(--text-muted); line-height:1.6; margin-bottom:10px;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.maw-ecard-footer {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:10px; border-top:1px solid var(--border);
}
.maw-ecard-footer-right { display:flex; align-items:center; gap:8px; }
.maw-ecard-ticket { font-size:12px; font-weight:800; color:var(--primary); }
.maw-crowd-badge { font-size:10px; font-weight:700; }
.maw-crowd-badge.low    { color:var(--crowd-low); }
.maw-crowd-badge.medium { color:var(--crowd-med); }
.maw-crowd-badge.high   { color:var(--crowd-high); }
.maw-ecard-cta { font-size:12px; color:var(--text-muted); font-weight:600; transition:color .2s; }
.maw-ecard:hover .maw-ecard-cta { color:var(--primary); }

/* ═══════════════════════════════════════════════
   NEWS CARD
   ═══════════════════════════════════════════════ */
.maw-news-card {
  display:block; text-decoration:none;
  background:var(--bg-card); border-radius:var(--radius-lg);
  overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow-sm);
  transition:transform .25s, box-shadow .25s; color:var(--text-primary);
}
.maw-news-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-hover); opacity:1; }
.maw-news-img { height:150px; position:relative; overflow:hidden; }
.maw-news-img img { width:100%; height:100%; object-fit:cover; }
.maw-news-cat {
  position:absolute; bottom:8px; right:8px; font-size:9px; font-weight:700;
  letter-spacing:.8px; text-transform:uppercase; padding:3px 9px;
  border-radius:var(--radius-full); backdrop-filter:blur(8px);
}
.maw-news-cat.tourism { background:rgba(22,163,74,.15); color:#15803d; border:1px solid rgba(22,163,74,.3); }
.maw-news-cat.culture { background:rgba(184,134,11,.15); color:#92650a; border:1px solid rgba(184,134,11,.3); }
.maw-news-cat.travel  { background:rgba(124,58,237,.15); color:#6d28d9; border:1px solid rgba(124,58,237,.3); }
.maw-news-body { padding:1rem 1.1rem; }
.maw-news-date { font-size:10px; color:var(--text-muted); margin-bottom:5px; }
.maw-news-title { font-size:14px; font-weight:700; line-height:1.4; margin-bottom:6px; color:var(--text-primary); }
.maw-news-excerpt { font-size:12px; color:var(--text-muted); line-height:1.6; }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.maw-btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-primary); font-size:13px; font-weight:700;
  padding:11px 24px; border-radius:var(--radius-md); border:none;
  cursor:pointer; transition:all var(--transition); text-decoration:none; white-space:nowrap;
}
.maw-btn-primary { background:var(--primary); color:#fff; }
.maw-btn-primary:hover { background:var(--primary-dark); opacity:1; }
.maw-btn-ghost {
  background:var(--bg-white); color:var(--text-primary);
  border:1.5px solid var(--border);
}
.maw-btn-ghost:hover { border-color:var(--primary); color:var(--primary); opacity:1; }
.maw-btn-outline {
  background:none; color:var(--text-secondary); border:1.5px solid var(--border);
  font-weight:600; padding:6px 14px; font-size:12px; border-radius:var(--radius-md);
}
.maw-btn-outline:hover,
.maw-ecard:hover .maw-btn-outline {
  background:var(--primary); border-color:var(--primary); color:#fff; opacity:1;
}

/* ═══════════════════════════════════════════════
   CROWD INDICATOR
   ═══════════════════════════════════════════════ */
.maw-crowd { display:flex; align-items:center; gap:7px; margin-bottom:10px; }
.maw-crowd-label { font-size:10px; color:var(--text-muted); white-space:nowrap; }
.maw-crowd-bar   { flex:1; height:4px; background:var(--border); border-radius:2px; overflow:hidden; }
.maw-crowd-fill  { height:100%; border-radius:2px; }
.maw-crowd-fill.low    { background:var(--crowd-low);  width:28%; }
.maw-crowd-fill.medium { background:var(--crowd-med);  width:62%; }
.maw-crowd-fill.high   { background:var(--crowd-high); width:88%; }
.maw-crowd-text        { font-size:10px; font-weight:700; }
.maw-crowd-text.low    { color:var(--crowd-low); }
.maw-crowd-text.medium { color:var(--crowd-med); }
.maw-crowd-text.high   { color:var(--crowd-high); }

/* ═══════════════════════════════════════════════
   MAP MODAL
   ═══════════════════════════════════════════════ */
.maw-modal-overlay {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,.5); backdrop-filter:blur(6px);
  align-items:center; justify-content:center;
}
.maw-modal-overlay.open { display:flex; }
.maw-modal-box {
  background:#fff; border-radius:var(--radius-lg);
  border:1px solid var(--border); width:380px; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.maw-modal-header {
  padding:1rem 1.2rem; border-bottom:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
}
.maw-modal-title { font-size:14px; font-weight:700; color:var(--text-primary); }
.maw-modal-close { background:none; border:none; color:var(--text-muted); font-size:18px; cursor:pointer; }
.maw-map-preview {
  height:190px; background:linear-gradient(135deg,#e8f4fd,#c3dff5);
  position:relative; display:flex; align-items:center; justify-content:center;
}
.maw-map-grid {
  position:absolute; inset:0; opacity:.15;
  background-image:linear-gradient(rgba(0,100,200,.5) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,100,200,.5) 1px,transparent 1px);
  background-size:30px 30px;
}
.maw-map-pin {
  width:44px; height:44px; border-radius:50%;
  background:rgba(184,134,11,.2); border:2px solid var(--primary);
  display:flex; align-items:center; justify-content:center; font-size:18px;
  position:relative; z-index:1; animation:maw-pin-pulse 2s infinite;
}
@keyframes maw-pin-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(184,134,11,.4);} 50%{box-shadow:0 0 0 12px rgba(184,134,11,0);} }
.maw-modal-body { padding:1.2rem; display:flex; flex-direction:column; gap:10px; }
.maw-modal-venue-name    { font-size:14px; font-weight:700; color:var(--text-primary); }
.maw-modal-venue-address { font-size:12px; color:var(--text-muted); }

/* ═══════════════════════════════════════════════
   SHARE BUTTONS
   ═══════════════════════════════════════════════ */
.maw-share-strip {
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  padding:1rem 0; border-top:1px solid var(--border);
}
.maw-share-label { font-size:11px; color:var(--text-muted); font-weight:700; }
.maw-share-btn {
  display:flex; align-items:center; gap:5px;
  background:var(--bg-section); border:1px solid var(--border);
  color:var(--text-muted); font-family:var(--font-primary);
  font-size:11px; font-weight:600; padding:6px 14px; border-radius:var(--radius-md);
  cursor:pointer; transition:all var(--transition); text-decoration:none;
}
.maw-share-btn:hover { border-color:var(--primary); color:var(--primary); background:var(--primary-bg); opacity:1; }
.maw-share-btn.wa:hover { border-color:#25D366; color:#25D366; background:#f0fdf4; }
.maw-share-btn.tw:hover { border-color:#1DA1F2; color:#1DA1F2; background:#eff8ff; }
.maw-share-btn.fb:hover { border-color:#1877F2; color:#1877F2; background:#eff6ff; }

/* ═══════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════ */
.maw-breadcrumbs {
  display:flex; gap:6px; align-items:center; flex-wrap:wrap;
  font-size:12px; color:var(--text-muted); margin-bottom:1rem;
}
.maw-breadcrumbs a { color:var(--text-muted); }
.maw-breadcrumbs a:hover { color:var(--primary); opacity:1; }
.maw-breadcrumbs .sep { color:var(--text-light); }
.maw-breadcrumbs .current { color:var(--text-secondary); font-weight:600; }

/* ═══════════════════════════════════════════════
   SIDEBAR & WIDGETS
   ═══════════════════════════════════════════════ */
.maw-sidebar { display:flex; flex-direction:column; gap:1.5rem; }
.maw-widget {
  background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.3rem; box-shadow:var(--shadow-sm);
}
.maw-widget-title {
  font-size:14px; font-weight:700; margin-bottom:1rem;
  padding-bottom:8px; border-bottom:2px solid var(--primary);
  color:var(--text-primary);
}

/* ═══════════════════════════════════════════════
   WEATHER WIDGET
   ═══════════════════════════════════════════════ */
.maw-weather {
  display:flex; align-items:center; gap:8px;
  background:var(--primary-bg); border:1px solid rgba(184,134,11,.2);
  border-radius:var(--radius-md); padding:10px 14px; font-size:13px;
}
.maw-weather-icon { font-size:22px; }
.maw-weather-temp { font-weight:800; color:var(--primary); }
.maw-weather-desc { color:var(--text-muted); font-size:12px; }

/* ═══════════════════════════════════════════════
   SINGLE EVENT
   ═══════════════════════════════════════════════ */
.maw-single-hero { position:relative; height:320px; overflow:hidden; }
.maw-single-hero img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.maw-single-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.maw-single-hero-content { position:absolute; bottom:0; left:0; right:0; padding:2rem; }
.maw-single-meta {
  display:flex; gap:1.5rem; flex-wrap:wrap;
  margin:1.5rem 0; padding:1.5rem;
  background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
}
.maw-meta-item { display:flex; flex-direction:column; gap:4px; }
.maw-meta-label { font-size:10px; color:var(--text-muted); font-weight:700; letter-spacing:.6px; text-transform:uppercase; }
.maw-meta-value { font-size:14px; font-weight:700; color:var(--text-primary); }
.maw-single-content { font-size:15px; line-height:1.9; color:var(--text-secondary); }
.maw-single-content h2,.maw-single-content h3 { color:var(--text-primary); margin:1.5rem 0 .8rem; }
.maw-single-content p { margin-bottom:1rem; }

/* ═══════════════════════════════════════════════
   CITY PAGE
   ═══════════════════════════════════════════════ */
.maw-city-header { display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin-bottom:2.5rem; align-items:start; }
@media(max-width:768px) { .maw-city-header { grid-template-columns:1fr; } }
.maw-city-img-wrap { border-radius:var(--radius-lg); overflow:hidden; height:300px; box-shadow:var(--shadow-md); }
.maw-city-img { width:100%; height:100%; object-fit:cover; display:block; }
.maw-city-img-placeholder {
  width:100%; height:100%; background:var(--bg-section);
  display:flex; align-items:center; justify-content:center; font-size:60px; opacity:.4;
}
.maw-city-header-info { display:flex; flex-direction:column; gap:.8rem; padding:.5rem 0; }
.maw-city-en { font-size:12px; color:var(--primary); font-weight:700; letter-spacing:1.5px; text-transform:uppercase; }
.maw-city-title { font-size:34px; font-weight:900; line-height:1.15; color:var(--text-primary); }
.maw-city-region { font-size:13px; color:var(--text-muted); }
.maw-city-facts { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:.5rem; }
.maw-city-fact {
  display:flex; align-items:flex-start; gap:8px;
  background:var(--bg-section); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:10px 12px;
}
.maw-city-fact-full { grid-column:1/-1; }
.maw-city-fact-icon { font-size:18px; flex-shrink:0; margin-top:1px; }
.maw-city-fact-label { font-size:9px; color:var(--text-muted); font-weight:700; letter-spacing:.6px; text-transform:uppercase; margin-bottom:3px; }
.maw-city-fact-value { font-size:12px; font-weight:700; color:var(--text-primary); line-height:1.4; }
.maw-city-content {
  font-size:15px; line-height:1.9; color:var(--text-secondary); margin-bottom:2.5rem;
  padding:1.5rem; background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--radius-lg); box-shadow:var(--shadow-sm);
}
.maw-city-content p { margin-bottom:1rem; }
.maw-city-content p:last-child { margin-bottom:0; }
.maw-city-section { margin-bottom:2.5rem; padding-top:2rem; border-top:1px solid var(--border); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.maw-footer {
  background:var(--bg-dark); color:#ccc;
  border-top:1px solid #333; padding:2.5rem 0 0;
}
.maw-footer-inner { display:flex; justify-content:space-between; align-items:flex-start; padding-bottom:1.5rem; gap:2rem; }
.maw-footer-brand p { font-size:12px; color:#999; margin-top:6px; max-width:280px; }
.maw-footer-links { display:flex; gap:1.2rem; list-style:none; flex-wrap:wrap; }
.maw-footer-links a { font-size:12px; color:#999; }
.maw-footer-links a:hover { color:var(--primary); opacity:1; }
.maw-disclaimer {
  font-size:11px; color:#666; text-align:center;
  padding:.8rem 0; border-top:1px solid #333;
}
.maw-logo-text-footer { font-size:18px; font-weight:800; color:#fff; }
.maw-logo-text-footer span { color:var(--primary); }

/* ═══════════════════════════════════════════════
   COMPARE BAR
   ═══════════════════════════════════════════════ */
.maw-compare-bar {
  position:fixed; bottom:0; left:0; right:0; z-index:300;
  background:#fff; border-top:1px solid var(--border);
  padding:.8rem 2rem; display:flex; align-items:center; gap:1rem;
  box-shadow:0 -4px 20px rgba(0,0,0,.1);
}
.maw-compare-bar[hidden] { display:none; }
.maw-compare-bar-label { font-size:12px; color:var(--text-muted); font-weight:700; white-space:nowrap; }
.maw-compare-items { display:flex; gap:8px; flex:1; flex-wrap:wrap; }
.maw-compare-item {
  background:var(--bg-section); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:5px 12px;
  font-size:11px; color:var(--text-secondary);
  display:flex; align-items:center; gap:6px;
}
.maw-compare-item-x { background:none; border:none; color:var(--text-muted); cursor:pointer; font-size:14px; }

/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */
.maw-toast {
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%);
  background:var(--primary); color:#fff; font-weight:700;
  padding:10px 24px; border-radius:var(--radius-md); font-size:13px;
  z-index:9999; font-family:var(--font-primary); transition:opacity .3s;
  white-space:nowrap; pointer-events:none; box-shadow:var(--shadow-md);
}

/* ═══════════════════════════════════════════════
   NO RESULTS / PAGINATION
   ═══════════════════════════════════════════════ */
.maw-no-events { grid-column:1/-1; text-align:center; padding:4rem; color:var(--text-muted); font-size:15px; }
.maw-pagination { margin-top:2.5rem; display:flex; justify-content:center; gap:8px; }
.maw-pagination .page-numbers {
  background:var(--bg-white); border:1px solid var(--border);
  color:var(--text-muted); padding:8px 16px;
  border-radius:var(--radius-md); font-size:13px;
  text-decoration:none; font-weight:600; transition:all .2s;
}
.maw-pagination .page-numbers.current,
.maw-pagination .page-numbers:hover {
  background:var(--primary); border-color:var(--primary); color:#fff; opacity:1;
}

/* ═══════════════════════════════════════════════
   HEART BUTTON
   ═══════════════════════════════════════════════ */
.maw-heart {
  position:absolute; top:10px; left:10px;
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,255,255,.9); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:14px; transition:all var(--transition); z-index:5;
  color:var(--text-muted); box-shadow:var(--shadow-sm);
}
.maw-heart:hover,.maw-heart.active { background:#fff0f6; border-color:#e84393; color:#e84393; }

/* ═══════════════════════════════════════════════
   MAP TRIGGER
   ═══════════════════════════════════════════════ */
.maw-map-trigger {
  background:none; border:none; color:var(--text-muted);
  font-family:var(--font-primary); font-size:11px; cursor:pointer;
  padding:0; transition:color var(--transition); font-weight:600;
}
.maw-map-trigger:hover { color:var(--primary); }

/* ═══════════════════════════════════════════════
   SINGLE LAYOUT RESPONSIVE
   ═══════════════════════════════════════════════ */
@media(max-width:900px) {
  .maw-single-layout { grid-template-columns:1fr !important; }
  .maw-hero-slim-title { font-size:30px; }
  .maw-hero-slim-title em { font-size:34px; }
  .maw-compare-bar { padding:.8rem 1rem; }
  .maw-nav { display:none; }
}

/* ═══════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════ */
@media print {
  body { background:#fff; color:#000; }
  .maw-header,.maw-simple-filter,.maw-modal-overlay,.maw-heart,.maw-share-strip { display:none !important; }
  .maw-ecard { border:1px solid #ddd; break-inside:avoid; box-shadow:none; }
  .maw-ecard-img { height:120px; }
}
