/* ===== GUIA VIP - STYLES ===== */

:root {
  --bg-dark: #2a1005;
  --bg-med: #3d1f0a;
  --bg-card: #4a2510;
  --gold: #f0c050;
  --gold-light: #f5deb3;
  --gold-bright: #ffd700;
  --amber: #e8a020;
  --text-main: #f5deb3;
  --text-muted: #c8a87a;
  --border: #6b3d1a;
  --shadow: rgba(0,0,0,0.5);
  --radius: 14px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  height: 100%;
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  background-image: var(--app-bg-image, none);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 2, 0.82);
  z-index: 0;
  pointer-events: none;
}

#app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ===== SCREENS ===== */
.screen { display: none; min-height: 100vh; }
#screen-city { padding-bottom: 105px; }
.screen.active { display: flex; flex-direction: column; }

/* ===== TOP BAR ===== */
.top-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #3d1f0a, #5a2d10);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 3px 15px rgba(0,0,0,0.5);
}

.back-btn {
  background: rgba(240,192,80,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.back-btn:active { transform: scale(0.9); background: rgba(240,192,80,0.3); }

.top-bar-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  flex: 1;
  text-align: right;
}

/* ===== BANNER ===== */
.banner-container {
  position: relative;
  width: calc(100% - 24px);
  margin: 0 12px;
  overflow: hidden;
  background: #1a0a02;
  min-height: 180px;
  flex-shrink: 0;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.banner-slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.banner-slide {
  min-width: 100%;
  height: 180px;
  object-fit: cover;
  cursor: pointer;
  background: linear-gradient(135deg, #3d1f0a, #5a2d10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* City banner - compact but taller than footer */
#city-banner {
  min-height: 130px !important;
  border-radius: 0 0 22px 22px !important;
}
#city-banner .banner-slide {
  height: 130px;
}
#city-banner .banner-slide img {
  height: 130px;
}

.banner-slide .banner-placeholder {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  padding: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  border-radius: 0 0 22px 22px;
  width: 100%;
}

.banner-prev, .banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(240,192,80,0.4);
  color: rgba(240,192,80,0.7);
  font-size: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.banner-prev { left: 8px; }
.banner-next { right: 8px; }

.banner-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,192,80,0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.banner-dot.active { background: var(--gold); }

/* ===== HOME CONTENT ===== */
.home-content {
  padding: 0 0 20px;
  flex: 1;
}

/* ===== SEARCH ===== */
.search-container {
  padding: 16px 16px 8px;
}

/* City screen search closer to banner */
#screen-city .search-container {
  padding: 8px 16px 6px;
}

.search-input {
  width: 100%;
  padding: 12px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--text-main);
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--text-muted); }

/* ===== CITIES GRID ===== */
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 8px 16px;
}

.city-card {
  background: url('city-card-bg.jpg') center/cover no-repeat;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.city-card:active { }
.city-card-icon { display: none !important; }
.city-card-name { display: none !important; }

/* ===== SPECIAL CARDS ===== */
.special-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 8px 16px 16px;
}

.special-card {
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  border: 1.5px solid #f0c050;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.special-card:active { }

.emergency-card,
.advertise-card,
.review-card {
  background: linear-gradient(135deg, #3d1f0a, #6b3d1a);
  border-color: #f0c050;
}

.special-card-icon { display: none !important; }
.special-card-title { display: none !important; }
.special-card-sub { display: none !important; }
.special-card-content { display: none !important; }

.special-card-icon { font-size: 30px; margin-bottom: 6px; }

.special-card-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.special-card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* ===== HOME FOOTER BANNER ===== */
.home-footer-banner {
  width: calc(100% - 24px);
  margin: 4px 12px 8px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.home-footer-banner img {
  width: 100%;
  display: block;
  max-height: 80px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 16px;
}

/* ===== FOOTER ===== */
.app-footer {
  text-align: center;
  padding: 16px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: 1px solid var(--border);
}

/* ===== CITY CONTENT ===== */
.city-content {
  flex: 1;
  padding-bottom: 20px;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 8px 12px;
}

.category-card {
  background: linear-gradient(135deg, #2a1005, #3d1f0a);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.category-card:active { transform: scale(0.95); }

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.category-card-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #3d1f0a, #2a1005);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.category-card-name { display: none !important; }

/* ===== CITY FOOTER BANNER ===== */
.city-footer-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 12px 8px;
  z-index: 90;
  pointer-events: auto;
  background: linear-gradient(to top, rgba(26,8,2,0.95) 60%, transparent);
}
.city-footer-banner img,
.city-footer-banner .footer-slide {
  width: 100%;
  display: block;
  max-height: 80px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.5);
}

/* ===== SUBCATEGORIES GRID ===== */
.subcategories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 14px;
}
.subcategories-grid .category-card {
  min-height: 100px;
}
.subcategories-grid .category-card-img,
.subcategories-grid .category-card-img-placeholder {
  height: 85px;
}

/* ===== CATEGORY CONTENT ===== */
.category-search-sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(42,16,5,0.98) 80%, transparent 100%);
  padding-bottom: 4px;
}

