product-variant-swatch .product-variant-item {
  margin-bottom: 16px;
}

product-variant-swatch .product-variant-name {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  color: #999;
  min-width: 130px;
  display: inline-block;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 4px;
}

product-variant-swatch .product-variant-name span {
  color: #000;
}

product-variant-swatch .product-variant-type {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

product-variant-swatch .variant-item-color {
  cursor: pointer;
  width: 36px;
  height: 36px;
  background-color: #f5f6fb !important;
  border: 2px solid #e0e2eb;
  border-radius: 50%;
  position: relative;
  background: none;
}

.variant-item-color::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--variant-color) !important;
  border-radius: 50%;
  margin: 3px;
  transition: all 0.3s;
}

product-variant-swatch .variant-item-color:hover {
  opacity: 1;
  border-color: #1a1a1a;
}

product-variant-swatch .variant-item {
  padding: 10px 20px;
  /* height: 44px; */
  border: 1px solid #c2c2c2;
  color: #1a1a1a;
  cursor: pointer;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  /* line-height: 44px; */
  text-align: center;
  border-radius: 4px;
}

product-variant-swatch .variant-item:hover {
  border: 1px solid #1a1a1a;
}

product-variant-swatch .variant-item-select {
  opacity: 1;
  color: white;
  border-color: #000;
  background-color: #000000;
}

.variant-item:disabled,
.variant-item-color:disabled {
  cursor: no-drop;
  text-decoration: line-through;
  opacity: 0.6;
}

.variant-item:disabled:hover {
  border-color: #c2c2c2;
}

.variant-item-color:disabled:hover {
  border-color: #e0e2eb;
  opacity: 0.6;
}
