/* ===== Address Book Picker UI (existing or keep) ===== */
.gsm-ab-picker {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 18px 0;
  background: #fff;
}

.gsm-ab-picker__title {
  font-weight: 700;
  margin-bottom: 6px;
}

.gsm-ab-picker__hint {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 12px;
}

.gsm-ab-picker__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gsm-ab-picker__label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 600;
}

.gsm-ab-picker__select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: #fff;
}

.gsm-ab-picker__note {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.8;
}

/* ===== FIX 1: Force checked radios show "solid dot" (shipping options + pickup) ===== */
/* 1) General radios inside checkout blocks */
.wc-block-checkout input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9b9b9b;
  background: #fff;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin: 0;
}

/* solid dot when checked */
.wc-block-checkout input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
}

/* make sure spacing looks normal */
.wc-block-checkout .wc-block-components-radio-control__option,
.wc-block-checkout .wc-block-components-radio-control__option-layout {
  align-items: center;
}

/* 2) If blocks uses label pseudo elements, force them too */
.wc-block-checkout .wc-block-components-radio-control__input:checked + label::before,
.wc-block-checkout .wc-block-components-radio-control__input:checked + .wc-block-components-radio-control__label::before {
  background: #fff !important;
}

.wc-block-checkout .wc-block-components-radio-control__input:checked + label::after,
.wc-block-checkout .wc-block-components-radio-control__input:checked + .wc-block-components-radio-control__label::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #111;
  position: relative;
  left: -18px;
  top: 1px;
}

/* ===== responsive ===== */
@media (max-width: 780px) {
  .gsm-ab-picker__row {
    grid-template-columns: 1fr;
  }
}
