/* Homepage — Medical travel tools section */
.dbk-travel-tools {
  --dbk-w-teal: #0d9488;
  --dbk-w-teal-dark: #0f766e;
  --dbk-w-border: #e2e8f0;
  --dbk-w-muted: #64748b;
  --dbk-w-card-h: 400px;
  padding: 48px 0 52px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 45%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.dbk-travel-tools::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dbk-travel-tools__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.dbk-travel-tools__head {
  text-align: center;
  margin-bottom: 28px;
}

.dbk-travel-tools__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, #0d9488, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dbk-travel-tools__title i {
  color: #0d9488;
  -webkit-text-fill-color: #0d9488;
}

.dbk-travel-tools__subtitle {
  margin: 0 auto 16px;
  max-width: 560px;
  color: var(--dbk-w-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.dbk-travel-tools__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.dbk-travel-tools__chips span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--dbk-w-teal-dark);
  background: #fff;
  border: 1px solid #99f6e4;
  padding: 6px 12px;
  border-radius: 999px;
}

.dbk-travel-tools__chips i {
  margin-right: 4px;
  opacity: 0.85;
}

.dbk-home-widgets__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

@media (max-width: 1024px) {
  .dbk-home-widgets__row {
    grid-template-columns: 1fr 1fr;
  }
  .dbk-wcard--flight {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .dbk-home-widgets__row {
    grid-template-columns: 1fr;
  }
  .dbk-travel-tools {
    --dbk-w-card-h: auto;
    padding: 36px 0 40px;
  }
}

.dbk-wcard {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
  border: 1px solid var(--dbk-w-border);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
  overflow: visible;
  min-width: 0;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.dbk-wcard:hover {
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.1);
}

.dbk-wcard__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.dbk-wcard__head h3 {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.dbk-wcard__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dbk-wcard--weather .dbk-wcard__icon { background: #e0f2fe; color: #0284c7; }
.dbk-wcard--fx .dbk-wcard__icon { background: #ecfdf5; color: var(--dbk-w-teal-dark); }
.dbk-wcard--flight .dbk-wcard__icon { background: #eff6ff; color: #0284c7; }

.dbk-wcard--fx,
.dbk-wcard--flight {
  min-height: var(--dbk-w-card-h);
}

.dbk-wcard--weather {
  min-height: 0;
}

.dbk-wcard--weather .dbk-wcard__body {
  flex: 0 1 auto;
}

.dbk-wcard--weather .dbk-wcard__out {
  flex: 0 0 auto;
  max-height: none;
  overflow: visible;
  min-height: 0;
}

.dbk-wcard--weather .dbk-wcard__wx-full {
  margin-top: 6px;
}

.dbk-wcard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 14px;
  gap: 8px;
  min-height: 0;
}

.dbk-wcard__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dbk-w-muted);
}

.dbk-wcard__input,
.dbk-wcard__select {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--dbk-w-border);
  border-radius: 10px;
  font-size: 0.875rem;
  background: #f8fafc;
  box-sizing: border-box;
}

.dbk-wcard__input--amt {
  max-width: 72px;
  font-weight: 700;
}

.dbk-wcard__combo {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.dbk-wcard__combo .dbk-wcard__input {
  flex: 1;
  min-width: 0;
}

.dbk-wcard__wx-dateline {
  margin: 0 0 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--dbk-w-muted);
}

.dbk-wcard__wx-day-date {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--dbk-w-muted);
  margin-top: 1px;
}

.dbk-wcard__fx-updated {
  margin: 0;
  font-size: 0.625rem;
  color: var(--dbk-w-muted);
}

.dbk-wcard__combo--fx-search {
  margin-top: 8px;
}

.dbk-wcard__input--search {
  font-size: 0.8125rem;
  padding: 8px 10px;
}

.dbk-wcard__combo--fx {
  position: relative;
  z-index: 5;
  flex-direction: column;
  gap: 0;
}

.dbk-wcard__combo--fx .dbk-wcard__suggest {
  z-index: 50;
}

.dbk-wcard__combo--fx .dbk-wcard__suggest {
  top: 100%;
  left: 0;
  right: 0;
}

.dbk-wcard__suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 48px;
  z-index: 40;
  list-style: none;
  margin: 0;
  padding: 4px;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--dbk-w-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.dbk-wcard__suggest li {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.8125rem;
  cursor: pointer;
  color: #334155;
}

.dbk-wcard__suggest li:hover,
.dbk-wcard__suggest li.is-active {
  background: #ecfdf5;
  color: var(--dbk-w-teal-dark);
}

