.tax-toggle-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.tax-toggle-text.fixed {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  background: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tax-toggle-text .tax-option {
  cursor: pointer;
  text-align: center;
}

.tax-toggle-text .tax-option.inactive {
  color: #7d7d7d;
}

.tax-toggle-text .tax-option.inactive:hover {
  color: #000;
  text-decoration: underline;
}

.tax-toggle-text .tax-option .main-text {
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.tax-toggle-text .tax-option .sub-text {
  font-size: 12px;
  display: block;
  color: #666;
}

.price small {
  font-size: 60%;
}