/* Reset scoped to app only */
#grenada-transport-app, #grenada-transport-app *, #grenada-transport-app *::before, #grenada-transport-app *::after {
  box-sizing: border-box;
}
#grenada-transport-app {
  font-family: 'DM Sans', sans-serif;
  background: #f7f5f2;
  color: #2d2a26;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
}
#grenada-transport-app button { font-family: inherit; cursor: pointer; }
#grenada-transport-app input, #grenada-transport-app select, #grenada-transport-app textarea { font-family: inherit; }

/* ═══ HERO ═══ */
.gs-hero {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1a3a2a 0%, #0a1810 50%, #162e22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .08;
  background: radial-gradient(circle at 20% 50%, rgba(200,16,46,.4) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(212,168,83,.3) 0%, transparent 50%);
}
.gs-hero-content { position: relative; text-align: center; z-index: 1; padding: 0 20px; }
.gs-hero-sub { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: #d4a853; margin: 0 0 10px 0; font-weight: 600; }
.gs-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(30px,5vw,48px); color: #fff; font-weight: 700; line-height: 1.1; margin: 0; }
.gs-hero-desc { color: rgba(255,255,255,.5); max-width: 500px; margin: 12px auto 0; font-size: 13px; line-height: 1.6; }
.gs-hero-btns { position: absolute; top: 16px; right: 20px; display: flex; gap: 8px; z-index: 2; }
.gs-hero-btn {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}
.gs-hero-btn:hover { background: rgba(255,255,255,.2); }
.gs-hero-btn.active { background: rgba(200,16,46,.85); }

/* ═══ MAIN LAYOUT ═══ */
.gs-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 32px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.gs-sidebar {
  width: 230px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.gs-mbtn { display: none !important; }
@media(max-width:960px) {
  .gs-sidebar { display: none !important; }
  .gs-mbtn { display: inline-flex !important; }
  .gs-main { padding: 20px 16px 30px; gap: 0; }
  .gs-hero-btns { top: 10px; right: 12px; }
  .gs-hero-btn { padding: 6px 10px; font-size: 10px; }
  .gs-grid { gap: 16px; }
}
.gs-content { flex: 1; min-width: 0; }

/* ═══ TOPBAR ═══ */
.gs-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.gs-topbtns { display: flex; gap: 8px; }
.gs-count { font-size: 14px; color: #8a817c; margin: 0; }
.gs-count b { color: #2d2a26; font-size: 16px; }

/* ═══ BUTTONS ═══ */
.gs-btn-red { background: #c8102e; color: #fff; border: none; border-radius: 8px; padding: 9px 16px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; margin: 0; }
.gs-btn-dark { background: #2d2a26; color: #fff; border: none; border-radius: 8px; padding: 9px 16px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; margin: 0; }
.gs-btn-light { background: #f0ebe5; color: #4a4540; border: none; border-radius: 8px; padding: 9px 14px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; margin: 0; }
.gs-btn-outline { background: #fff; color: #c8102e; border: 1.5px solid #e8e4df; border-radius: 8px; padding: 7px 12px; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; margin: 0; }

/* ═══ FILTER SIDEBAR ═══ */
.gs-fheader { display: flex; justify-content: space-between; align-items: center; padding: 0 0 14px 0; margin: 0; border-bottom: 2px solid #2d2a26; }
.gs-ftitle { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #2d2a26; margin: 0; }
.gs-clear { background: none; border: none; color: #c8102e; font-size: 11px; font-weight: 600; text-decoration: underline; padding: 0; margin: 0; }
.gs-swrap { padding: 16px 0; margin: 0; border-bottom: 1px solid #e8e4df; position: relative; }
.gs-swrap svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); }
.gs-swrap input { width: 100%; padding: 10px 14px 10px 38px; border: 1.5px solid #d5d0ca; border-radius: 8px; font-size: 13px; outline: none; background: #fff; margin: 0; }
.gs-swrap input:focus { border-color: #c8102e; }
.gs-sortwrap { padding: 16px 0; margin: 0; border-bottom: 1px solid #e8e4df; }
.gs-sortwrap label { display: block; font-size: 11px; font-weight: 700; color: #8a817c; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 6px 0; padding: 0; }
.gs-sortwrap select {
  width: 100%;
  padding: 10px 32px 10px 12px;
  border: 1.5px solid #d5d0ca;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
  outline: none;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a817c' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.gs-fsec { border-bottom: 1px solid #e8e4df; margin: 0; padding: 0; }
.gs-fsec-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; margin: 0; background: none; border: none; font-size: 12px; font-weight: 700; color: #2d2a26; letter-spacing: 1px; text-transform: uppercase; }
.gs-fsec-btn svg { transition: transform .25s; opacity: .5; }
.gs-fsec-btn.open svg { transform: rotate(180deg); }
.gs-fsec-body { overflow: hidden; transition: max-height .35s ease; margin: 0; padding: 0; }
.gs-chk { display: flex; align-items: center; gap: 10px; padding: 4px 0; margin: 0; cursor: pointer; font-size: 13px; color: #4a4540; line-height: 1.3; }
.gs-chkbox { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid #c4bfb8; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gs-chkbox.on { border: none; background: #c8102e; }
.gs-chkcnt { color: #b0a8a0; font-size: 12px; margin: 0 0 0 auto; }

/* ═══ CHIPS ═══ */
.gs-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 16px 0; padding: 0; }
.gs-chip { display: inline-flex; align-items: center; gap: 5px; background: #ece7e0; border-radius: 20px; padding: 5px 12px; font-size: 11px; font-weight: 600; color: #4a4540; cursor: pointer; margin: 0; }

/* ═══ CARD GRID ═══ */
.gs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0; padding: 0; }
@media(max-width:1100px) { .gs-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:700px) { .gs-grid { grid-template-columns: 1fr; } }

.gs-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.gs-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }

.gs-card-img { position: relative; height: 200px; overflow: hidden; background: #e8e4df; margin: 0; padding: 0; }
.gs-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gs-badge { position: absolute; top: 10px; left: 10px; background: #c8102e; color: #fff; font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 5px; text-transform: uppercase; z-index: 2; margin: 0; }
.gs-island-tag { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.55); color: #fff; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 5px; z-index: 2; margin: 0; }
.gs-photos-tag { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.55); color: #fff; font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 4px; z-index: 2; margin: 0; }
.gs-edit-tag { position: absolute; bottom: 10px; left: 10px; background: rgba(255,255,255,.92); border: none; border-radius: 6px; padding: 5px 10px; display: flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: #2d2a26; z-index: 2; margin: 0; }

.gs-card-body { padding: 14px 16px 16px; margin: 0; }
.gs-card-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #c8102e; margin: 0; }
.gs-card-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #2d2a26; margin: 4px 0 0 0; line-height: 1.25; }
.gs-card-desc { font-size: 12px; color: #8a817c; margin: 6px 0 0 0; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gs-card-loc { font-size: 10.5px; color: #a09890; margin: 5px 0 0 0; display: flex; align-items: center; gap: 4px; padding: 0; }
.gs-card-loc svg { flex-shrink: 0; }
.gs-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 10px 0 0 0; padding: 0; }
.gs-tag { background: #f5f2ee; font-size: 10px; padding: 4px 8px; border-radius: 4px; color: #6b6560; font-weight: 500; line-height: 1.2; display: inline-flex; align-items: center; gap: 2px; margin: 0; }
.gs-tag-more { font-size: 10px; padding: 4px; color: #a09890; font-weight: 600; margin: 0; }

/* ═══ PLACEHOLDERS ═══ */
.gs-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.gs-ph-ini { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #fff; }
.gs-ph-name { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600; text-align: center; padding: 0 16px; line-height: 1.3; max-width: 200px; }

/* ═══ MODALS ═══ */
.gs-overlay { position: fixed; inset: 0; z-index: 10000; }
.gs-overlay-bg { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.gs-modal { position: relative; background: #fff; border-radius: 16px; max-width: 96vw; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.gs-modal-center { display: flex; align-items: center; justify-content: center; padding: 16px; }
.gs-modal-pad { padding: 28px; }
.gs-modal-head { display: flex; justify-content: space-between; align-items: center; margin: 0 0 18px 0; }
.gs-modal-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #2d2a26; margin: 0; }
.gs-close-btn { background: #f5f2ee; border: none; border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 0; }

/* ═══ FORM FIELDS ═══ */
.gs-field { margin: 0 0 12px 0; padding: 0; }
.gs-field label { display: block; font-size: 11px; font-weight: 700; color: #8a817c; text-transform: uppercase; letter-spacing: .8px; margin: 0 0 5px 0; padding: 0; }
.gs-field input, .gs-field select, .gs-field textarea { width: 100%; padding: 10px 13px; border: 1.5px solid #d5d0ca; border-radius: 8px; font-size: 13px; outline: none; background: #faf9f7; margin: 0; }
.gs-field input:focus, .gs-field select:focus, .gs-field textarea:focus { border-color: #c8102e; }
.gs-field textarea { resize: vertical; }
.gs-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; }
@media(max-width:500px) { .gs-field-row { grid-template-columns: 1fr; } }
.gs-scroll-list { max-height: 130px; overflow-y: auto; border: 1.5px solid #e8e4df; border-radius: 8px; padding: 8px 12px; background: #faf9f7; margin: 0; }
.gs-photo-grid { display: flex; gap: 6px; flex-wrap: wrap; margin: 0 0 10px 0; padding: 0; }
.gs-photo-thumb { width: 72px; height: 52px; border-radius: 6px; overflow: hidden; position: relative; border: 1.5px solid #e8e4df; flex-shrink: 0; margin: 0; }
.gs-photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-photo-rm { position: absolute; top: 2px; right: 2px; background: rgba(0,0,0,.6); border: none; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; color: #fff; padding: 0; margin: 0; }
.gs-danger { margin: 16px 0 0 0; padding: 14px 0 0 0; border-top: 1px solid #e8e4df; }
.gs-danger-box { background: #fef2f2; padding: 14px; border-radius: 8px; margin: 8px 0 0 0; }
.gs-danger-box p { font-size: 12px; color: #7a0a1c; margin: 0 0 10px 0; }

/* ═══ DETAIL MODAL ═══ */
.gs-detail-gallery { position: relative; height: 280px; overflow: hidden; background: #1a1a1a; }
.gs-detail-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.5); color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 20px; display: flex; align-items: center; justify-content: center; padding: 0; margin: 0; }
.gs-gallery-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.gs-gallery-dot { width: 8px; height: 8px; border-radius: 50%; cursor: pointer; border: none; padding: 0; margin: 0; }
.gs-detail-body { padding: 22px 26px 26px; }
.gs-detail-meta { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #c8102e; margin: 0; }
.gs-detail-name { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #2d2a26; margin: 5px 0 0 0; }
.gs-detail-loc { font-size: 12.5px; color: #8a817c; margin: 5px 0 0 0; display: flex; align-items: center; gap: 5px; }
.gs-detail-loc svg { flex-shrink: 0; }
.gs-detail-desc { font-size: 13.5px; color: #6b6560; margin: 14px 0 0 0; line-height: 1.65; }
.gs-detail-contact { margin: 14px 0 0 0; display: flex; flex-wrap: wrap; gap: 14px; padding: 0; }
.gs-detail-contact a { font-size: 12px; color: #2d6a8f; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.gs-detail-contact a:hover { text-decoration: underline; }
.gs-detail-section { margin: 18px 0 0 0; padding: 0; }
.gs-detail-section h4 { font-size: 11px; font-weight: 700; color: #8a817c; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px 0; }
.gs-dtags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.gs-dtag { font-size: 11.5px; padding: 5px 12px; border-radius: 6px; font-weight: 500; margin: 0; }
.gs-dtag-a { background: #f5f2ee; color: #4a4540; }
.gs-dtag-f { background: #edf7f0; color: #2d6a3a; }
.gs-thumbs { display: flex; gap: 6px; flex-wrap: wrap; margin: 0; padding: 0; }
.gs-thumb { width: 68px; height: 50px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; margin: 0; padding: 0; }
.gs-thumb.active { border-color: #c8102e; }
.gs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ═══ EMPTY / TOAST / DRAWER ═══ */
.gs-empty { text-align: center; padding: 70px 20px; }
.gs-empty-icon { font-size: 48px; margin: 0 0 14px 0; }
.gs-empty p { font-size: 17px; color: #8a817c; font-family: 'Playfair Display', serif; margin: 0; }
.gs-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); color: #fff; padding: 11px 26px; border-radius: 10px; font-size: 13px; font-weight: 600; z-index: 100001; box-shadow: 0 8px 24px rgba(0,0,0,.2); white-space: nowrap; }
.gs-toast-ok { background: #1a8a5a; }
.gs-toast-warn { background: #e8a020; }
.gs-saving { font-size: 10px; color: #d4a853; margin: 0 0 0 4px; }
.gs-drawer {
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
  max-width: 92vw;
  background: #faf9f7;
  height: 100%;
  overflow-y: auto;
  padding: 24px 20px;
  box-shadow: -6px 0 30px rgba(0,0,0,.15);
  animation: gs-slideIn .25s ease;
}
@keyframes gs-slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.gs-drawer-head { display: flex; justify-content: space-between; align-items: center; margin: 0 0 16px 0; }
.gs-drawer-head span { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.gs-err { color: #c8102e; font-size: 11px; margin: 5px 0 0 0; font-weight: 600; }
@keyframes gs-spin { to { transform: rotate(360deg); } }
.gs-spinner { width: 40px; height: 40px; border: 3px solid #e8e4df; border-top-color: #c8102e; border-radius: 50%; animation: gs-spin 1s linear infinite; margin: 0 auto; }