.dbk-wcard__suggest li strong {
  font-weight: 700;
}

.dbk-wcard__loc-chip {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--dbk-w-teal-dark);
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 1.35;
}

.dbk-wcard__row {
  display: flex;
  gap: 8px;
}

.dbk-wcard__fx-compact {
  display: grid;
  grid-template-columns: 72px 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}

@media (max-width: 480px) {
  .dbk-wcard__fx-compact {
    grid-template-columns: 56px 1fr auto 1fr;
  }
}

.dbk-wcard__swap {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dbk-w-border);
  border-radius: 10px;
  background: #fff;
  color: var(--dbk-w-teal-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dbk-wcard__swap:hover {
  background: #ecfdf5;
  border-color: var(--dbk-w-teal);
}

.dbk-wcard__btn {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--dbk-w-teal), var(--dbk-w-teal-dark));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.dbk-wcard__icon-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--dbk-w-border);
  border-radius: 8px;
  background: #fff;
  color: var(--dbk-w-muted);
  cursor: pointer;
  flex-shrink: 0;
}

.dbk-wcard__icon-btn:hover {
  color: var(--dbk-w-teal-dark);
  border-color: var(--dbk-w-teal);
}

.dbk-wcard__live-tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #047857;
}

.dbk-wcard__highlight {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dbk-w-teal-dark);
  font-variant-numeric: tabular-nums;
}

.dbk-wcard__meta {
  margin: 4px 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--dbk-w-muted);
}

.dbk-wcard__hint {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--dbk-w-muted);
}

.dbk-wcard__wx-hourly,
.dbk-wcard__wx-forecast {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.dbk-wcard__wx-hourly:hover,
.dbk-wcard__wx-forecast:hover {
  scrollbar-color: #cbd5e1 transparent;
}

.dbk-wcard__wx-hourly::-webkit-scrollbar,
.dbk-wcard__wx-forecast::-webkit-scrollbar {
  height: 3px;
}

.dbk-wcard__wx-hourly::-webkit-scrollbar-thumb,
.dbk-wcard__wx-forecast::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 99px;
}

.dbk-wcard__wx-hourly::-webkit-scrollbar-track,
.dbk-wcard__wx-forecast::-webkit-scrollbar-track {
  background: transparent;
}

.dbk-wcard__combo--air {
  position: relative;
  flex-direction: column;
  gap: 0;
}

.dbk-wcard__combo--air .dbk-wcard__suggest {
  right: 0;
  top: 100%;
}

.dbk-wcard__fl-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.dbk-wcard__fl-chip {
  border: 1px solid var(--dbk-w-border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 700;
  background: #f8fafc;
  color: #475569;
  cursor: pointer;
  font-family: inherit;
}

.dbk-wcard__fl-chip:hover {
  background: #eff6ff;
  border-color: #7dd3fc;
  color: #0284c7;
}

.dbk-wcard__btn--block {
  width: 100%;
  margin-top: 4px;
}

.dbk-wcard__out {
  flex: 1;
  min-height: 64px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 0.8125rem;
  line-height: 1.45;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.dbk-wcard__fl-trip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 2px 0 4px;
}

.dbk-wcard__fl-trip-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
}

.dbk-wcard__fl-trip-opt input {
  accent-color: var(--dbk-w-teal);
}

.dbk-wcard__source {
  margin: auto 0 0;
  padding-top: 6px;
  font-size: 0.625rem;
  color: var(--dbk-w-muted);
  line-height: 1.4;
  border-top: 1px solid #f1f5f9;
}

.dbk-wcard__wx-locbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 10px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  margin-bottom: 4px;
}

.dbk-wcard__wx-locbar-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0c4a6e;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dbk-wcard__change-loc {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: var(--dbk-w-teal-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}

.dbk-wcard__change-loc:hover {
  background: #ecfdf5;
}

.dbk-wcard__wx-search.is-active .dbk-wcard__btn {
  display: block;
}

.dbk-wcard__wx-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.dbk-wcard__wx-aqi {
  flex-shrink: 0;
  max-width: 96px;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 0.625rem;
  line-height: 1.35;
  text-align: right;
}

.dbk-wcard__wx-aqi-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  opacity: 0.85;
}

.dbk-wcard__wx-aqi strong {
  display: block;
  font-size: 0.75rem;
  margin: 2px 0;
}

.dbk-wcard__wx-aqi-pm {
  display: block;
  font-size: 0.5625rem;
  opacity: 0.8;
  margin-top: 2px;
}

