
/* Delivery Area UI */
.wta-delivery-area {
  margin: 18px 0 10px;
}

.wta-delivery-title {
  margin: 0 0 12px;
}

.wta-delivery-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wta-delivery-card {
  position: relative;
  flex: 1;
  min-width: 180px;
  cursor: pointer;
}

.wta-delivery-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wta-delivery-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  transition: all .15s ease;
}

.wta-delivery-card:hover .wta-delivery-card-inner {
  border-color: rgba(0,0,0,.3);
  transform: translateY(-1px);
}

.wta-delivery-card input:checked + .wta-delivery-card-inner {
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(0,0,0,.15);
}

.wta-delivery-note {
  margin: 8px 0 0;
  font-size: 13px;
  opacity: .75;
}