/* Trip cards, actions, cart layer, and empty states */


.wk-te-trip-places span,
.wk-te-trip-places strong {
  display: block;
}

.wk-te-trip-places span {
  color: #5f7390;
  font-size: 12px;
}

.wk-te-trip-places strong {
  margin-top: 4px;
  color: #10243d;
  font-size: 13px;
  line-height: 1.35;
}

.wk-te-trip-times {
  grid-area: times;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-self: end;
}

.wk-te-trip-times div {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 42px;
  padding: 6px 7px;
  border: 1px solid #dde7f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 36, 61, 0.03);
}

.wk-te-trip-times div > i {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #008f84;
  border-radius: 50%;
  background: #eef8f7;
  font-size: 12px;
}

.wk-te-trip-date-tile {
  min-width: 0;
}

.wk-te-trip-times strong,
.wk-te-trip-times small {
  display: block;
}

.wk-te-trip-times strong {
  color: #061d3a;
  font-size: 11px;
  line-height: 1.2;
}

.wk-te-trip-times small {
  margin-top: 3px;
  color: #5f7390;
  font-size: 9px;
  font-weight: 500;
}

.wk-te-trip-action {
  grid-area: action;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 16px;
  border-left: 1px solid #d7e1ec;
  text-align: center;
}

.wk-te-trip-action strong {
  display: block;
  margin-bottom: 8px;
  color: #061d3a;
  font-size: 20px;
  font-weight: 800;
}

.wk-te-trip-action .wk-te-btn {
  width: 100%;
  min-height: 36px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 8px;
  background: #008f84;
  box-shadow: 0 12px 22px rgba(0, 143, 132, 0.24);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.wk-te-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.wk-te-btn--loading {
  opacity: 0.72;
  pointer-events: none;
}

.wk-te-cart-layer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 20px;
  background: rgba(0, 0, 0, 0.34);
}

.wk-te-cart-layer__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  width: min(1180px, 100%);
  min-height: 320px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 36, 61, 0.22);
}

.wk-te-cart-layer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 28px;
  height: 28px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: #10243d;
  font-size: 20px;
  line-height: 1;
}

.wk-te-cart-layer__added,
.wk-te-cart-layer__summary {
  padding: 36px 28px;
}

.wk-te-cart-layer__added {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #dbe5ee;
}

.wk-te-cart-layer__added .wk-te-cart-ticket {
  margin: auto;
}

.wk-te-cart-layer__added h2,
.wk-te-cart-layer__summary h2 {
  margin: 0 0 18px;
  color: #10243d;
  font-size: 22px;
  font-weight: 500;
}

.wk-te-cart-layer__added h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  color: #2aa146;
  font-size: 20px;
  font-weight: 800;
}

.wk-te-cart-layer__added h2 i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #fff;
  border-radius: 50%;
  background: #32a852;
  font-size: 14px;
}

.wk-te-cart-layer__message {
  margin: 0 0 34px 42px;
  color: #53677c;
  font-size: 12px;
  font-weight: 600;
}

.wk-te-cart-layer__added h3 {
  margin: 0 0 16px;
  color: #10243d;
  font-size: 18px;
  font-weight: 500;
}

.wk-te-cart-layer__added p,
.wk-te-cart-layer__summary p {
  margin: 8px 0;
  color: #10243d;
}

.wk-te-cart-layer__summary p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid #edf1f5;
}

.wk-te-cart-layer__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 88px;
}

.wk-te-cart-layer__continue {
  min-height: 42px;
  padding: 0 18px;
  color: #10243d;
  border: 1px solid #cfd9e3;
  border-radius: 0;
  background: #fff;
  font-weight: 700;
}

.wk-te-cart-ticket {
  overflow: visible;
  width: min(500px, 100%);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wk-te-cart-ticket__top {
  display: grid;
  grid-template-columns: 136px 270px;
  gap: 24px;
  align-items: start;
  justify-content: center;
  padding: 0 0 0 4px;
}

.wk-te-cart-ticket__top img,
.wk-te-cart-ticket__image-placeholder {
  width: 136px;
  height: 92px;
  border-radius: 4px;
  object-fit: cover;
  background: #eaf6f4;
}

.wk-te-cart-ticket__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b8f84;
  font-size: 36px;
}

