.address-list__cell input[name="kam-address-is-default"][type="radio"] {
  margin-right: 10px;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #1b2434;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 0px;
}

.address-list__cell input[name="kam-address-is-default"][type="radio"]:checked {
  background-color: #222C40;
  border-color: #222C40;
}

#kam_refund_order p {
  text-align: center;
}

.woocommerce-MyAccount-content label {
  color: #888888;
  font-size: 12px;
}

#wrapper .woocommerce-MyAccount-content input,
#wrapper .woocommerce-MyAccount-content select {
  box-shadow: none;
  outline: none;
  border-color: #222c40;
}

#wrapper .woocommerce-MyAccount-content .price-variation.decrease {
  display: none;
}


#kam-update-address-myaccount-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#kam_edit_address {
  margin-bottom: 0;
}

#kam-update-address-myaccount-popup .address-form {
  margin-top: 0;
}

.edit-addresses-section {
  padding: 20px;
  background: white;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* .address-form {
  padding: 30px 0;
} */

.address-form__title {
  margin: 0 0 25px 0;
  font-size: 24px;
  color: #222c40;
  text-align: center;
  font-weight: 600;
}

.address-form__group {
  margin-bottom: 20px;
}

.address-form__group--full {
  grid-column: 1 / -1;
}

.address-form__label {
  display: block;
  margin-bottom: 8px;
  color: #888888;
  font-size: 14px;
  font-weight: 500;
}

.address-form__input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #222c40;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.address-form__input:focus {
  outline: none;
  border-color: #1b2434;
  box-shadow: 0 0 0 2px rgba(34, 44, 64, 0.1);
}

.address-form__submit {
  width: 100%;
  padding: 14px;
  background-color: #222c40;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.address-form__submit:hover {
  background-color: #1b2434;
}

.payback__export-btn {
  display: block;
  padding: 5px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  margin: 0 auto 15px;
  font-size: 14px;
}

.voucher__section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.voucher__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 10px);
  gap: 10px;
}

.voucher__header-title {
  font-size: 27px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0 30px;
}

.voucher__item-left {
  background-color: var(--fs-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  aspect-ratio: 1;
  min-width: 90px;
}

.voucher__item-left::after {
  content: '';
  position: absolute;
  top: 6px;
  left: -10px;
  width: 15px;
  height: 100%;
  background:
    radial-gradient(circle at 50% 10px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 30px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 50px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 70px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 130px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 160px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 190px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 220px, #fff 7px, transparent 8px),
    radial-gradient(circle at 50% 250px, #fff 7px, transparent 8px);
  background-repeat: repeat;
  background-size: 15px 20px;
  pointer-events: none;
}

.voucher__item-left img {
  max-width: 70%;
}

.voucher__item-right {
  padding: 6px 0;
}

.voucher__item-right h3 {
  font-size: 12px;
  margin-bottom: 0;
}

.voucher__item-right span {
  font-size: 10px;
  color: #8C8C8C;
}

.voucher__item-right p {
  font-size: 10px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .voucher__header-title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .voucher__header-title {
    font-size: 18px;
  }
  .voucher__section {
    flex-direction: column;
  }
  .voucher__item {
    width: 100%;
  }
}

#voucher-detail-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.voucher-detail-popup-inner {
  background: #fff;
  padding: 30px 20px 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
}

#voucher-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  aspect-ratio: 1;
  width: 22px;
  min-height: 22px;
}

#voucher-popup-image {
  max-width: 100%;
  margin-bottom: 15px;
}

#voucher-send-email {
  margin: 0;
  width: 100%;
}

.voucher-popup-logo {
  max-width: 50px;
  margin: 0 auto 20px;
  display: block;
}

#voucher-send-result {
  text-align: center;
}

#order-view-popup-my-account {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#order-view-popup-my-account > div {
  background: #fff;
  padding: 70px 30px 30px;
  border-radius: 8px;
  width: 90vw;
  height: 70vh;
  overflow-y: scroll;
  max-width: 800px;
  position: relative;
}

#order-view-popup-my-account .checkout-cart-summary {
  max-width: 100%;
}

#order-view-popup-my-account .checkout-order-review {
  padding: 0;
  border: 0;
  margin-bottom: 0;
}

#order-view-popup-my-account #close-order-view-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  line-height: 1;
  margin: 0;
  padding: 10px;
}

#order-view-popup-my-account .price-reduced span {
  text-decoration: line-through;
}

@media (max-width: 768px) {
  #order-view-popup-my-account > div {
    padding-left: 15px;
    padding-right: 15px;
  }
  #order-view-popup-my-account .checkout-cart-summary .cart-item:last-child {
    padding-left: 15px;
    padding-right: 15px;
  }
  #order-view-popup-my-account .cart-item-name p {
    font-size: 12px;
  }
  #order-view-popup-my-account .cart-item-price span {
    font-size: 14px;
  }
}