.fulfillment-plan {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid #bdd8ea;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef8fb 100%);
}

.fulfillment-plan-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.fulfillment-plan-head h3 {
  margin: 2px 0 0;
  color: #102e4f;
  font-size: 1.15rem;
}

.fulfillment-plan-head > small {
  color: #587089;
  text-align: right;
}

.fulfillment-plan-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.fulfillment-plan-option {
  display: block;
  min-width: 0;
  cursor: pointer;
}

.fulfillment-plan-option > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fulfillment-plan-option > span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  min-height: 76px;
  padding: 10px;
  border: 2px solid #d4e2ee;
  border-radius: 14px;
  background: #fff;
  color: #173755;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.fulfillment-plan-option > span > i {
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #eaf2f9;
  color: #1f6eaa;
  font-style: normal;
  font-weight: 900;
}

.fulfillment-plan-option b,
.fulfillment-plan-option small {
  min-width: 0;
}

.fulfillment-plan-option small {
  color: #708398;
  line-height: 1.3;
}

.fulfillment-plan-option:hover > span {
  border-color: #66a9d8;
  transform: translateY(-1px);
}

.fulfillment-plan-option > input:focus-visible + span {
  outline: 3px solid rgba(34, 131, 204, .24);
  outline-offset: 2px;
}

.fulfillment-plan-option > input:checked + span {
  border-color: #1677b8;
  background: #eaf7ff;
  box-shadow: 0 8px 18px rgba(21, 96, 148, .12);
}

.fulfillment-plan-option.fulfillment-digital > input:checked + span {
  border-color: #0d9f72;
  background: #eafbf5;
}

.fulfillment-plan-option.fulfillment-digital > input:checked + span > i {
  background: #0d9f72;
  color: #fff;
}

.fulfillment-plan-message {
  display: flex;
  gap: 9px;
  align-items: baseline;
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 11px;
  background: #e7f2fa;
  color: #28516e;
}

.fulfillment-plan-message b {
  flex: 0 0 auto;
  color: #104e78;
}

.fulfillment-plan.is-digital .fulfillment-plan-message {
  background: #ddf8ee;
  color: #17674f;
}

.fulfillment-plan.is-digital .fulfillment-plan-message b {
  color: #087653;
}

.digital-complete-button.ready {
  border-color: #11a174;
  background: #e9fbf4;
  color: #087554;
}

.status-route-quick-guide.is-digital-only {
  grid-template-columns: 1fr;
}

@media (max-width: 920px) {
  .fulfillment-plan-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fulfillment-plan-option:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .fulfillment-plan { padding: 14px; }
  .fulfillment-plan-head { display: block; }
  .fulfillment-plan-head > small { display: block; margin-top: 5px; text-align: left; }
  .fulfillment-plan-options { grid-template-columns: 1fr; }
  .fulfillment-plan-option:first-child { grid-column: auto; }
  .fulfillment-plan-message { display: block; }
  .fulfillment-plan-message span { display: block; margin-top: 3px; }
}