.category-content {
  flex: 1;
  padding-bottom: 20px;
}

/* ===== COMPANY MODAL ===== */
.company-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.company-modal {
  background: linear-gradient(160deg, #2a1005 0%, #1a0800 100%);
  border: 1.5px solid var(--gold);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.7);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.company-modal-logo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
  display: block;
}

.company-modal-logo-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #3d1f0a, #2a1005);
  border-radius: 22px 22px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.company-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.company-modal-img-wrap {
  position: relative;
}

.company-modal-body {
  padding: 18px 20px 28px;
}

.company-modal-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.3;
}

.company-modal-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.company-modal-hours {
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.company-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

/* ===== RADIO MINI PLAYER ===== */
.radio-mini-player {
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  background: linear-gradient(135deg, #2a1005, #4a2510);
  border-top: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  z-index: 500;
  transition: bottom 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
}
.radio-mini-player.active { bottom: 0; }
.rmp-icon { font-size: 26px; flex-shrink: 0; }
.rmp-info { flex: 1; min-width: 0; }
.rmp-name { font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rmp-status { font-size: 11px; color: var(--text-muted); }
.rmp-btn { background: rgba(240,192,80,0.15); border: 1px solid var(--gold); color: var(--gold); width: 36px; height: 36px; border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rmp-close { border-color: var(--border); color: var(--text-muted); }

/* ===== COMPANY CARDS ===== */
.companies-list {
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-card {
  background: linear-gradient(135deg, rgba(74,37,16,0.92), rgba(61,31,10,0.92));
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

.company-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 10px;
}

.company-logo {
  width: 130px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
  border: none;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.company-info {
  flex: 1;
  min-width: 0;
}

.company-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
  line-height: 1.3;
}

.company-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

.company-hours {
  font-size: 12px;
  color: var(--gold-light);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ===== COMPANY ACTION BUTTONS ===== */
.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px 14px;
}

.company-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 50px;
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  border: none;
}
.company-btn:active { transform: scale(0.95); opacity: 0.85; }

.btn-phone    { background: linear-gradient(135deg, #1a4a1a, #2d7a2d); color: #aaffaa; }
.btn-whatsapp { background: linear-gradient(135deg, #0a3d0a, #128c7e); color: #aaffd4; }
.btn-instagram{ background: linear-gradient(135deg, #4a0a2a, #962d4d); color: #ffaad4; }
.btn-maps     { background: linear-gradient(135deg, #0a2a4a, #1565c0); color: #aad4ff; }
.btn-cardapio { background: linear-gradient(135deg, #3d2a0a, #7a5510); color: #ffd4aa; }
.btn-agenda   { background: linear-gradient(135deg, #2a0a3d, #5d1a7a); color: #d4aaff; }
.btn-email    { background: linear-gradient(135deg, #1a2a3d, #2d4a7a); color: #aaccff; }
.btn-tiktok   { background: linear-gradient(135deg, #1a0a2a, #3d0f5a); color: #e0aaff; }
.btn-site     { background: linear-gradient(135deg, #0a2a1a, #1a5a3a); color: #aaffcc; }

/* ===== RADIO LINK CARDS ===== */
.radio-card {
  background: linear-gradient(135deg, #3d1f0a, #6b3d1a);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
}
.radio-card:active { }
.radio-card.playing { border-color: var(--gold); background: linear-gradient(135deg, #5a2d10, #8b4513); }
.radio-icon { font-size: 32px; flex-shrink: 0; }
.radio-info { flex: 1; min-width: 0; }
.radio-name { font-family: 'Cinzel', serif; font-size: 15px; color: var(--gold); font-weight: 700; }
.radio-desc { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.radio-play-btn { font-size: 22px; color: var(--gold); flex-shrink: 0; }

/* ===== ACCORDION COMPANY ===== */
.company-card-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  user-select: none;
}
.company-card-summary:active { }
.co-arrow {
  color: var(--text-muted);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.company-details {
  border-top: 1px solid rgba(107,61,26,0.4);
  animation: slideDown 0.2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MODALS ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }

.modal-content {
  background: linear-gradient(135deg, #3d1f0a, #2a1005);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  width: 100%;
  max-width: 450px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0,0,0,0.7);
}

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

.modal-header h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 18px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

/* ===== EMERGENCY LIST ===== */
.emergency-list { padding: 12px; }
.emergency-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  text-decoration: none;
  border: 1px solid rgba(107,61,26,0.5);
  transition: background 0.2s;
}
.emergency-item:active { background: rgba(255,255,255,0.1); }
.em-icon { font-size: 22px; }
.em-name { flex: 1; color: var(--text-main); font-size: 15px; }
.em-num { font-family: 'Cinzel', serif; font-size: 20px; color: var(--gold); font-weight: 700; }

/* ===== ADMIN PANEL ===== */
/* ===== ADMIN PANEL REDESIGN ===== */
.admin-panel {
  position: fixed;
  inset: 0;
  background: #12060100;
  background: linear-gradient(160deg, #1a0800 0%, #120500 100%);
  z-index: 300;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-panel.hidden { display: none; }

/* Header */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, #3d1f0a, #5a2d10);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.admin-header h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.admin-close-btn {
  background: rgba(240,192,80,0.15);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 9px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  transition: background 0.2s;
}
.admin-close-btn:active { background: rgba(240,192,80,0.3); }

/* Body */
.admin-body { flex: 1; padding: 0; }

/* Tabs — bottom nav style */
.admin-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: #1f0c03;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 62px;
  z-index: 9;
}
.admin-tab {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  padding: 12px 4px 10px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.2px;
}
.admin-tab .tab-icon { font-size: 20px; }
.admin-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(240,192,80,0.08);
}

.admin-tab-content { display: none; padding: 20px 16px; }
.admin-tab-content.active { display: block; }

/* Section titles */
.admin-tab-content h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(240,192,80,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-tab-content h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  margin: 14px 0 8px;
}

/* Forms */
.admin-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(107,61,26,0.6);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.admin-form label {
  color: var(--gold-light);
  font-size: 12px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Inputs */
.admin-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text-main);
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.admin-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
.admin-input option { background: #2a1005; }
textarea.admin-input { resize: vertical; min-height: 90px; line-height: 1.5; }

/* File input */
.admin-file-input {
  color: var(--text-muted);
  font-size: 13px;
  padding: 10px 0;
}
.admin-upload-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 12px;
}

.img-preview {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-top: 4px;
}

/* Buttons */
.admin-btn {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
}
.admin-btn:active { transform: scale(0.97); }
.admin-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #1a0a02;
  box-shadow: 0 4px 15px rgba(240,192,80,0.3);
}
.admin-btn.primary:active { box-shadow: none; }
.admin-btn.secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  border: 1.5px solid var(--border);
}
.admin-btn.danger {
  background: linear-gradient(135deg, #7a1010, #b01c1c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(176,28,28,0.3);
}

/* Filter bar */
.admin-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.admin-filter .admin-input { flex: 1; }

/* List */
.admin-list { display: flex; flex-direction: column; gap: 10px; }

.admin-list-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,61,26,0.5);
  border-radius: 12px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.admin-list-item:active { background: rgba(255,255,255,0.07); }

.admin-list-item-name {
  flex: 1;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.4;
}

.admin-item-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: flex-end;
}

/* Action buttons — bigger touch targets */
.admin-mini-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(107,61,26,0.6);
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-mini-btn:active { transform: scale(0.92); background: rgba(255,255,255,0.14); }
.admin-mini-btn.del {
  color: #ff6b6b;
  border-color: rgba(122,16,16,0.7);
  background: rgba(122,16,16,0.1);
}
.admin-mini-btn.edit {
  color: var(--gold);
  border-color: rgba(107,74,16,0.7);
  background: rgba(107,74,16,0.1);
}

.drag-handle {
  color: var(--text-muted);
  cursor: grab;
  font-size: 18px;
  padding: 0 4px;
  user-select: none;
}

/* ===== REVIEW BTNS ===== */
.review-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
  transition: transform 0.15s;
}
.review-store-btn:active { transform: scale(0.97); }
.android-btn { background: linear-gradient(135deg, #1a4a1a, #2d7a2d); color: #aaffaa; border: 1px solid #44cc44; }
.ios-btn { background: linear-gradient(135deg, #1a1a3d, #2d2d6b); color: #aaaaff; border: 1px solid #4444cc; }
.instagram-btn { background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737); color: #fff; border: 1px solid #fd1d1d; }

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

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 16px;
}
.empty-state span { font-size: 48px; display: block; margin-bottom: 12px; }

/* ===== COLOR EDITOR ===== */
.color-section-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  padding: 6px 0 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.color-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(107,61,26,0.3);
}

.color-row label {
  color: var(--text-main);
  font-size: 14px;
  font-family: 'Crimson Pro', serif;
  flex: 1;
}

.color-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.color-input-wrap input[type="color"] {
  width: 40px;
  height: 32px;
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 2px;
  background: none;
  cursor: pointer;
}

.color-input-wrap span {
  font-family: monospace;
  font-size: 12px;
  color: var(--text-muted);
  min-width: 58px;
}

/* Space for mini player */
body.radio-playing .screen { padding-bottom: 70px; }

/* ===== CITY BADGE ===== */
.city-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: rgba(42,16,5,0.85);
  border: 1px solid rgba(240,192,80,0.4);
  color: rgba(240,192,80,0.9);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 50px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
  pointer-events: none;
}
.city-badge.visible { display: flex; }

/* ===== PULSE TAP ANIMATION ===== */
@keyframes pulseTap {
  0%   { transform: scale(1); }
  30%  { transform: scale(0.88); }
  60%  { transform: scale(1.06); }
  80%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.tapping {
  animation: pulseTap 0.4s ease forwards !important;
  transition: none !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ===== MASCOT ===== */
.mascot-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ===== ADMIN LOGIN ===== */
#admin-login { z-index: 400; }
#admin-login .modal-content { max-width: 360px; }
#admin-login .admin-form { padding: 20px; margin: 0; border: none; background: transparent; }
