#deliveryregion-top-selector-wrapper {
  display: flex;
  justify-content: center;
}

#deliveryregion-top-selector {
  display: inline-flex;
  align-items: center;
  background: #ffcc5b;
  padding: 4px 10px;
  border-radius: 24px;
  gap: 8px;
}

#deliveryregion-top-selector .deliveryregion-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

#deliveryregion-top-selector .deliveryregion-current {
  border: none;
  border-radius: 20px;
  padding: 4px 12px;
  background: #ffffff;
  font-size: 12px;
}

#deliveryregion-top-selector .deliveryregion-change-link {
  border: none;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 11px;
  background: #1f2933;
  color: #ffffff;
}

.deliveryregion-product-info {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  background: #f5f5f5;
  font-size: 13px;
}

.deliveryregion-product-info strong {
  display: inline-block;
  min-width: 150px;
}

.deliveryregion-region-carriers {
  margin-top: 4px;
}

.deliveryregion-cart-summary {
  margin-top: 15px;
  padding: 10px 12px;
  border-radius: 4px;
  background: #fff8e0;
  font-size: 13px;
}

.deliveryregion-cart-summary h4 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 14px;
}

.deliveryregion-checkout-info {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 4px;
  background: #fff8e0;
  font-size: 13px;
}

.deliveryregion-checkout-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.deliveryregion-checkout-name {
  font-weight: 600;
}

.deliveryregion-checkout-info .deliveryregion-checkout-body > div {
  margin-top: 4px;
}

/* Modal tasarımı */

.deliveryregion-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.deliveryregion-modal.active {
  display: flex;
}

.deliveryregion-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.deliveryregion-modal-dialog {
  position: relative;
  max-width: 420px;
  width: 90%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
}

.deliveryregion-modal-header {
  background: #1f9d45;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.deliveryregion-modal-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
}

.deliveryregion-modal-close {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.deliveryregion-modal-hero {
  padding: 16px 20px 8px;
  text-align: center;
}

.deliveryregion-modal-hero h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.deliveryregion-modal-hero p {
  font-size: 13px;
  margin: 0;
}

.deliveryregion-modal-body {
  padding: 10px 20px 16px;
}

.deliveryregion-info-box {
  background: #ffe7a8;
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 12px;
}

.deliveryregion-info-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.deliveryregion-info-text {
  margin: 0 0 6px;
}

.deliveryregion-info-link {
  font-size: 11px;
  text-decoration: underline;
}

.deliveryregion-modal-body .form-group {
  margin-bottom: 8px;
}

.deliveryregion-modal-footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}

.deliveryregion-btn-apply {
  background: #ffb000;
  border-color: #ffb000;
}

.deliveryregion-btn-cancel {
  background: #f1f1f1;
}