body.type-product div.pw-color-switcher li::marker {
    display: none;
    content: "";
}


body.type-product .pw-color-switcher ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.type-product .pw-color-switcher li {
  flex: 0 1 auto; 
}

body.type-product .pw-color-switcher .custom-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid black;
  border-radius: 8px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: all 0.2s ease;
}

body.type-product .pw-color-switcher .custom-option:hover {
  background-color: #f5f5f5;
}

body.type-product .pw-color-switcher .custom-option.active {
  background-color: black;
  color: white;
}


body.type-product .pw-surcharge-container {
  margin-top: 15px;
}

body.type-product .pw-surcharge-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: #f9f9f9;
  border: 2px solid black;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: fit-content;
}

body.type-product .pw-surcharge-option:hover {
  background-color: #f1f1f1;
}

body.type-product .pw-surcharge-option input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid black;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

body.type-product .pw-surcharge-option input[type="checkbox"]:checked {
  background-color: black;
}

body.type-product .pw-surcharge-option input[type="checkbox"]:checked::after {
  content: "✓";
  color: white;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 4px;
}

body.type-product .pw-surcharge-option label {
  cursor: pointer;
  font-weight: 500;
  color: black;
}