.wk-te-cart-ticket__main h3 {
  max-width: 310px;
  margin: 0 0 18px;
  color: #10243d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.wk-te-cart-ticket__main p {
  margin: 0 0 10px;
  color: #5f6f83;
  font-size: 14px;
}

.wk-te-cart-ticket__date {
  margin: -8px 0 14px;
}

.wk-te-cart-ticket__date strong,
.wk-te-cart-ticket__date small {
  display: block;
}

.wk-te-cart-ticket__date strong {
  color: #10243d;
  font-size: 14px;
  font-weight: 800;
}

.wk-te-cart-ticket__date small {
  margin-top: 2px;
  color: #6d7b90;
  font-size: 11px;
}

.wk-te-cart-ticket__company,
.wk-te-cart-ticket__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.wk-te-cart-ticket__company {
  padding: 7px 10px;
  color: #277d75;
  background: #e9f8f6;
  text-transform: uppercase;
}

.wk-te-cart-ticket__tag {
  padding: 7px 9px;
  color: #203751;
  background: #eef4f8;
}

.wk-te-cart-ticket__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 8px 28px 18px;
  border: 1px solid #dbe5ee;
  border-radius: 6px;
  background: #fbfdff;
}

.wk-te-cart-ticket__facts > div,
.wk-te-cart-ticket__people > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.wk-te-cart-ticket__facts > div {
  padding: 16px 14px;
  border-right: 1px solid #dbe5ee;
}

.wk-te-cart-ticket__facts > div:last-child {
  border-right: 0;
}

.wk-te-cart-ticket__facts i,
.wk-te-cart-ticket__people i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #2b8f84;
  border-radius: 8px;
  background: #e9f8f6;
  font-size: 18px;
}

.wk-te-cart-ticket__facts small,
.wk-te-cart-ticket__people small,
.wk-te-cart-ticket__total small {
  display: block;
  margin-bottom: 4px;
  color: #68788d;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.wk-te-cart-ticket__facts strong,
.wk-te-cart-ticket__people strong {
  display: block;
  color: #10243d;
  font-size: 13px;
  line-height: 1.35;
}

.wk-te-cart-ticket__people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  justify-items: start;
}

.wk-te-cart-ticket__people > div {
  align-items: center;
  gap: 8px;
}

.wk-te-cart-ticket__people i {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  font-size: 13px;
}

.wk-te-cart-ticket__people small {
  margin-bottom: 2px;
  color: #59708a;
  font-size: 8px;
}

.wk-te-cart-ticket__people strong {
  font-size: 11px;
  font-weight: 800;
}

.wk-te-cart-ticket__compact-price {
  margin-top: 14px;
  color: #10243d;
  font-size: 13px;
  text-align: left;
}

.wk-te-cart-ticket__compact-price p {
  margin: 6px 0;
}

.wk-te-cart-ticket__compact-price strong {
  font-weight: 800;
}

.wk-te-cart-ticket__line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  margin: 0 28px;
  padding: 14px 0;
  border-bottom: 1px solid #edf1f5;
}

.wk-te-cart-ticket__line strong {
  color: #10243d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wk-te-cart-ticket__line span {
  color: #10243d;
  font-weight: 800;
}

.wk-te-cart-ticket__line small {
  grid-column: 1 / -1;
  color: #5f6f83;
  font-size: 13px;
}

.wk-te-cart-ticket__total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  background: linear-gradient(90deg, #f2fbfa, #eef9f7);
}

.wk-te-cart-ticket__total strong {
  color: #10243d;
  font-size: 20px;
  font-weight: 900;
}

.wk-te-cart-ticket__total span:last-child {
  text-align: right;
}

.wk-te-cart-ticket__total span:last-child strong {
  color: #277d75;
  font-size: 28px;
}

.wk-te-cart-ticket__return {
  margin: 0 28px 18px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f6fafc;
  color: #10243d;
}

.wk-te-cart-ticket__return strong,
.wk-te-cart-ticket__return span,
.wk-te-cart-ticket__return small {
  display: block;
}

.wk-te-empty {
  padding: 36px;
  text-align: center;
}

.wk-te-seat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  max-width: 560px;
  gap: 12px;
}

