:root {
  --blue-1: #0a6fd1;
  --blue-2: #2aa9e0;
  --blue-3: #e8f6ff;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f6f8fb;
  --card: #ffffff;
  --shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Inter', 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 420px;
  margin: 0 auto;
  padding-bottom: 88px;
}

.top {
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: #fff;
  padding: 12px 16px 18px;
  position: relative;
  top: 0;
  z-index: 5;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  opacity: 0.9;
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loc-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.loc-trigger:focus-visible {
  outline: 2px solid rgba(28, 119, 195, 0.4);
  outline-offset: 4px;
  border-radius: 8px;
}

.loc {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  opacity: 0.8;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bell {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.bell img {
  width: 20px;
  height: 20px;
  display: block;
}

.quick {
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.qa {
  flex: 1;
  background: var(--blue-3);
  border-radius: 18px;
  padding: 12px 10px;
  text-align: center;
}

.qa .icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  position: relative;
}

.qa .icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.badge {
  position: absolute;
  right: -4px;
  bottom: -4px;
  background: #ffb703;
  color: #1f2937;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  font-weight: 700;
}

.qa span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #213547;
}

section {
  padding: 18px 14px;
}

h3 {
  margin: 0.2rem 0 12px;
  font-size: 16px;
}

.see-all {
  font-size: 12px;
  color: var(--blue-1);
  font-weight: 600;
}

.banner {
  background: #111827;
  border-radius: 18px;
  height: 140px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.banner-track img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}

.dots i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
}

.dots i.active {
  background: var(--blue-1);
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card .img {
  position: relative;
  width: 100%;
  height: 140px;
  background: #dbeafe;
  overflow: hidden;
}

.card .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card .body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(2, 6, 23, 0.7);
  color: #fff;
  font-size: 10px;
  padding: 6px 8px;
  border-radius: 999px;
}

.muted {
  color: var(--muted);
  font-size: 12px;
}

.rate {
  color: #fb923c;
  font-size: 12px;
  font-weight: 700;
}

.btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.btn {
  background: transparent;
  color: #1c77c3;
  font-weight: 700;
  border: none;
  padding: 8px 0;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon img {
  width: 32px;
  height: 32px;
}

.bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 16px 24px 22px;
  z-index: 10;
}

.tabs {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  font-weight: 600;
}

.tab span {
  display: block;
}

.tab.active {
  color: var(--blue-1);
}

.tab img {
  width: 24px;
  height: 24px;
  display: block;
}

.tab-center {
  position: relative;
  margin-top: -28px;
  color: var(--blue-1);
}

.tab-center-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.tab-center-icon img {
  width: 40px;
  height: 40px;
  display: block;
}

.tab-center .tab-label {
  margin-top: 6px;
  font-weight: 700;
}

@media (max-width: 360px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

