.shipping-protection-box {
  margin: 15px 0;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
}

.shipping-protection-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}

.shipping-protection-label input[type="checkbox"] {
  display: none;
}

.shipping-protection-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #222;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: #fff;
  transition: all 0.2s ease;
}

.shipping-protection-label input[type="checkbox"]:checked + .shipping-protection-custom {
  background: #222;
  border-color: #222;
}

.shipping-protection-label input[type="checkbox"]:checked + .shipping-protection-custom::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.shipping-protection-text {
  font-size: 15px;
  line-height: 1.4;
  color: #222;
}