.dbk-wcard__wx-aqi--ok { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.dbk-wcard__wx-aqi--warn { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.dbk-wcard__wx-aqi--high { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.dbk-wcard__wx-full {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--dbk-w-teal-dark);
  text-decoration: none;
  border-top: 1px solid #f1f5f9;
}

.dbk-wcard__wx-full:hover {
  text-decoration: underline;
}

.dbk-wcard__lab-ref {
  margin: auto 0 0;
  padding-top: 6px;
  font-size: 0.625rem;
  color: var(--dbk-w-muted);
  line-height: 1.4;
  border-top: 1px solid #f1f5f9;
}

.dbk-wcard__wx-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.dbk-wcard__wx-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.dbk-wcard__wx-main {
  flex: 1;
  min-width: 0;
}

.dbk-wcard__wx-desc {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.dbk-wcard__wx-feels {
  margin: 2px 0 0;
  font-size: 0.6875rem;
  color: var(--dbk-w-muted);
}

.dbk-wcard__wx-hourly {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 6px 0;
  margin-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.dbk-wcard__wx-h {
  flex: 0 0 auto;
  min-width: 44px;
  text-align: center;
  font-size: 0.625rem;
  color: var(--dbk-w-muted);
  background: #f8fafc;
  border-radius: 8px;
  padding: 4px 6px;
}

.dbk-wcard__wx-h strong {
  display: block;
  font-size: 0.75rem;
  color: #0284c7;
  margin-top: 2px;
}

.dbk-wcard__wx-forecast {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding: 4px 0 6px;
  -webkit-overflow-scrolling: touch;
}

.dbk-wcard__wx-day {
  flex: 0 0 auto;
  min-width: 48px;
  text-align: center;
  font-size: 0.625rem;
  padding: 4px 4px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.dbk-wcard__wx-day:hover {
  background: #f1f5f9;
}

.dbk-wcard__wx-day.is-selected {
  background: #e0f2fe;
  border-color: #7dd3fc;
}

.dbk-wcard__wx-day.is-today:not(.is-selected) {
  background: #f0f9ff;
}

.dbk-wcard__wx-day-name {
  display: block;
  font-weight: 700;
  color: #475569;
  margin-bottom: 2px;
}

.dbk-wcard__wx-day-icon {
  display: block;
  font-size: 1rem;
  margin: 2px 0;
}

.dbk-wcard__wx-day-temps {
  display: block;
  white-space: nowrap;
}

.dbk-wcard__wx-day-temps strong {
  color: #0f172a;
}

.dbk-wcard__wx-day-temps span {
  color: var(--dbk-w-muted);
}

.dbk-wcard__out--empty {
  color: var(--dbk-w-muted);
}

.dbk-wcard__wx-hero {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 2px;
}

.dbk-wcard__wx-temp {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0284c7;
  line-height: 1;
}

.dbk-wcard__wx-temp-unit {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dbk-w-muted);
  margin-bottom: 2px;
}

.dbk-wcard__wx-loc {
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 6px;
  font-size: 0.8125rem;
}

.dbk-wcard__wx-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.dbk-wcard__wx-stats span {
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #475569;
}

.dbk-wcard__alert {
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 0.75rem;
}

.dbk-wcard__alert--ok { background: #ecfdf5; border: 1px solid #a7f3d0; }
.dbk-wcard__alert--warn { background: #fffbeb; border: 1px solid #fde68a; }
.dbk-wcard__alert--high { background: #fef2f2; border: 1px solid #fecaca; }

.dbk-wcard__rates {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dbk-wcard__rates--compact li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.8125rem;
  cursor: pointer;
}

.dbk-wcard__rates--compact li:last-child {
  border-bottom: none;
}

.dbk-wcard__rates--compact li:hover {
  color: var(--dbk-w-teal-dark);
}

.dbk-wcard__rates-val {
  font-weight: 700;
  color: var(--dbk-w-teal-dark);
  font-variant-numeric: tabular-nums;
}

.dbk-wcard__skel {
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e2e8f0 25%, #f8fafc 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: dbk-w-shimmer 1.2s ease-in-out infinite;
  margin-bottom: 4px;
}

@keyframes dbk-w-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.dbk-wcard__lab-band {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.8125rem;
}

.dbk-wcard__lab-normal { background: #ecfdf5; color: #047857; }
.dbk-wcard__lab-warn { background: #fffbeb; color: #b45309; }
.dbk-wcard__lab-high { background: #fef2f2; color: #b91c1c; }

@media (prefers-reduced-motion: reduce) {
  .dbk-wcard__skel { animation: none; }
}
