/* assets/css/ije-product-cards.css */

/*
  Airport transfer route/product cards.
  These depend on variables from ije-airport-transfer.css or ije-brand.css.
*/

.ije-route-list {
  display: grid;
  gap: 1rem;
}

.ije-route-card {
  background: #fff;
  border: 1px solid var(--ije-line);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(7,24,39,.055);
  height: 100%;
  padding: 1rem;
  transition: transform .16s ease, box-shadow .16s ease;
}

.ije-route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7,24,39,.08);
}

.ije-route-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.ije-route-left {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  min-width: 0;
}

.ije-route-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--ije-soft-bg);
  color: var(--ije-blue-dark);
  border: 1px solid var(--ije-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.15rem;
}

.ije-route-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  color: var(--ije-navy);
  margin-bottom: .2rem;
  font-size: 1.05rem;
}

.ije-route-title a {
  color: inherit;
  text-decoration: none;
}

.ije-route-title a:hover {
  color: var(--ije-blue-dark);
}

.ije-route-desc {
  color: var(--ije-muted);
  margin: 0;
  line-height: 1.55;
  font-size: .95rem;
}

.ije-route-right {
  text-align: right;
  flex: 0 0 auto;
}

.ije-route-time {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--ije-sand);
  border: 1px solid #f2dfb8;
  color: var(--ije-navy);
  border-radius: 999px;
  padding: .42rem .7rem;
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: .45rem;
}

.ije-route-price {
  color: var(--ije-navy);
  font-weight: 800;
  margin-bottom: .55rem;
}

.ije-route-price .small {
  color: var(--ije-muted);
  font-weight: 650;
}

.ije-route-btn {
  border: 1px solid var(--ije-navy);
  color: var(--ije-navy) !important;
  border-radius: 999px;
  padding: .5rem .85rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.ije-route-btn:hover {
  background: var(--ije-navy);
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .ije-route-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ije-route-right {
    text-align: left;
    width: 100%;
  }
}
