/* ======================================================
   CLUBKIDS – RESULTS CARD
   Namespace strict : .ck-result
   ====================================================== */

.ck-result-card {
  display: flex;
  background: #ffffff;
  border-radius: 26px;
  border: 4px solid #b7d9f3;
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: 0 18px 50px rgba(10,162,225,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ck-result-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(10,162,225,0.18);
}

/* ---------- LEFT (LOGO / ICONE) ---------- */

.ck-result-left {
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-result-logo {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: #f2f8fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #0aa2e1;
}

/* ---------- MAIN ---------- */

.ck-result-main {
  flex: 1;
  padding: 0 26px;
}

.ck-result-date {
  font-size: 14px;
  color: #5b6c7a;
  margin-bottom: 6px;
}

.ck-result-route {
  font-size: 22px;
  font-weight: 800;
  color: #1a2b4c;
  margin-bottom: 10px;
}

.ck-result-time {
  font-size: 16px;
  color: #3b4d5c;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* ---------- ALERT / INFO ---------- */

.ck-result-alert {
  color: #e53935;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

/* ---------- BENEFITS ---------- */

.ck-result-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.ck-result-benefits li {
  font-size: 15px;
  color: #1a2b4c;
  margin-bottom: 6px;
  padding-left: 30px;
  position: relative;
}

.ck-result-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #28c76f;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- CTA ---------- */

.ck-result-btn {
  background: linear-gradient(135deg, #0aa2e1, #077db3);
  border: none;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ck-result-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(10,162,225,0.45);
}

/* ---------- RIGHT (PRICE / BADGES) ---------- */

.ck-result-right {
  width: 180px;
  border-left: 1px solid #e3effa;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.ck-result-badge {
  background: #0aa2e1;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.ck-result-price {
  font-size: 44px;
  font-weight: 900;
  color: #0a5fa5;
  line-height: 1;
}

.ck-result-all-inclusive {
  font-size: 16px;
  font-weight: 700;
  color: #28c76f;
}

/* ---------- SELECTED STATE ---------- */

.ck-result-card.is-selected {
  border-color: #0aa2e1;
  box-shadow: 0 0 0 4px rgba(10,162,225,0.2);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px) {
  .ck-result-card {
    flex-direction: column;
  }

  .ck-result-left {
    width: 100%;
    margin-bottom: 14px;
  }

  .ck-result-main {
    padding: 0;
    margin-bottom: 14px;
  }

  .ck-result-right {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e3effa;
    padding-left: 0;
    padding-top: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .ck-result-price {
    font-size: 34px;
  }
}